| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: May 2005 Location: Ontario Canada
Posts: 3,088
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Scuttle error question Hey I installed scuttle on a godaddy host and I am having trouble with it since all the links go to "page.php"/ it gives me this error: No input file specified. this doesnt happen in any other host, can anyone help me out with this? here is the site http://kudossocial.co.uk/ everything looks fine but try clicking on the "ABOUT" link i know its just the extra "/" thats causing the problem but i can't find the function in the php files to remove it from thanks |
| |
| | #2 (permalink) |
![]() Join Date: Jul 2006
Posts: 4,609
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | maybe $cleanurls in config.inc.php and check .htaccess also.
__________________ juegosjuegos Your Hotel in Austria Matratzen Domain Acquisition | Store all your favorite links! | Web Proxies Proxy List | Bookmarks | Creative Enquiry | Web Proxy List |
| |
| | THREAD STARTER #3 (permalink) |
| Senior Member Join Date: May 2005 Location: Ontario Canada
Posts: 3,088
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | theres nothing on checkurls in the config and here is the .htacess Code: # Rewrite clean URLs onto real files
<IfModule mod_rewrite.c>
Options +FollowSymlinks
<IfDefine APACHE2>
AcceptPathInfo On
</IfDefine>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^/]+)/?(.*) $1.php/$2 [L]
</IfModule> |
| |
| | #4 (permalink) |
![]() Join Date: Jul 2006
Posts: 4,609
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | You can use mod_rewrite to hide PHP extensions in config.inc.php. You have to rename config.inc.php.example to it. $cleanurls = true; or $cleanurls = false;
__________________ juegosjuegos Your Hotel in Austria Matratzen Domain Acquisition | Store all your favorite links! | Web Proxies Proxy List | Bookmarks | Creative Enquiry | Web Proxy List |
| |