depend on which web server :
for apache : use php as a module
for IIS (very bad id) : use php as a ISAPI
In either case don't use php as a CGI, this won't allow persistant
connection (very usefull for mysql)
Hope that helped !
k
--
PHP General Mailing List (http://www.php.net/)
To unsubs
This problem can comes from your php.ini, at the section :
; Automatically add files before or after any PHP document.
auto_prepend_file =
auto_append_file =
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
$handle = popen("cvs --help", "r");
while(!feof($handle)) {
echo fgets($handle, 3);
}
pclose($handle);
i get a valid handle but no output ! popen failed only with cvs command
(cvs.exe), if anybody could help me :-)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
I started to implement cvs connection protocole with php with a socket
connection. As it is poorly documented can anybody tip me in that task???
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
4 matches
Mail list logo