php.ini development settings

Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can!

Moderator: General Moderators

Post Reply
starlays
Forum Newbie
Posts: 3
Joined: Tue May 08, 2012 2:07 am

php.ini development settings

Post by starlays »

Hello to all.
Is there any good tutorial for setting up server for development.

Thank you in advance.
User avatar
tr0gd0rr
Forum Contributor
Posts: 305
Joined: Thu May 11, 2006 8:58 pm
Location: Utah, USA

Re: php.ini development settings

Post 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 :)
Doug G
Forum Contributor
Posts: 282
Joined: Sun Sep 09, 2007 6:27 pm

Re: php.ini development settings

Post by Doug G »

I built and use and ispconfig3 server for development.
starlays
Forum Newbie
Posts: 3
Joined: Tue May 08, 2012 2:07 am

Re: php.ini development settings

Post 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.
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: php.ini development settings

Post 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.
Post Reply