Re: [PHP] URGENT: Space char in rewriterule

2004-07-26 Thread Robert Winter
It didn't work. Still the same problem. Thanks Marek Kilimajer [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] Robert Winter wrote: I have the following rewriterule: RewriteRule ^(([0-9]|[A-Z]|[a-z]|_)+)$ redirect.php?$1 [L] that transforms http://mysite.com/XXX

[PHP] URGENT: Space char in rewriterule

2004-07-25 Thread Robert Winter
I have the following rewriterule: RewriteRule ^(([0-9]|[A-Z]|[a-z]|_)+)$ redirect.php?$1 [L] that transforms http://mysite.com/XXX to http://mysite.com/redirect.php?XXX and I need to also include to space char, for example that transforms http://mysite.com/AB XX to

[PHP] session.use_trans_sid = 0 does not work!!!

2004-06-10 Thread Robert Winter
Hi. My www provider has set session.use_trans_sid default to ON. I tried changing it in .htaccess or in the .php before session_start() but relative links are always renamed to xxx?PHPSESSION= I'm also printing the value of session_use_trans_sid with ini_get and it always returns 1 (on)! I

[PHP] Re: Refresh Page

2004-06-05 Thread Robert Winter
You can use javascript timer that are much more flexible than META HTTP-EQUIV=REFRESH because you can test for conditions, etc. Mike Mapsnac [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] I want to refresh page every 10 seconds, without clicking on Refresh button. Any ideas

[PHP] Prevent IE6 from blocking cookies

2004-06-05 Thread Robert Winter
Do I a prevent Internet Explorer 6 from blocking cookies (session cookies, etc)? Do I have to setup something in the META HEADERS? Thanks Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Asuming query without the ?

2004-06-04 Thread Robert Winter
On RewriteRule ^localpath(.*)$http://www.google.com$1 Thanks again! Marek Kilimajer [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] Robert Winter wrote: Where and how do I set this? I'm to Unix and PHP. in .htaccess file RewriteRule ^/path/([0-9]+)$/path/index.php

[PHP] Asuming query without the ?

2004-06-03 Thread Robert Winter
Is it possible to configure PHP/.htAccess/etc. for assuming a query when the users enters a path like this: www.myserver.com/path/154-- assumes www.myserver.com/path/index.php?code=154 The only thing I could do is avoid writing index.php but I still have to write the ?:

Re: [PHP] Asuming query without the ?

2004-06-03 Thread Robert Winter
Where and how do I set this? I'm to Unix and PHP. Marek Kilimajer [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] Robert Winter wrote: Is it possible to configure PHP/.htAccess/etc. for assuming a query when the users enters a path like this: www.myserver.com/path/154

Re: [PHP] Asuming query without the ?

2004-06-03 Thread Robert Winter
Where and how do I set this? I'm to Unix and PHP. John Nichel [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] Robert Winter wrote: Is it possible to configure PHP/.htAccess/etc. for assuming a query when the users enters a path like this: www.myserver.com/path/154