[PHP] php openssl

2003-11-18 Thread Fejes Jozsef
Hi! I'd really love to use PKCS12 functions from PHP but it's not supported. Why?!?!?!?! Currently I have to run the 'openssl pkcs12' system command, all the other things can be done from php. It's not in the least elegant. Anyone knows if there's going to be support for it or there's already a pat

Re: [PHP] reposting in textarea

2003-07-14 Thread Fejes Jozsef
use or if it's enabled -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Uploading Multiple Files

2003-07-14 Thread Fejes Jozsef
it's very hard to read this code without tabs, but maybe this is an error: > do_upload2($userfile,$newname); shouldn't that be $userfile2 and $newname2 ? (if this is the error, now you see why ugly code sucks :)) anyway, maybe we would known much more if we saw the whole code, e.g. where Current

Re: [PHP] Socket connect crashes web server

2003-07-11 Thread Fejes Jozsef
> "The script started from the URL '/myscript/index.php' with parameters '' > has not responded within the configured timeout period. The HTTP server is > terminating the script." maybe the problem is not with the sockets but you have an endless loop bug? do you have an up-to-date version of php?

Re: [PHP] /etc/passwd

2003-07-10 Thread Fejes Jozsef
My method is: 1. check if id starts with / if(ereg("^\/", $id)) goaway; 2. check if there is .. in it if(ereg("\.\.", $id)) goaway; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] suexec

2003-07-10 Thread Fejes Jozsef
> Sure there is, the same way as in the cgi version. Safe mode must be off. > Safe mode is off, suexec is turned on. In the logfiles, I see that suexec engine is turned on or something like that, the path is correct too. Suexec and the virtualhost are configured alright because for cgi programs, i

[PHP] suexec

2003-07-10 Thread Fejes Jozsef
Hi! Is there a way to use suexec with a non-cgi version of php? Or is there any other way to do the same job as suexec would do? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php