Johnny wrote:
Seems like a good deal on the face of it - shopping cart creator for just $9! However, looking into the server requirements it is not compatible with PHP5 and above. So pretty much useless then as i have no suitable server to run it on? I am not greatly knowledgeable in this area but won't most serious web hosting companies be running PHP 5 + as default now anyway? Even my localhost server is PHP5.4.
However, if there will be a free upgrade when it is made compatible then worth going for it perhaps?
We will actually have a posted update next week with support for PHP 5.
However, with just a small change to one of the included PHP files, you can make the shop function correctly. Here is what you need to do.
1. Locate the config.inc.php file in your shop folder.
2. Open that file in any editor.
3. Locate this line of text error_reporting(E_ALL ^ E_NOTICE);
4. Change that to error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
5. Save the file.