[PHP] remote cvs server

2003-06-26 Thread php dot net
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



[PHP] problem with popen and cvs

2003-06-26 Thread php dot net
$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, visit: http://www.php.net/unsub.php



[PHP] Re: Strange output issue

2003-06-26 Thread php dot net
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



[PHP] Re: Install PHP on windows using PHP installler

2003-06-26 Thread php dot net
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 unsubscribe, visit: http://www.php.net/unsub.php