I'm using Laravel 5.2 and I'm trying to import an excel sheet which contains more than 18000 records. the error below appeared. The localhost page isn’t working
localhost is currently unable to handle this request. HTTP ERROR 500
I tried to change php.ini max_execution_time
from 30 seconds to 300 seconds but nothing has been changed
EDIT
the apache error log file says: [:error] [pid 3680:tid 1724] [client ::1:54491] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 24 bytes) in E:\..............
error_reporting
anddisplay_errors
directives in your computer's system-widephp.ini
file (details here). However, Laravel should have its own error reporting features—make sure you check them out in their documentation. – Rossiya