Note that if you are using this locally (Xampp for example), and are using an additional /local/configure.php with local settings, the ShopAdmin page may not load.
In apsona_svc.php
PHP Code:
include ('includes/configure.php');
if (file_exists('includes/local/configure.php')) {
include ('includes/local/configure.php');
}
loads the standard and then local constants. This only partially works with not all the local defined constants replacing the normal ones.
I made this change to choose one or the other, which avoids the problem:
PHP Code:
if (file_exists('includes/local/configure.php')) {
include ('includes/local/configure.php');
} else {
include ('includes/configure.php');}
And for those confused about getting ShopAdmin in the first place:
1) Register at Apsona
2) Get the files
3) Get the 1.5 update files
Bookmarks