• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Update to 2.3 and got error

Status
Not open for further replies.

prasid

Chevereto Member
I update to 2.3 and I saw error when upload.

I follow this instruction: http://chevereto.com/community/threads/2-3-update.2703/#post-16355

Error looks like:

1345175475-1Hsl6x.png


Even I don’t find any .htaccess in admin directory. Also can not login mysite/admin zone.
 
I don’t have any .htaccess file in admin folder.

Kindly send (paste) me exact .htacess text

I create blank one .htaccess
 
You don't need a htaccess on the admin folder, you need it on the chevereto's root. The file should be named .htacess and contain this code:

Code:
ServerSignature Off
Options -Indexes -MultiViews
 
Options +FollowSymLinks
RewriteEngine On
 
# 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
 
RewriteRule ^api$ api.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
 
ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
 
Status
Not open for further replies.
Back
Top