• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Problem upload 80M CSV file

yozeur

New Pleskian
Hi everyone,

My problem is :
Got error 500 while uploading via angularJS a CSV file

Plesk 12.0.18
Nginx treatment for files unchecked box ( in the web server parameter at the bottom)

For the domain php config :
max_execution_time 3600
max_input_time 3600
post_max_size 512M
upload_max_filesize 512M
file_uploads ON

In case nginx conf :
worker_processes 1;

error_log /var/log/nginx/error.log;

events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;

sendfile on;
send_timeout 3600s;
keepalive_timeout 3600;


server_tokens off;

include /etc/nginx/conf.d/*.conf;

# server {
client_max_body_size 2000M;
# }
}


Please help me to understans why i can upload up to 50M csv but no more.
 
Have you tried to upload this file through some kind of website script or PHPMyAdmin or something else?
 
Hi,
It work perfectly in local or on a basic ubuntu lamp server. Only once we move it to plesk it not work.
 
Well. I see. But I want to know how you perform uploading this file? How it can be reproduced?
 
hum the problem is to give u the csv, we upload trough here :
omd-scoring.to-z.com -> test test
administration => importer des données
give a name select file and upload

For the csv i can give it to you via wetransfer by MP
 
Do you have any related error messages in global Apache access and error logs: /var/log/httpd/ or domain logs: /var/www/vhosts/omd-scoring.to-z.com/logs/ ?
 
domain log contain only warning :
[Tue Apr 19 12:08:46.197265 2016] [fcgid:warn] [pid 7962] [client 91.204.24.253:55993] mod_fcgid: stderr: PHP 6. call_user_func_array() /var/www/vhosts/to-z.com/omd-scoring.to-z.com/bo/app/bootstrap.php.cache:3205, referer: http://omd-scoring.to-z.com/front/pages/index.html
[Tue Apr 19 12:08:46.197270 2016] [fcgid:warn] [pid 7962] [client 91.204.24.253:55993] mod_fcgid: stderr: PHP 7. AppBundle\\Controller\\CampagneController->getAll() /var/www/vhosts/to-z.com/omd-scoring.to-z.com/bo/app/bootstrap.php.cache:3205, referer: http://omd-scoring.to-z.com/front/pages/index.html

global apache log
warning due to no ssl
and a notice.
 
empty, the only line is when i wanted to add client_max_body_size but it was already in so it made an error.
 
Back
Top