Support

Akeeba Backup for Joomla!

#43323 Subject: akeeba:profile:modify always fails: "Incorrect integer value: '' for column 'quickicon'"

Posted in ‘Akeeba Backup for Joomla!’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Environment Information

Joomla! version
n/a
PHP version
n/a
Akeeba Backup version
n/a

Latest post by moira on Tuesday, 08 September 2026 02:41 CDT

mdr6273

EXTREMELY IMPORTANT: Please attach a ZIP file containing your Akeeba Backup log file in order for us to help you with any backup or restoration issue. If the file is over 10MiB, please upload it on your server and post a link to it.

System Task
system
The ticket information has been edited by Mike Richardson (mdr6273).

moira

You've found a genuine bug in akeeba:profile:modify.

Any call to that command which didn't explicitly pass --quickicon=1 ended up building the update in a way that MySQL's strict SQL mode rejects for the quickicon column, so the command failed with the error you reported on every run.

We've fixed this in development, and while investigating we found the same command (and akeeba:profile:copy) had a related bug: leaving out --description would silently blank the profile's description instead of leaving it unchanged.

You can test both fixes with the following developer's release. This is an unofficial, alpha-quality build for testing only — please don't rely on it for a production backup without a backup of the site itself that you trust:

https://www.akeeba.com/download/akeebabackuppro-dev/10-4-1-dev202609080738-reve920cb08.html

Please let us know if this resolves the issue for you.

Technical information

  • Root cause: component/backend/src/CliCommands/ProfileModify.php cast the --quickicon option to a PHP boolean before checking whether it had been provided. Since (bool) null is false rather than null, the fallback to the profile's existing value never triggered, so quickicon was always written as a raw boolean false when the option was omitted. Joomla's database layer stringifies booleans before escaping them, and (string) false is an empty string, producing quickicon = '' in the SQL — which MySQL strict mode rejects for an integer column, matching the "Incorrect integer value: ''" error.
  • Same root cause pattern affected the --description option, which is why it silently reset to blank instead of failing loudly.
  • Fixed by reading the raw CLI option, checking for null before it is cast, and storing quickicon as an integer (0/1).

Moira Fari

Support Specialist

🇬🇧English: native 🕐 My time zone is Asia / Nicosia
Kindly note that my replies are fully vetted by our developers.

Support Information

Working hours: We are open Monday to Friday, 9am to 7pm Cyprus timezone (EET / EEST). Support is provided by the same developers writing the software, all of which live in Europe. You can still file tickets outside of our working hours, but we cannot respond to them until we're back at the office.

Support policy: We would like to kindly inform you that when using our support you have already agreed to the Support Policy which is part of our Terms of Service. Thank you for your understanding and for helping us help you!