Whenever I have an error in my php code, MAMP just returns a 500 error. Is there anyway I can get MAMP to tell me what went wrong like parsing errors and stuff?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
You can also access MAMP errors using the Mac "Console" app to read the
php_error.log
file.I find this easiest to access by using spotlight and typing in "error.log".
( it won't find it if you type "php_error.log", you must type "error.log" )
It looks like this :
Just as you reported, you must have
display_errors
set toon
. This can be done either by changing the conf file or by using .htaccess like so:Additionally, you can do this with
ini_set()
like so:One last thing, you can also check
/Applications/MAMP/logs
which has three different error log files.Try opening terminal and run this command:
When you want to stop "following" (the
-f
switch) the log file, just type control+C.