You are not logged in.
Pages: 1
found an old php4 pkg i need php4 and not php5 installed it pacman -A php4XXXX.
i have added to httpd.conf
LoadModule php4_module lib/apache/libphp4.so
and
<IfModule mod_php4.c>
DirectoryIndex index.php index.html
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
</IfModule>
trying to start httpd i get
Syntax error on line 263 of /etc/httpd/conf/httpd.conf:
Cannot load /usr/lib/apache/libphp4.so into server: libssl.so.0.9.6: cannot open shared object file: No such file or directory
plz can someone help me to get apache to run php4
Offline
I would personally advise you to recompile it
The best thing to do would be to create a PKGBUILD for the latest version of PHP4
The package you have seems to have been compiled on a system with openssl-0.9.6, and the up to date version is openssl-0.9.7 (libssl.so.0.9.7)
You could always symlink libssl.so.0.9.7 to libssl.so.0.9.6, but I don't guarantee that it'll work...
DaDeXTeR (Martin Lefebvre)
My screenshots on PicasaWeb
[img]http://imagegen.last.fm/dadexter/recenttracks/dadexter.gif[/img]
Offline
Pages: 1