Web Hosting Talk







View Full Version : PHP Apache module: minimum config options?


JayPee
02-13-2002, 02:09 AM
Hey!

I'm wondering what PHP config options commercial hosting providers consider to be "required" - the minimum set of options that PHP should provide for their clients.

I'm currently using:

--enable-safe-mode --with-mysql --with-zlib --enable-memory-limit --without-pear

Have I missed anything important?

Are the GD modules considered "required"? How about the options --enable-calendar --enable-ftp --enable-bcmath --enable-wddx --with-imap?

Thanks very much!

Jason

Panzerfaust
02-14-2002, 12:53 AM
'./configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--with-swf=/usr/local/flash' '--enable-ftp' '--with-gd=../gd-1.8.4' '--with-jpeg-dir=/usr/local' '--with-xpm-dir=/usr/X11R6' '--with-png-dir=/usr' '--with-imap=../imap-2001.BETA.SNAP-0105220031' '--with-mcrypt' '--with-ming=../ming-0.1.1' '--enable-magic-quotes' '--with-mysql' '--enable-safe-mode' '--enable-track-vars' '--with-ttf' '--enable-versioning' '--with-zlib'

Compile it with everything that needed and little more, because you don't want to recompile PHP everytime (some times the process goes wrong) a user want's to add something that could've been added.

JayPee
02-16-2002, 04:00 PM
Great - thanks very much.

Jason