• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

about htaccess file

Status
Not open for further replies.

bbasbelasi

Chevereto Member
i cannot speak english
i uploaded script on my server but its not begin installing..
i mailed my hosting they said me: check your htaccess. file there fins some wrong codes there
i changed htaccess name but it gives error sayer: i need htaccess file for begin install script
can you help me about it
thank
hasan
 
You need to upload the .htaccess file, is on the root folder of /chevereto
 
Problem is that you have a wrong httpd conf that is causing failure when using this .htaccess rule:
Code:
AddHandler cgi-script .php .php3 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi .fcgi
Options -ExecCGI

The Options -ExecCGI is conflicting. I don't know why you httpd conf is conflicting with this, I have change that rule to:
Code:
<FilesMatch "\.(php|php3|phtml|pl|py|jsp|asp|htm|shtml|sh|cgi|fcgi)$">
    deny from all
</FilesMatch>

Please notice that you will need to preserve this change upon newer releases.
 
you know there was an install problem and when i contact with min host admin, de said there fins wrong http rules och we fixer. i think he made something wrong on htaccess file. its funkar now. tack för hjälp 😉
 
Status
Not open for further replies.
Back
Top