Re: [PHP] what settings I have to use in php 5.1.2?

2006-11-23 Thread Jochem Maas
[EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
 hi!

 the company I work for moves our web server to other hosting company
 (dedicated server). we use php 5.1.2, apache 2.2, mysql 5.0.18, and I
 wonder what else I have to change in php.ini settings?

 register_globals is Off
 magic_quotes_gpc is Off

 what else you recomand to do?
 r2 turn off ALL the garbage disposers.
 what do you mean?

rent/download/steal/buy a copy of StarWars.

 
 and have a look at php.ini-recommended (or whatever it's
 called exactly)
 
 
 Thanks Jochem!
 
 thanks.

 -afan

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] what settings I have to use in php 5.1.2?

2006-11-23 Thread Dave Goodchild

Also, turn off display_errors before going into production, at which stage
enable error logging.

On 11/23/06, Jochem Maas [EMAIL PROTECTED] wrote:


[EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
 hi!

 the company I work for moves our web server to other hosting company
 (dedicated server). we use php 5.1.2, apache 2.2, mysql 5.0.18, and I
 wonder what else I have to change in php.ini settings?

 register_globals is Off
 magic_quotes_gpc is Off

 what else you recomand to do?
 r2 turn off ALL the garbage disposers.
 what do you mean?

rent/download/steal/buy a copy of StarWars.


 and have a look at php.ini-recommended (or whatever it's
 called exactly)


 Thanks Jochem!

 thanks.

 -afan

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





--
http://www.web-buddha.co.uk


Re: [PHP] what settings I have to use in php 5.1.2?

2006-11-23 Thread Afan Pasalic

Thanks Dave, good one.

-afan

Dave Goodchild wrote:
Also, turn off display_errors before going into production, at which 
stage

enable error logging.

On 11/23/06, Jochem Maas [EMAIL PROTECTED] wrote:


[EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
 hi!

 the company I work for moves our web server to other hosting company
 (dedicated server). we use php 5.1.2, apache 2.2, mysql 5.0.18, 
and I

 wonder what else I have to change in php.ini settings?

 register_globals is Off
 magic_quotes_gpc is Off

 what else you recomand to do?
 r2 turn off ALL the garbage disposers.
 what do you mean?

rent/download/steal/buy a copy of StarWars.


 and have a look at php.ini-recommended (or whatever it's
 called exactly)


 Thanks Jochem!

 thanks.

 -afan

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php







--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] what settings I have to use in php 5.1.2?

2006-11-22 Thread afan
hi!

the company I work for moves our web server to other hosting company
(dedicated server). we use php 5.1.2, apache 2.2, mysql 5.0.18, and I
wonder what else I have to change in php.ini settings?

register_globals is Off
magic_quotes_gpc is Off

what else you recomand to do?

thanks.

-afan

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] what settings I have to use in php 5.1.2?

2006-11-22 Thread Richard Lynch
On Wed, November 22, 2006 11:10 am, [EMAIL PROTECTED] wrote:
 the company I work for moves our web server to other hosting company
 (dedicated server). we use php 5.1.2, apache 2.2, mysql 5.0.18, and I
 wonder what else I have to change in php.ini settings?

 register_globals is Off
 magic_quotes_gpc is Off

 what else you recomand to do?

It depends on what the application does or doesn't do.

If it never ever sends out email, get rid of the sendmail stuff in
php.ini, so there's no chance of a silly mistake leading to sending
bulk email.

If you never need to use PHP to read content from a URL, turn off
allow_url_fopen.

Moving to a dedicated server is great for performance/features, but if
you're inexperienced as a sysadmin, you might want to consider hiring
a local sysadmin to help out.

And, of course, there are a TON of things you can (and I should) read
about sysadmin work, security, and more security.  Finding the time to
DO that, however, can be problematic.

I personally work very very very hard to be sure that I have to admin
a minimum number of boxes with very limited functionality, and foist
off any generalized sysadmin work to a shared host, for precisely the
reason that I *know* my limitations in being a sysadmin. :-)

-- 
Some people have a gift link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] what settings I have to use in php 5.1.2?

2006-11-22 Thread Jochem Maas
[EMAIL PROTECTED] wrote:
 hi!
 
 the company I work for moves our web server to other hosting company
 (dedicated server). we use php 5.1.2, apache 2.2, mysql 5.0.18, and I
 wonder what else I have to change in php.ini settings?
 
 register_globals is Off
 magic_quotes_gpc is Off
 
 what else you recomand to do?

r2 turn off ALL the garbage disposers.

and have a look at php.ini-recommended (or whatever it's
called exactly)

 
 thanks.
 
 -afan
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] what settings I have to use in php 5.1.2?

2006-11-22 Thread afan
 [EMAIL PROTECTED] wrote:
 hi!

 the company I work for moves our web server to other hosting company
 (dedicated server). we use php 5.1.2, apache 2.2, mysql 5.0.18, and I
 wonder what else I have to change in php.ini settings?

 register_globals is Off
 magic_quotes_gpc is Off

 what else you recomand to do?

 r2 turn off ALL the garbage disposers.
what do you mean?

 and have a look at php.ini-recommended (or whatever it's
 called exactly)


Thanks Jochem!



 thanks.

 -afan


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php