Jump to content

Hosting problem


caliux

Recommended Posts

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.

Link to comment
https://forums.phpfreaks.com/topic/264685-hosting-problem/
Share on other sites

  • 3 weeks later...

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]

Link to comment
https://forums.phpfreaks.com/topic/264685-hosting-problem/#findComment-1361160
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.