• 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.
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

.htaccess override

Rodolfo

👑 Chevereto Godlike
Chevereto Staff
Administrator
If you run Chevereto in a sub-folder and you have a website which have .htaccess rules that conflict with Chevereto you will have problems. The rules from / will be above the /chevereto rules and Chevereto won't work as expected.

For example, if you run Wordpress in your site root like #RewriteBase /chevereto and you run Chevereto in a sub-folder like mysite.com/imghost the rules from Wordpress will overrite the Chevereto rules.

The solution is pretty simply, go to the folder where you uploaded Chevereto and open the .htaccess files and find this:
Code:
# If you have problems with the rewrite rules remove the "#" from the following RewriteBase line
# You will also have to change the path to reflect the path to your Chevereto installation
#RewriteBase /chevereto

Change this:
Code:
#RewriteBase /chevereto

To this:
Code:
RewriteBase /chevereto

Where /chevereto is the folder where Chevereto is installed and is relative to the root website. So if you installed chevereto in mysite.com/imghost you will have to use this:

Code:
RewriteBase /imghost
 
Back
Top