Page 1 of 1
php.ini development settings
Posted: Fri May 11, 2012 6:30 am
by starlays
Hello to all.
Is there any good tutorial for setting up server for development.
Thank you in advance.
Re: php.ini development settings
Posted: Fri May 11, 2012 1:30 pm
by tr0gd0rr
I prefer
WAMP or
MAMP myself. It works out of the box and I am a lazy developer when it comes to sys admin

Re: php.ini development settings
Posted: Sat May 12, 2012 8:36 pm
by Doug G
I built and use and ispconfig3 server for development.
Re: php.ini development settings
Posted: Sun May 13, 2012 2:31 am
by starlays
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.
Re: php.ini development settings
Posted: Sun May 13, 2012 3:48 am
by requinix
The same as your production machine's settings except
Code: Select all
display_errors = on
error_reporting = -1
-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.