Jump to content

davidgolding

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

davidgolding's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm getting the "No Input File Specified" error after upgrading to PHP 5.  Everything was working fine, but now doesn't check out. I've combed the web for a solution, tried about 6 hours of trying to get it to work and am at the end of my rope! So please help. I want to simply pass variables to a script using clean URLs like so: http://site.com/test.php/1 I don't need to mod_rewrite to make the "test.php" not appear. That's not an issue. Here's my test.php script: [code] $data = explode("/",$_SERVER['REQUEST_URI']); echo $data[1]; [/code] Just in case, here's my .htaccess entry that's being used for other scripts. I'm assuming that this is getting in the way. [code] <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] </IfModule> [/code] Thanks.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.