• 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.

Chevereto Bugged after changing Host

Status
Not open for further replies.

tunny

Chevereto Member
Hello,

I changed my Host and didnt changed anything other. Just Downloaded my Backup, Root Folder.. and Uploaded everything on my new Dedicated Server. Now i have these Problems.

It is not possible to Upload Pictures anymore. (images folder permissions set to 777)
http://puu.sh/15PMs

The Admin Panel is disapeard:
http://puu.sh/15PN4

Scrolling in Admin Panel, not working anymore.

Are needed some Modules to get Chevereto working?
 
Check your .htaccess, this is the default one:

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]
 
# If you want to have your own fancy "image not found" image remove the "#" from RewriteCond and RewriteRule lines
# Make sure to apply the correct paths to reflect your current installation
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule images/.+\.(gif|jpe?g|png|bmp) content/system/img/404.gif [NC,L]
 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
 
Hello.. changed it.. not working.
It looks again disapeard: http://archiv.so/admin/

And after i made changes to config.php .. it does not save anything.

Maybe from ''deny from all'' .htaccess in /includes/ Folder and other Folders?

EDIT: Desktop Uploader is not working anymore. http://puu.sh/15Rjt
 
Most likely you have header issues, send me FTP access to test it.
By the way the "deny from all" has nothing to do with this.
 
Ok, I've re-installed default 2.3.1 and that didn't help either. I found that the issue was a Unicode Byte-Order Mark (BOM) on config.php and in definitions.php
You may now re-enable AUS (just change the theme and re-upload the core Chevereto files replaced by aus)
 
I uploaded AUS again.. now it says my Site is on ''Maintenance'' but in the Config it says the Website is Active?!
 
Perhaps Lautaro store the maintenance mode in the dB, you should ask him.
 
Perhaps Lautaro store the maintenance mode in the dB, you should ask him.

No. You can look yourself. Not in the Database.

includes/aus/maintenance/index.html

I pruned the Cache from Cloudflare over 10 times, still not working.

I think there are Problems, the Server cant read the Files or dont have any Permissions to read the .php Files. Because if i change something, nothing changes on Chevereto.

aus.maintenance.function.php
<?php

function aus_maintenance()
{

global $aus,$_SERVER;

if(access_aus == 'ok') {

$aus['system_active'] = true;

} else {

/* check if aus-setup is present */
if(aus_setup_isUpdateFolderPresent())
{

$aus['system_active'] = false;

}

}

/* puts the site into maintenance */
if($aus['system_active'] == false && $_SERVER['REMOTE_ADDR'] != $aus['access_ip']) {

$maintenance = file_get_contents('includes/aus/maintenance/index.html');
echo $maintenance;
die();

}

}

?>
 
I understand, and I've found that the problem is that you didn't delete the aus.php file. I've done it for you.
Btw, I don't provide AUS support so please refer further AUS concerns to Lautaro not me.
 
I understand, and I've found that the problem is that you didn't delete the aus.php file. I've done it for you.
Btw, I don't provide AUS support so please refer further AUS concerns to Lautaro not me.

LOL! Thank you. This was the biggest fail i have ever done.

It can be closed now.. everything is fixed. Thanks Rodolfo!
 
Status
Not open for further replies.
Back
Top