I moved mt site to Dreamhost. I tried to run php as CGI as suggested but this breaks Drupal because the .htaccess directives and the other php variables do not work.
So I went back to use php as a module and now I have the problem of the urls going crazy with strange characters.
For example I cannot delete users or modify the accounts: drupal/user/8/edit?destination=admin%2Fuser%26from%3D450
That screws the commands I send and Drupal ignores them.
There's a way to solve this? Why it happens?
-HRose / Abalieno
On Thu, 21 Apr 2005 02:53:26 +0200, Abalieno abalieno@cesspit.net wrote:
I moved mt site to Dreamhost. I tried to run php as CGI as suggested but this breaks Drupal because the .htaccess directives and the other php variables do not work.
So I went back to use php as a module and now I have the problem of the urls going crazy with strange characters.
For example I cannot delete users or modify the accounts: drupal/user/8/edit?destination=admin%2Fuser%26from%3D450
That screws the commands I send and Drupal ignores them.
There's a way to solve this? Why it happens?
I'm using Dreamhost with PHP not as CGI and I'm not having any problems. That URL looks like it's using escaped characters, though I don't know why it would be doing that.
I'm using Dreamhost with PHP not as CGI and I'm not having any problems. That URL looks like it's using escaped characters, though I don't know why it would be doing that.
For example: drupal/user/485/edit?destination=admin/user becomes drupal/user/485/edit?destination=admin%2Fuser
drupal/user/481/edit/Personal information becomes drupal/user/481/edit/Personal%20information
But it's the first case to break Drupal (4.6.0), should I post it as a bug?
I believe that %2 is a space. You cant have spaces in UNIX. Ron
InterNet Marketing Resource Center A Free Super Mart of Articles, Demos, Tutorials everything you need to Succeed on the net. www.inmrc.com
-----Original Message----- From: Tim Altman [mailto:gmane@timaltman.com] Sent: Thursday, April 21, 2005 4:16 AM To: drupal-support@drop.org Subject: [drupal-support] Re: Infinite problems with urls
On Thu, 21 Apr 2005 02:53:26 +0200, Abalieno abalieno@cesspit.net wrote:
I moved mt site to Dreamhost. I tried to run php as CGI as suggested but this breaks Drupal because the .htaccess directives and the other php variables do not work.
So I went back to use php as a module and now I have the problem of the urls going crazy with strange characters.
For example I cannot delete users or modify the accounts: drupal/user/8/edit?destination=admin%2Fuser%26from%3D450
That screws the commands I send and Drupal ignores them.
There's a way to solve this? Why it happens?
I'm using Dreamhost with PHP not as CGI and I'm not having any problems. That URL looks like it's using escaped characters, though I don't know why it would be doing that.
-- Tim Altman
On Fri, 22 Apr 2005 15:11:14 +0200, Ron Mahon ron@inmrc.com wrote:
I believe that %2 is a space. You cant have spaces in UNIX.
%20 is a space.