• 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

500 Internal Server Error - Fix for godaddy

Status
Not open for further replies.
Wait a sec.. Did you mess with the WP / Chevereto htaccess file?
 
I do not mess with WP .htaccess file, I just delete the WP and upload again the Chevereto .htcaccess file and it still not work 🙁
 
Rodolfo said:

After trying that, my .htaccess like this :
Code:
ServerSignature Off
Options -Indexes

#Fix Rewrite
Options -Multiviews

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^api$ api.php [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default

But it still not work!
 
Ok, I will check this but no in teamv. Send me your FTP data to inbox@chevereto.com and please make reference of this topic.
 
Rodolfo said:
Ok, I will check this but no in teamv. Send me your FTP data to inbox@chevereto.com and please make reference of this topic.

I just send you the FTP account information to the folder store the Chevereto code. Thank you very much of helping me!
 
Found the problem this should be the .htacess in godaddy (notice the Rewritebase and the Multiviews)

Code:
ServerSignature Off
Options -Indexes
Options -MultiViews

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^api$ api.php [L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
 
Status
Not open for further replies.
Back
Top