1 Attachment(s)
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
I just installed Apsona Shop admin on fresh 1.5.5 but its not working.
Any idea?Attachment 16163
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
Did you just use the package you downloaded from Apsona? Did you use the fixes in the mods section? Does not work right out of the box.
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
I used this.
https://www.zen-cart.com/downloads.php?do=file&id=1985
Also made the changes in config file as you mention earlier.
I tried same in fresh 1.5.4 and its working there.
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
I'm not understanding you. You say you used in fresh install and it worked? But it's not working somewhere else?
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
Its not working on Fresh Zencart 1.5.5 install.
And its working on Fresh Zencart 1.5.4 install.
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
hasn't been testing with 1.5.5 and if it's not working then probably the functions need altering. That is not my expertise. I'll see if I can get something done but can't promise it.
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
Apsona compatibility with Zen Cart 1.55.
Since some constants related to paths have been moved, I found I needed to make these changes to get Apsona to load.
1) ADMIN/apsona_index.php
change
PHP Code:
require ('includes/application_top.php'); // Use application_top so that unauthorized users can't hit this page
to
PHP Code:
require ('includes/application_top.php'); // Use application_top so that unauthorized users can't hit this page
if (!defined('DIR_WS_HTTPS_ADMIN')) define('DIR_WS_HTTPS_ADMIN', DIR_WS_ADMIN);//from Zen Cart 1.55 https://www.zen-cart.com/showthread.php?219753-DIR_WS_HTTPS_ADMIN-Constant-appears-to-be-removed-but-is-still-used-referenced&p=1307089#post1307089
2) ADMIN/apsona_svc.php
change
PHP Code:
require (DIR_FS_CATALOG . DIR_WS_INCLUDES . 'database_tables.php');
to
PHP Code:
if (!defined('DIR_FS_CATALOG')) include ('includes/defined_paths.php');//from Zen Cart 1.55
require (DIR_FS_CATALOG . DIR_WS_INCLUDES . 'database_tables.php');
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
Thanks for help. Its working fine now.
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
I'll add that in the package I created. Thanks, Torvista!
Re: Apsona ShopAdmin - a free tool for import/mass update/reporting
Torvista, the changes for the config files would be different now as well.
The line in configure now reads
PHP Code:
/**
* Note about DIR_WS_ADMIN
* The DIR_WS_ADMIN value is now auto-detected.
* In the rare case where it cannot be detected properly, you can add your own DIR_WS_ADMIN definition below.
*/
define('DIR_WS_ADMIN', '/store_admin/');//steve apsona
So I added the fixed path there. But the https admin is now done differently. What did you do in the configure file?
I'm fixing someone's aborted apsona installation but I think I've got the right files in place with the added 1.5.5 lines. Still getting that can't connect message though. I believe this is simply a new installation on a server where they were running apsona in another directory with success on an earlier version of zen cart.