Jump to content

HTTP 200 - parsererror - during installation process


Recommended Posts

Hi,

is a week that i try to install prestashop vers. 1.7.x but i receive always the error "HTTP 200 - parsererror"  during modules addons installation.

 

i try all suggestion that i've found on internet without solve the problem.

 

i attach you the screenshot of the error.

 

in this moment i've a test domain and if you need, i can give you cpanel access and all data for reproduce the error.

 

I'm waiting your answer, is very urgent.

 

regards

 

 

2018-02-15 15_28_56-Assistente di Installazione PrestaShop.png

Link to comment
Share on other sites

  • 2 months later...
  • 4 months later...
  • 2 months later...
  • 2 weeks later...
  • 2 weeks later...
  • 1 year later...

Solved for me! Checked 3 times.

Prestashop v 1.7.5

Config

nginx + PHP -FPM 7.1/ICU 63.1 

Php extra parameters.

allow_url_fopen = true;
upload_max_filesize = 128M;
post_max_size = 128M;
memory_limit = 1024M;
max_execution_time = 600;
max_input_time = 600;
max_input_vars = 600;

register_globals = Off
magic_quotes_gpc = Off
allow_url_include = Off
safe_mode = Off
safe_mode_gid = Off
default_socket_timeout = 240
mysql.connect_timeout = 240

----------------------------------

nginx extra parameters

try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/lib/php7.0-fpm/web8.sock(check for your parameter);
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
fastcgi_split_path_info ^(.+.php)(/.*)$;
fastcgi_read_timeout 300s;
fastcgi_send_timeout 300s;
fastcgi_buffer_size 128k;
fastcgi_buffers 256 16k;
fastcgi_max_temp_file_size 0;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;

-------------------------------------------

Change browser to opera.!!!!!!!!!!!!!!!!!!

Edited by keoroot (see edit history)
Link to comment
Share on other sites

  • 1 year later...
  • 7 months later...

The easiest fix, is to enable demo data install

1874700102_2021-12-06at4_42PM.thumb.png.b53572e22d9da1ab0fe72b518893ed70.png

This will be fixed in future versions hopefully (follow https://github.com/PrestaShop/PrestaShop/issues/26892)

If you do not want to install demo data at all, you can edit this line

File: install/controllers/http/process.php

Line: 

} elseif (Tools::getValue('postInstall') && !empty($this->session->process_validated['installFixtures'])) {

Change it to: 

} elseif (Tools::getValue('postInstall')) {

 

Edited by Tuni-Soft (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...