alanl1 Posted August 20, 2013 Share Posted August 20, 2013 Hi Professionals. Not sure if I have posted in the right place but here goes. I have a prgram that coverts a csv to an array in preperation to make some changes then upload to the database. all works fine until I use a larger csv file then I receive the error HTTP Error 500.0 - Internal Server Error C:\PHP 5\php-cgi.exe - The FastCGI process exited unexpectedly Detailed Error Information Module FastCgiModule Notification ExecuteRequestHandler Handler FastCGI PHP Error Code 0x000000ff Requested URL http://localhost:80/preupload.php Physical Path C:\inetpub\wwwroot\preupload.php Logon Method Anonymous Logon User Anonymous does anyone have any idea what I need to do I have exausted my online help thanks in advance Link to comment https://forums.phpfreaks.com/topic/281411-http-error-500-internal-server-error/ Share on other sites More sharing options...
mac_gyver Posted August 21, 2013 Share Posted August 21, 2013 it's possibly a fatal php runtime error (memory/time limit) and if php terminates and error_reporting/display_errors isn't on, a http 500 status will be returned to the browser. set php's error_reporting to E_ALL and display_errors to ON to see if php is detecting any errors that would help identify the problem. Link to comment https://forums.phpfreaks.com/topic/281411-http-error-500-internal-server-error/#findComment-1446062 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.