lordhanuman Posted February 20 Share Posted February 20 I upgraded from Prestashop 8.0 to 8.1. I have loaded some products with combination, The problem is that when I change combination it shows the undefined error. if I disable friendly URLs the problem does not arise. I have a dedicated server with nginx php 8.1 and I have mencached caching enabled. However, this problem also occurs with non-native modules deactivated. The shop is currently in 3 languages, Italian, English and French Thanks to all Link to comment Share on other sites More sharing options...
seakrebel Posted February 25 Share Posted February 25 (edited) Try editing your NGINX configuration to include the following: server { [...] location ~* ^/(en|it|fr)(/.*)?$ { rewrite ^/(en|it|fr)(/.*)?$ /index.php?lang=$1&$args last; try_files $uri $uri/ /index.php$is_args$args; } [...] } Edited February 26 by seakrebel got working code (see edit history) Link to comment Share on other sites More sharing options...
Massimo Posted April 18 Share Posted April 18 Hi, i've try this solution but on Prestashop 8.1.5 doesn't Work. All Site work correctly but not for change combination or add to cart. Link to comment Share on other sites More sharing options...
musicmaster Posted April 23 Share Posted April 23 Look in the server error log or under /var/logs for the error message. Usually this is a PHP error in an ajax call. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now