Re: [PHP] Handling DELETE requests

2003-08-14 Thread Seairth Jacobs
to close the connection. I have now switched to a php-based HTTP client that I wrote and I am getting back exactly what I'm expecting. --- Seairth Jacobs [EMAIL PROTECTED] Seairth Jacobs [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Curt Zirzow [EMAIL PROTECTED] wrote in message news

[PHP] Handling DELETE requests

2003-08-14 Thread Seairth Jacobs
scripts can accept DELETE requests. Any suggestions? --- Seairth Jacobs [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Handling DELETE requests

2003-08-05 Thread Seairth Jacobs
Curt Zirzow [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] * Thus wrote Seairth Jacobs ([EMAIL PROTECTED]): Under Apache 1.3, how can I respond to DELETE request with a PHP script? I have no problem with GET, POST, or PUT. The only thing I found was the Scripts directive

[PHP] fread() question

2003-07-11 Thread Seairth Jacobs
, $contentLength); it works as expected. So what's going on? For now, I will use the single command in place of the loop, but I really wanted to monitor the current unread bytes. Any thoughts appreciated. --- Seairth Jacobs [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

[PHP] Re: Mind exploded on this one!

2003-07-11 Thread Seairth Jacobs
Could you give an example of what you want/expect to get back? Seairth Phil Powell [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] $booleanNonFormVars = array('hasSelectedLetter', 'hasEnteredProfile', 'hasSelectedProfile', 'hasEditedProfile',

[PHP] Re: urldecode problem :(

2003-06-06 Thread Seairth Jacobs
one. In which case, you are correct. Two different character encodings are being URL encoded. You could convert the first string using: convert_cyr_string(mb_convert_encoding(urldecode($a), 'ISO-8859-5', 'UTF-8'), 'i', 'w') -- --- Seairth Jacobs [EMAIL PROTECTED] -- PHP General Mailing

[PHP] asynchronous processing?

2003-04-02 Thread Seairth Jacobs
in that version). So are there any alternative methods? --- Seairth Jacobs [EMAIL PROTECTED] [1] http://www.php.net/manual/en/function.register-shutdown-function.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: :( This fact ruins my understanding of php :( please explain!

2002-10-08 Thread Seairth Jacobs
in $a inside the function f(). 2) Try returning the array by reference... function f($a){return $a;} for ($i=0; $i 100; $i++){$a = f($big);} --- Seairth Jacobs [EMAIL PROTECTED] Markas [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I tried some trivial exp

[PHP] Re: Converting a Java into php

2002-10-08 Thread Seairth Jacobs
If you are specifically trying to use UTF-8 encoding, look at encode_utf8(). --- Seairth Jacobs [EMAIL PROTECTED] Umut Ozan Basar [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... i am converting a java class into php.. almost everything is done... but

[PHP] Re: stopping repeated posts to a Bulletin Board

2002-09-17 Thread Seairth Jacobs
o return a confirmation page or the script took too long to execute. Assign a unique key to each submission form (as a hiiden field). Once the form is submitted, you can stop any replays by testing to see if the key was already used or not. -- --- Seairth Jacobs [EMAIL PROTECTED] -- PHP General

[PHP] Re: php4 w/ apache2 using module

2002-09-06 Thread Seairth Jacobs
) --- Seairth Jacobs [EMAIL PROTECTED] Yoda2005 [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Is there any way to do it? I cant seem to get it to install as a module nomatter what I do. Right now I have it running as a cgi parser but some stuff I want to d

[PHP] Re: No Localhost with apache?

2002-08-28 Thread Seairth Jacobs
as some programs are configured that way... --- What is the value of ServerName in your httpd.conf file? I'm guessing that it's 127.0.0.1. If so, just change it to localhost and restart Apache. --- Seairth Jacobs [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] Re: No Localhost with apache?

2002-08-28 Thread Seairth Jacobs
). If this entry is missing or different, I suppose it's possible to lose access to localhost altogether, though I don't know for sure (and don't want to test out either g). What happens when you ping localhost at a command prompt? --- Seairth Jacobs [EMAIL PROTECTED] Ryan A [EMAIL PROTECTED] wrote

[PHP] Re: HTTP_REFERER?

2002-08-28 Thread Seairth Jacobs
If you are running PHP 4.1.0 or later, you can also use $_SERVER[HTTP_REFERER], etc. Note that if you are using PHP 4.2.0 or later, then the register_globals option is off by default and the variables you mention below are not automatically created. --- Seairth Jacobs [EMAIL PROTECTED] Lon

[PHP] Follow-up question about Digest Authentication in PHP

2002-08-27 Thread Seairth Jacobs
it? --- Seairth Jacobs [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP Cookies

2002-08-26 Thread Seairth Jacobs
that you set will be returned to you with each request. --- Seairth Jacobs [EMAIL PROTECTED] Erich Kolb [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Why cant I use more than 1 variable in a cookie? -- PHP General Mailing List (http://www

[PHP] Re: Can someone - anyone see my error?

2002-08-25 Thread Seairth Jacobs
I think you have to specify the destination file name as well. The destination directory is not enough. --- Seairth Jacobs [EMAIL PROTECTED] Johnp [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Ok after being blasted for not looking on PHP.net first I

Re: [PHP] Passing variables between servers

2002-08-21 Thread Seairth Jacobs
the original password (which may be used by the user for other sites, applications, etc). --- Seairth Jacobs [EMAIL PROTECTED] Adam Williams [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Just suggestion but why not use md5($password) and then send th

[PHP] Re: Passing variables between servers

2002-08-21 Thread Seairth Jacobs
do this with GET. --- Seairth Jacobs [EMAIL PROTECTED] Mark McCulligh [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have two server. One running PHP/Linux the other running ASP/2000. The user logins into the PHP server and session variables are made

[PHP] Re: suggestions for a good php+mysql isp?

2002-08-20 Thread Seairth Jacobs
of a support call. Good luck in your search. :) --- Seairth Jacobs [EMAIL PROTECTED] Or Not Db Db [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have searched the archives and the last time this was seriously discussed was september of last year...

[PHP] Re: phpMyAdmin is this possible

2002-08-20 Thread Seairth Jacobs
that access (usually with some restrictions, of course). --- Seairth Jacobs [EMAIL PROTECTED] Steve Jackson [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I am new to MySQL and PHP. Having looked at PHPMyAdmin the GUI I was wondering if it's possible to crea

[PHP] Re: Apache 2.0.40 and php as module

2002-08-19 Thread Seairth Jacobs
I have had the same problem under Win2K. My understanding is that PHP does not yet work well (at all, in this case) with Apache2. Instead, install Apache 1.3. The console window is a bit annoying (would have liked to run it as a service), but it does work. :) --- Seairth Jacobs [EMAIL

[PHP] Re: frames and variables

2002-08-15 Thread Seairth Jacobs
of Frames in return for the increased simplicity of generating the pages. --- Seairth Jacobs [EMAIL PROTECTED] [EMAIL PROTECTED] wrote in message 01c24415$8155a1b0$86a96518@jumpy">news:01c24415$8155a1b0$86a96518@jumpy... Has anyone here designed php sites that use a combination of p

[PHP] URL path question

2002-08-13 Thread Seairth Jacobs
not want to use a query string (for various reasons) to identify those resources. So, how can I do this? Is this an IIS-specific problem or does PHP just not allow this? TIA. --- Seairth Jacobs [EMAIL PROTECTED] p.s. Sorry if you see a cross-post on php.version4. I got a warning that said