bunoire14 Posted November 8, 2016 Share Posted November 8, 2016 Hi, Just installed the 1.7 release after receiving the release email. Ive installed it in a Vagrant development environment in Nginx. Install goes fine and the front office works fine however when I click on Catalog->Products I get redirected to the front office with a "key" parameter in the URL? It happens with a few links in the back office including modules. Is this a bug or have I missed something? Link to comment Share on other sites More sharing options...
bunoire14 Posted November 8, 2016 Author Share Posted November 8, 2016 It looks like the url is going to the wrong place? If i load index.php?controller=AdminProducts into the URL manually it opens the product admin page albeit it does complain of a incorrect CSRF token. The original URL from the menu seems to direct me to: http://StoreURL/admin3335ko6z6/index.php/product/catalog?_token=<TOKEN_HERE> Any thoughts? Link to comment Share on other sites More sharing options...
bellini13 Posted November 9, 2016 Share Posted November 9, 2016 sounds like a rewrite rule that nginx is either not supporting, or not recognizing. not sure what your options are, can you bypass nginx, or review the .htaccess rules and you might need to translate them to something ngnix supports Link to comment Share on other sites More sharing options...
bunoire14 Posted November 10, 2016 Author Share Posted November 10, 2016 Hmm... OK, I did drop in the PS 1.6 suggested Nginx rules but ive noticed that it seems to duplciate the .htaccess file. Ive attached images of my routes.. am I missing something? Link to comment Share on other sites More sharing options...
josepg Posted March 2, 2017 Share Posted March 2, 2017 Tengo el mismo problema en prestashop 1.7 Dentro del backoffice, al entrar en Catalogo -> Productos Se abre la url: http://www.miweb.com/admin00/index.php/product/catalog?_token=d9n_XCu5g1hqQIpXweJoGaz4m0y2W7mPlEr4R-ue88g Dando como resultado : No input file specified. Gracias de antemano, Saludos, José Link to comment Share on other sites More sharing options...
aprice Posted April 18, 2017 Share Posted April 18, 2017 (edited) Hola Buenas tardes, Alguien pudo solucionarlo? Me pasa exactamente lo mismo.Abrazo ---------- Hello, good afternoon, Anyone could fix it? I have exactly the same problem, NGINX + Presta1.7. Regards Edited April 18, 2017 by aprice (see edit history) Link to comment Share on other sites More sharing options...
obewanz Posted May 7, 2017 Share Posted May 7, 2017 I have the same problem on a GoDaddy deluxe linux hosting account after a clean installation of Prestashop 1.7.1.x sameoh samoh I guess :/ Link to comment Share on other sites More sharing options...
quochuy Posted May 24, 2017 Share Posted May 24, 2017 (edited) On v1.7.1.1 in the file classes/Link.php At line 698 Remove the exclamation mark from "if (!$redirectLegacy) {" That does not solve everything though, now the page shows up but won't display any product... Edited May 24, 2017 by quochuy (see edit history) Link to comment Share on other sites More sharing options...
quochuy Posted May 25, 2017 Share Posted May 25, 2017 This is a better fix. If you applied my suggestion above, revert it back then for Nginx rewrite, add the conf below. Note: I've install prestashop in a sub-directory of my web root. # legacy Prestashop location ~ ^(/prestashop-directory/.*\.php)(/.*)$ { fastcgi_param SCRIPT_NAME $1; fastcgi_param PATH_INFO $2; try_files $uri $uri/ $1?$args; } 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