caliux Posted June 24, 2012 Share Posted June 24, 2012 Hello, I had some problems with my last hosting, not working some functions like file_get_contents. I chose to move at another server. Anyway hosting is free. But at this server, .htacces isn?t working, and I get a bad error and can?t find cause. I?ll post some details about server Apache version 2.2.16 PHP version 5.3.8 MySQL version 5.1.56-log Architecture x86_64 Operating system linux Now my .htacces <IfModule mod_rewrite.c> # allow_override On # mod_rewrite is installed RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d <IfModule mod_php5.c> RewriteRule ^(.*)$ http://www.calinsprojects.info/jack/index.php/$1 [L] </IfModule> <IfModule !mod_php5.c> RewriteRule ^(.*)$ http://www.calinsprojects.info/jack/index.php/$1 [L] </IfModule> </IfModule> Bad error Parse error: syntax error, unexpected $end in /home1/caliux/public_html/jack/application/controllers/site on line 1 Please help me. Quote Link to comment https://forums.phpfreaks.com/topic/264685-hosting-problem/ Share on other sites More sharing options...
ZulfadlyAshBurn Posted June 24, 2012 Share Posted June 24, 2012 it's not a server error. it's a coding syntax error... Quote Link to comment https://forums.phpfreaks.com/topic/264685-hosting-problem/#findComment-1356573 Share on other sites More sharing options...
caliux Posted June 24, 2012 Author Share Posted June 24, 2012 I think is server, because on a last server it worked and on actual server it doesn't Quote Link to comment https://forums.phpfreaks.com/topic/264685-hosting-problem/#findComment-1356574 Share on other sites More sharing options...
ZulfadlyAshBurn Posted June 24, 2012 Share Posted June 24, 2012 It is a syntax error! Syntax errors can only be cause by the script not the server. Quote Link to comment https://forums.phpfreaks.com/topic/264685-hosting-problem/#findComment-1356575 Share on other sites More sharing options...
Tarential Posted July 12, 2012 Share Posted July 12, 2012 I'm curious here. Perhaps I've missed the purpose. These conditional statements seem unnecessary: <IfModule mod_php5.c> RewriteRule ^(.*)$ http://www.calinsprojects.info/jack/index.php/$1 [L] </IfModule> <IfModule !mod_php5.c> RewriteRule ^(.*)$ http://www.calinsprojects.info/jack/index.php/$1 [L] </IfModule> Couldn't it just be: RewriteRule ^(.*)$ http://www.calinsprojects.info/jack/index.php/$1 [L] Quote Link to comment https://forums.phpfreaks.com/topic/264685-hosting-problem/#findComment-1361160 Share on other sites More sharing options...
Mahngiel Posted July 14, 2012 Share Posted July 14, 2012 unexpected end means you haven't closed one of your functions. Quote Link to comment https://forums.phpfreaks.com/topic/264685-hosting-problem/#findComment-1361521 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.