[PHP] Problem with Mcrypt + PHP 4.0.5

2001-05-03 Thread Stefan Scherf
Hi, does anybody encountered problems while calling Mcrypt-commands with PHP4.0.5 (LAMP)? With 4.0.4pl1 my scripts work fine, but after updating to 4.0.5 they stop without an error-message (php.ini: error_reporting = E_ALL) when I call for example mcrypt_ecb(). After downgrading to 4.0.4pl1 eve

Re: [PHP] Show output of program in realtime on website

2001-01-10 Thread Stefan Scherf
""Brad Hubbard"" <[EMAIL PROTECTED]> schrieb: > Is there something you can do with a CGI lib that facilitates this? this one works: $fp = popen ("ping www.test.de -c 20", "r"); // output with delay // $fp = popen ("main", "r");// one output, no delay while( $zeile=fgets($fp,100)

Re: [PHP] encrypt() and decrypt()

2001-01-09 Thread Stefan Scherf
"Robert Collins" <[EMAIL PROTECTED]> wrote: > There was an encrypt() and a decrypt() function available in php3 was this > removed from php4? if not how can I use it? I cant seem to find any info on > php.net on usage and I get an undefigned function error when I try to use > it. try http://www.p

[PHP] Show output of program in realtime on website

2001-01-09 Thread Stefan Scherf
Hi, the program "main" produces x times an output with an delay of 1 second between each output. I want to show this output in "realtime" on a website (this should become a progress-bar). The following code shows the output a f t e r the program ends: CODE... $fp = popen ("./main", "r");