Quote Originally Posted by Mike_Dean View Post
I’ve just installed the Apsona ShopAdmin module on a test site on a local server using WAMP 2.0

I’m using ZC 1.3.8a and I have patched my database to use PHP 5.3

I am getting the following errors when navigating to Admin>Tools>Apsona ShopAdmin

When I click on that link, a second browser opens and the following is all that is on the page.

Deprecated: Function ereg() is deprecated in C:\wamp\www\ZenCart\includes\classes\db\mysql\query_factory.php on line 177

Deprecated: Function ereg() is deprecated in C:\wamp\www\ZenCart\includes\classes\db\mysql\query_factory.php on line 177


I checked the db and the two additional files were written to it..

Would it be that the addon is not yet PHP 5.3 compliant, or is there another issue/easy fix..
Maybe I am misunderstanding you, but your problem is right there if you are running PHP 5.3x. ereg is a deprecated function in 5.3x which means it is no longer supported in php. The query_factory.php is a core Zen-Cart file. Change the
Code:
 !ereg
to
Code:
!preg_match
through out the file and see if that solves your problem. It is in that file 6 times.