😕
Hi Forum,
I have recently taken a leap and installed Apache 2.0.44 and PHP 4.3.1 on Linux -- within seperate directories so I can keep my healthy happy and working Apache 1.3+PHP 4.2.3 setup.
(NEW=Apache 2.0 + PHP 4.3.1
OLD = Apache 1.3 + PHP 4.2.3)
All seems to work, but when I try and browse to some pages I have created via the NEW configuration the session management seems not to work properly. I am able to log into my screen via sessions $SESSION['username'], $SESSION['password'] and $_SESSION['logged_in'] - and I can query these within the page they were created in -- as soon as I browse out of that page, they seem no longer to be accessible.
The same pages within the OLD environment works fine.
I have included my build statements for both these below -- I have also copied the PHP.INI file from the OLD environment to the NEW to see if this worked -- no joy there though.
Any help MOST appreciated.
Cheers,
Andy.
Apache 2.0 Build
./configure --prefix=/usr/local/apache \
--enable-so\
--enable-cgi\
--enable-info\
--enable-rewrite\
--enable-speling\
--enable-usertrack\
--enable-deflate \
--enable-ssl\
--enable-mime-magic
PHP 4.3.1 Build
./configure
--with-apxs2=/usr/local/apache-2.0/bin/apxs
--with-mysql
--prefix=/usr/local/apache-2.0/php
--with-config-file-path=/usr/local/apache-2.0/php
--enable-track-vars
--enable-force-cgi-redirect
--disable-cgi
--with-gettext
--with-gdbm=/usr/lib
--with-gd=/usr
--with-zlib-dir=/usr/lib
--with-jpeg-dir=/usr/lib
--with-png-dir=/usr/lib
--enable-calendar
--enable-ftp
--with-ldap
--with-unixODBC
--enable-magic-quotes
--with-apache2=../httpd-2.0.44