March 23rd, 2011 currentlyOffline
This is a funny one and might save you some time
If you’re trying to install Google Checkout module to you ZenCart store and just can’t see checkout button, there is one thing you should check. It’s not your fault ( just a little bit
) I guess many of us are so used to smooth module installation on ZenCart, that we are just copying module files and the hoping that everything works. ZenCart fault - definitely not mine
And there is another one: unlike most extensions this one has a folder /templates/YOUR_TEMPLATE/templates so just copying the files will create folder called YOUR_TEMPLATE and simply won’t work – module developers fault, not mine again
So try copying folder by folder next time and I’m pretty sure you’ll see a long awaited result.
Posted in Google Checkout, I hate computers... and Internet!, Question - Answer, Uncategorized, ZenCart | No Comments »
May 20th, 2009 currentlyOffline
If you are reading this you’ve probably seen this message:
Incorrect integer value: ” for column ‘configuration_group_id’ at row 1 in:
[INSERT INTO `configuration_group` VALUES ('', 'SEO URLs', 'Options for Ultimate SEO URLs by Chemo', '39', '1')]
I had this problem myself. And now I can tell you that there are at least three ways to solve this annoying problem.
Solution 1
pay some money to a to someone for fixing this and go to the pub (if you still have some money left).
Solution 2
buy a SEO module that works and go to the pub (if you still have some money left).
Solution 3
- open includes/classes/seo.install.php with your favourite editor.
- find function install_settings()
- Change line $insert_group = “INSERT INTO `”.TABLE_CONFIGURATION_GROUP.”` VALUES (”, ‘SEO URLs’, ‘Options for Ultimate SEO URLs by Chemo’, ‘”.$next_sort.”‘, ’1′)”; to “INSERT INTO `”.TABLE_CONFIGURATION_GROUP.”` VALUES (‘”.$next_sort.”‘, ‘SEO URLs’, ‘Options for Ultimate SEO URLs by Chemo’, ‘”.$next_sort.”‘, ’1′)”;
- save the file
- open your Zen Cart again
It should work now. If it does, go to the pub.
If it’s not(very likely) and if you are still getting “Incorrect integer value” errors, find a function SEO_URL_INSTALLER right at the top of the file and change all lines that have something like this: “INSERT INTO `”.TABLE_CONFIGURATION.”` VALUES (”, to something like this: “INSERT INTO `”.TABLE_CONFIGURATION.”` VALUES (LAST_INSERT_ID()+”.$x.”,
It should work now. If it does, go to the pub(you’ve saved some money today). If not, write a comment with as much detail as possible and come back later – you might find my reply on how to fix it
Posted in I hate computers... and Internet!, Question - Answer | 1 Comment »