>From what you describe it sounds like php is not enabled in your apache.
For example, If I run the following php page
$_SESSION['kundnummer'] = "nummer";$_SESSION['kundnamn'] = "name";?><
body>Welcome
h3>body>
If php is not enabled, the output in the browser is ju
When you installed php5 and apache2, did you follow the instructions found on the php website?
The URL is: http://us2.php.net/install
Are you getting any error messages?
sethOn 6/17/05, Oscar Andersson <[EMAIL PROTECTED]> wrote:
I have installed PHP5 and apache 2 on my computer.I have made a app
Cedric,
I have not actually done this myself, but in theory, what you need to
do is add an 'AddType' line for both versions of php. It appears that
one can run as a module, but the other would need to run as a cgi (cgi
would be slightly slower)
Here is what I found on http://www.rshweb.biz/faq/ph
I forgot to add some other important details:
I have tried setting both LD_LIBRARY_PATH and LD_RUN_PATH to include the mysql dir I set up before compliation/execution.
In the binaries provided by mysql, there is only libmysqlclient.a (no
.so). So, what it seems to me is that I need libphp5.so to
I am having trouble getting the dynamic module of PHP5 to work with apache 1.3.33.
I first compile apache with the following options:
SSL_BASE=/opt/app/garp/new/openssl ./configure --enable-module=ssl \
--prefix=/opt/app/garp/new/apache --server-uid=garp \
--server-gid=garp --enable-modul
s Lerdorf <[EMAIL PROTECTED]> wrote:
Seth Russell wrote:> Thanks Rasmus.>> I am looking to improve the speed at which php executes through apache> (and using a static module seemed to be helpful in PHP4).>> I don't see any explaination of how to build a non-pic (position
Thanks Rasmus.
I am looking to improve the speed at which php executes through apache (and using a static module seemed to be helpful in PHP4).
I don't see any explaination of how to build a non-pic (position independent code) dso for apache on the PHP website.
Do I just add the option "--with-p
I am trying to install php5 as a static module in apache 1.3.33, but am
unsuccessful. I have followed the instructions on
http://www.php.net/manual/en/install.unix.php#install.unix.apache (I am running Redhat Linux AS 3).
I have noticed that the instructions are only for PHP4. I have tried to
chan