Apache + mod_rewrite problem

Status
Not open for further replies.

t2t2t

New Member
Messages
690
Reaction score
0
Points
0
(Everyone who has some php/apache knowledge can help)

I have site http://www.habombers.com that is located in my /public_html/habombers folder, and the problem is, that a script that loaded fine before, doesn't load up anymore.

The problem is that i can't access http://www.habombers.com/modules/TinyMCE/tinyconfig.php, it forwards to 404 page.

Here is my htaccess located in /public_html/habombers
Code:
#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off

# Make sure you have Options FollowSymLinks
# and Allow on
RewriteEngine On

#Rewrites page.shtml as index.php?page
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]

# Sound types
AddType video/x-ms-asf asx
AddType audio/x-scpls pls
AddType application/x-quicktimeplayer qtl
AddType audio/vnd.rn-realaudio ram
AddType audio/x-mpegurl m3u
I'm using CMSMS, and yes, everything worked good before.
Server: Sustained
Problem was spotted for the first time at 17 Jun 2007, along with memory problems for pages (ugh).

I posted this here because maybe corey or someone can find something from server logs.
In case anyone wanna make sure that file exists, then feel free to check here:
http://habombers.com/modules/TinyMCE/
 

t2t2t

New Member
Messages
690
Reaction score
0
Points
0
It (dis-)appeared (It did make one part of admin panel disappearing, hmm) before that and i'm on sustained server (66.232.119.248)
 
Last edited:

Corey

I Break Things
Staff member
Messages
34,553
Reaction score
204
Points
63
It was a permission problem with that file and the folder that it's in.

I fixed it, but it looks as if there are some issues with that file, not sure if it's supposed to be displaying code like that. I checked and it has a PHP end tag in the middle of the code.

Please open a new thread if you need further assistance.

-Corey
 
Status
Not open for further replies.
Top