Diagnosing Large Imports That Fail in the Browser Print

  • imports, php, timeouts, troubleshooting
  • 0

Large imports can hit several independent limits: browser/proxy timeouts, PHP upload size, POST size, memory, execution time, or database packet limits.

  1. Determine whether the upload itself fails or whether processing fails after the upload completes.
  2. For upload failures, compare file size with upload_max_filesize and post_max_size.
  3. For processing failures, review PHP/application logs for memory or execution-time errors.
  4. For database imports, check whether the error mentions a packet that is too large or a lost database connection.
  5. Use an application’s chunked/batched import option when available.

Changing every limit at once makes diagnosis harder. Identify the first failing boundary and adjust only what is necessary.


Was this answer helpful?

« Back