id369k 0 Posted May 7, 2020 Share Posted May 7, 2020 (edited) 16 minutes ago, Forum Admin said: Correct, there is no install folder as eCommerce Suite uses URL rewrites to process URLs. Just upload all files, then go to the /install folder to run the installation. https://www.jrox.com/watch-video/aLz_4eZwm6w mydomain.com/install/ = gives an 404 error. The rules in the file ".htaccess" do not work in nginx. Edited May 7, 2020 by id369k Quote Link to post Share on other sites
Forum Support 5 Posted May 7, 2020 Share Posted May 7, 2020 try mydomain.com/index.php/install/ It works and is tested in Apache. Quote Link to post Share on other sites
id369k 0 Posted May 7, 2020 Author Share Posted May 7, 2020 (edited) I'm tried on Apache and it works. How can I run installer in nginx? Edited May 7, 2020 by id369k Quote Link to post Share on other sites
id369k 0 Posted May 7, 2020 Author Share Posted May 7, 2020 2 minutes ago, Forum Admin said: try mydomain.com/index.php/install/ It works and is tested in Apache. Yes, in Apache it works. /index.php/install/ in nginx does not work We need a way how to transfer these URL rewrites rules to nginx config. Quote Link to post Share on other sites
Forum Support 5 Posted May 7, 2020 Share Posted May 7, 2020 Try: # nginx configuration by winginx.com index index.php index.html; location / { rewrite ^/system.* /index.php?/$1 break; if (!-e $request_filename){ rewrite ^(.+)$ /index.php?/$1 break; } } Quote Link to post Share on other sites
id369k 0 Posted May 7, 2020 Author Share Posted May 7, 2020 21 minutes ago, Forum Admin said: Try: # nginx configuration by winginx.com index index.php index.html; location / { rewrite ^/system.* /index.php?/$1 break; if (!-e $request_filename){ rewrite ^(.+)$ /index.php?/$1 break; } } Thanks for the solution, but unfortunately it does not work. When I try mydomain.com/install, the browser offers to save file every time with random name, like: 2BknpT_8, pndec37h, etc. (4 989 bytes, this is index.php) Quote Link to post Share on other sites
Forum Support 5 Posted May 8, 2020 Share Posted May 8, 2020 eCommerce Suite runs on Codeigniter, so you can try setting it with Nginx: https://www.nginx.com/resources/wiki/start/topics/recipes/codeigniter/ Quote Link to post Share on other sites
id369k 0 Posted May 17, 2020 Author Share Posted May 17, 2020 Even on request, you could not provide a working configuration for your installer. You are losing potential customers. Nginх is more professional than Apache. Config for nginx: location / { try_files $uri $uri/ /index.php; } It works. Quote Link to post Share on other sites
Forum Support 5 Posted May 17, 2020 Share Posted May 17, 2020 48 minutes ago, id369k said: Even on request, you could not provide a working configuration for your installer. You are losing potential customers. Nginх is more professional than Apache. Config for nginx: location / { try_files $uri $uri/ /index.php; } It works. thanks for the feedback. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.