• 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.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

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