Friday 05 September 2008 4:19:30 am
Hei Henriette!
Yes, you'll have to uninstall it first.
I personally use wamp, and it will save you a lot of time, especially if you need to test other php / apache / mysql versions at some time: http://www.wampserver.com/en/
Some recommended optimizations to wamp for development setup on a machine with some memory: php.ini (open with the try icon, to be sure you get the correct one)
max_execution_time = 120
max_input_time = 130
memory_limit = 164M
error_reporting = E_ALL|E_STRICT
post_max_size = 100M
upload_max_filesize = 100M
extension=php_apc.dll
extension=php_curl.dll
extension=php_gd2.dll
;extension=php_ldap.dll
extension=php_mbstring.dll
extension=php_mcrypt.dll
extension=php_mysql.dll
[Date]
date.timezone = CET
[APC]
apc.enabled = 1
apc.cache_by_default = 1
apc.enable_cli = 0
apc.shm_segments = 1
apc.shm_size = 96
apc.stat=1
httpd.conf
# look for a section that looks like this
<Directory "c:/www/">
# and set the Allow from section to something like this so apache isn't
# accepting request from everyone without your knowledge
Order Deny,Allow
Deny from all
Allow from 127.0.0.1 192.168.1 10.0.10
</Directory>
# if you also use a different web server on your machine, set apache to
# use a different port
Listen 81
ServerName localhost:81
To install apc, download it (if it isn't included) from (the one for 5.2.1 works for 5.2.6 as well): http://pecl4win.php.net/ext.php/php_apc.dll
And download it to your php extension folder, mine is: extension_dir = "c:/wamp/bin/php/php5.2.6/ext/" Should probably use xdebug during development, but doesn't work that well with apc.
eZ Online Editor 5: http://projects.ez.no/ezoe || eZJSCore (Ajax): http://projects.ez.no/ezjscore || eZ Publish EE http://ez.no/eZPublish/eZ-Publish-Enterprise-Subscription
@: http://twitter.com/andrerom
|