Hello to all.
Is there any good tutorial for setting up server for development.
Thank you in advance.
php.ini development settings
Moderator: General Moderators
Re: php.ini development settings
I built and use and ispconfig3 server for development.
Re: php.ini development settings
I apologise, i have putted the question wrong... I wanted to ask what are the ideal php settings in php.ini file so you could have a good eviroment for developing.
Thank you to all.
Thank you to all.
Re: php.ini development settings
The same as your production machine's settings except
-1 means you'll see messages for every possible error. If you really don't want that, at least include E_WARNING and E_NOTICE in the list.
Code: Select all
display_errors = on
error_reporting = -1