Installing Apache/PHP/MySQL for streaming script

Hi there,

I've made a chatscript and it work's great on the server of my hosting provider. The script does make a loop , so the chat-messages will be streamed.

But if I try to run the script on my own server, it won't stream.
So I called my hosting provider to ask about; how to configure the server. So did I, but guess, it still not work.

Here is my configuration:

Apache 1.3.31
./configure --prefix=/ext/apache
--enable-module=so \
--enable-module=vhost_alias \
--enable-module=rewrite \
--enable-module=actions \
--enable-module=alias \
--enable-module=access \
--enable-module=autoindex \
--enable-module=userdir \
--enable-module=auth \
--enable-module=dir \
--enable-module=include \
--enable-module=mime \
--enable-module=mime_magic \
--enable-module=log_config \
--enable-module=negotiation \
--enable-module=setenvif \
--enable-module=cgi \
--enable-module=env \
--enable-module=status \
--enable-module=info \
--with-perl=/usr/bin/perl


PHP 4.3.9:
./configure --prefix=/ext/php4 \
--with-apxs=/ext/apache/bin/apxs \
--with-mysql=/ext/mysql \
--enable-ftp \
--with-kerberos \
--with-xml-dir=/ext \
--enable-sockets \
--with-zlib-dir=/ext \
--enable-track-vars \
--enable-force-cgi-redirect \
--with-gettext \
--with-exec-dir=/ext/php4/libexec \
--with-curl=/ext \
--with-config-file-path=/ext/php4 \
--with-expat-dir=/ext \
--with-dom=/ext \
--disable-posix \
--with-kerberos=/ext \
--with-imap=/ext \
--enable-mbstring=all

MySQL 4.0.21
./configure --prefix=/ext/mysql


My question;
How can I configure my server, so I can get my script working?

thank you,

PS: Sorry for my bad english

 

 

 

 

Top