Hi guys,

I had an error running the install file for Ultimate SEO URLs on Zen Cart 1.5.3 on my localhost install on macbook pro:

Code:
1366 Incorrect integer value:
The fix was to amend the file

/admin/includes/init_includes/init_seo_config.php

to include the number 0 for configuration_group_id like so:

PHP Code:
            // Create configuration group
            
$db->Execute(
                
'INSERT INTO `' TABLE_CONFIGURATION_GROUP '` ' .
                
'VALUES (\'0\', \'' SEO_CONFIGURATION_GROUP_TITLE '\', ' .
                
'\''SEO_CONFIGURATION_GROUP_DESCRIPTION '\', \'' $max_sort '\', \'1\')'
            
); 
After that, the init file executed fine & created all necessary DB entries.

Hope this helps if anyone runs into the same issue.

Edith