Viewing 15 replies - 1 through 15 (of 18 total)
  • Plugin Author aytechnet

    (@aytechnet)

    Bonjour,

    La redirection n’est pas normale du tout, vous devez avoir laissé un .htaccess ou un cache dans le navigateur (IE9 ?). Videz le cache et revérifiez.

    Normalement, WordPress doit pouvoir fonctionner en racine ou l’inverse PrestaShop, faites attentions aux cookies de PrestaShop lorsque WordPress est à la racine (car sinon le panier est perdu car le cookie est perdu en raison de la “manière” dont les cookies sont géré par PrestaShop : il faut alors patcher, cf FAQ).

    Bonne chance,
    Fran?ois.

    These are English language forums. Please use English.

    Plugin Author aytechnet

    (@aytechnet)

    Sorry, I re-post in english :

    The redirection is abnormal, check for a .htaccess or an cache in your browser (IE9 ?). Please ensure the cache is empty and check again.

    WordPress can work as root software as well as PrestaShop. But if PrestaShop is not in the root, patch it according to our FAQ because the cookie will not be visible for WordPress (thus causing cart not synced with PrestaShop, …)

    Good luck,
    Fran?ois.

    Thread Starter Prestance Design

    (@prestance-design)

    Sorry, I re-post my first post in english too :

    Hi Fran?ois,

    Thank for this extension and thank you for this update
    compatible with Prestashop 1.5.
    I’m just trying to test with the latest version of Prestashop (1.5.3.1) that I installed in a subfolder “shop /”.
    https://localhost/shop/
    Wordpress is the root.

    Once configured, when I try to access https://localhost/ WordPress there’s automatically redirect on https://localhost/shop/ (index page of Prestashop).

    Is it possible like this configuration or only the inverse works, put wordpress in a subfolder?

    Hope to read you.

    Thread Starter Prestance Design

    (@prestance-design)

    Thank for response.

    I work with firefox and chrome. I’ve tried with empty cache and without htaccess.
    Note that I’ve tested with default installation of both CMS. I tried disabling the redirection canonical of Prestashop but it is the same.

    I’ll try with an older version of Prestashop and will keep you informed.

    Cheers.

    Plugin Author aytechnet

    (@aytechnet)

    I think it is not a PrestaShop behaviour anyway. use wget or curl (or wireshark) to check for what happens. Fran?ois.

    Thread Starter Prestance Design

    (@prestance-design)

    I’ve tried with Prestashop 1.4.9 and it work perfectly.
    Good idea, I’ll tried to use tools like wget, curl to debugging.

    Thanks. Mike.

    I am having the same problem with the 0.8 version of your plugin, and prestashop 1.5 with wordpress 3.5, I have tried with css and js enabled or disabled. As soon as I disable this plugin it stops redirecting. It does this whether I actually have a widget or not. I am not able to downgrade my prestashop for testing. I have safari, and I have cache disabled, I have a caching plugin on wordpress but even when I clear it’s cache it doesn’t help. Let me know what files or logs I can give you, or what I can try to fix

    Thread Starter Prestance Design

    (@prestance-design)

    Hello Francois,

    You can try to debug the HTTP Header here.

    https://wallcaps.prestance-informatique.fr/ (WordPress URL)
    https://wallcaps.prestance-informatique.fr/shop/index.php (Prestashop URL)

    With firebug, we can see a “302 Move temporarily” but nothing in htaccess. I don’t understand, maybe it’s a new system routing (dispatcher) of Prestashop ?

    Thanks a lot. Mike.

    Plugin Author aytechnet

    (@aytechnet)

    Hello,

    The problem is under examination : FYI the simple fact to load PrestaShop configurations files seems to fire the redirection ?!?!? (loading config/config.inc.php of PS). Fran?ois.

    Plugin Author aytechnet

    (@aytechnet)

    The problem is found : there is a “bug” in PrestaShop multishop management (even if you do not activate it). The following patch can be used to fix that (it has been added in the FAQ of the plugin) :

    --- classes/shop/Shop.php.prestashop_integration        2013-01-07 09:18:32.000000000 +0100
    +++ classes/shop/Shop.php       2013-01-07 09:25:26.000000000 +0100
    @@ -368,6 +368,9 @@
                            if (!Validate::isLoadedObject($default_shop))
                                    throw new PrestaShopException('Shop not found');
    +                       if (defined('PRESTASHOP_INTEGRATION_VERSION')) {
    +                               $shop = $default_shop;
    +                       } else {
                            $params = $_GET;
                            unset($params['id_shop']);
                            if (!Configuration::get('PS_REWRITING_SETTINGS'))
    @@ -388,6 +391,7 @@
                            }
                            header('location: '.$url);
                            exit;
    +                       }
                    }
            }
    Thread Starter Prestance Design

    (@prestance-design)

    Great !

    I prefered to override the Shop.php class for avoid to loose the modification when I’ll do a Prestashop upgrade.

    Thank you, it work perfectly.

    Plugin Author aytechnet

    (@aytechnet)

    You can apply the patch the way you prefer, the override mechanism can help you track the changes made and is much better that a change not being tracked.

    I just updated the plugin to 0.8.1 I then reactivated the plugin and it is still redirecting after emptying all caches. Uninstalling and reinstalling the plugin is no help. Disabling the plugin fixes redirection without clearing caches.

    Thread Starter Prestance Design

    (@prestance-design)

    Dontcair,

    For complete working, you must also patch/override this Prestashop file classes/shop/Shop.php.
    Look at the F.A.Q update.

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘Redirection URL’ is closed to new replies.