Recommended PrestShop Version

Thanks for choosing Agile.
For customers using our Agile Multiple Seller module and its accessry modules, we highly recommend to use PrestaShop 1.6x or 1.7.5 or lower. PrestaShop has made some changes in versions higher than 1.7.6 that makes it possible or very difficult to implement some of features via hooks, or override, since required hooks or override is not available.

Sept. 05, 2019

The following issues reported frequently from customers with PrestaShop 1.7x. If you are facing this issue, please follow instructions below.

Issue:

Because of store or server permission settings, some of the files are not installed/modified correctly. After install of agile multiple seller, when you access your store you got white pages or 500 internal server error.  If your DEBUG mode is enabled, you may see following errors.

In this case, please following instructions below.

Please make a backup of each file you are going to make changes, so that you can restore it back in case you made mistakes.

File 1:  YourStoreRoot/vendor/composor/autoload_static.php

Search for following line in above file in your store.

    public static $classMap = array (

If following line do not appear after the above line, then add these 2 lines after this line.

    

    'PrestaShopPrestaShopAdapterAgileMultipleSellerLocationProductSearchProvider' => __DIR__ . '/../..' . '/src/Adapter/AgileMultipleSeller/LocationProductSearchProvider.php',
        'PrestaShopPrestaShopAdapterAgileMultipleSellerSellerProductSearchProvider' => __DIR__ . '/../..' . '/src/Adapter/AgileMultipleSeller/SellerProductSearchProvider.php',

File 2:  YourStoreRoot/vendor/composor/autoload_classmap.phpautoload_static.php

Search for following line in above file in your store.

return array(

If following line do not appear after the above line, then add these 2 lines after this line.


    'PrestaShopPrestaShopAdapterAgileMultipleSellerLocationProductSearchProvider' => dirname(dirname(dirname(__FILE__))) . '/src/Adapter/AgileMultipleSeller/LocationProductSearchProvider.php',
    'PrestaShopPrestaShopAdapterAgileMultipleSellerSellerProductSearchProvider' => dirname(dirname(dirname(__FILE__))) . '/src/Adapter/AgileMultipleSeller/SellerProductSearchProvider.php',