dahlemm 0 Posted December 12, 2024 Share Posted December 12, 2024 I'm using Geria2 CMS ( and some pages are not loading, they just keep "loading.." and dont work. The pages that are on /users/.... they dont work, as example http://aurora2.com.br/users/register. (this is my website) If someone has an idea how to fix, send me message. Link to comment Share on other sites More sharing options...
HAMLET 0 Posted December 14, 2024 Share Posted December 14, 2024 On 12/12/2024 at 5:37 PM, dahlemm said: I'm using Geria2 CMS ( and some pages are not loading, they just keep "loading.." and dont work. The pages that are on /users/.... they dont work, as example http://aurora2.com.br/users/register. (this is my website) If someone has an idea how to fix, send me message. Download the default CMS from metin2cms.cf and take the .htaccess file and put it in your website. Link to comment Share on other sites More sharing options...
dahlemm 0 Posted December 14, 2024 Author Share Posted December 14, 2024 2 hours ago, HAMLET said: Download the default CMS from metin2cms.cf and take the .htaccess file and put it in your website. didn't work Link to comment Share on other sites More sharing options...
HAMLET 0 Posted December 15, 2024 Share Posted December 15, 2024 14 hours ago, dahlemm said: didn't work Then try to take aut the preload code, there is a preload script/efect when tou change pages and that might be the cause Link to comment Share on other sites More sharing options...
dahlemm 0 Posted January 5 Author Share Posted January 5 push! Link to comment Share on other sites More sharing options...
Kōdo 49 Posted January 8 Share Posted January 8 The problem is that your table in MySQL account does not have all the columns also add the web_admin column (so you get access to the admin panel) path >> /include/functions/basic.php //2.12 function fix_account_columns() { global $database; global $lang; $sth = $database->runQueryAccount("DESCRIBE account"); $sth->execute(); $columns = $sth->fetchAll(PDO::FETCH_COLUMN); $fix = array( "coins" => "ALTER TABLE account ADD coins int(20) NOT NULL DEFAULT 0", "jcoins" => "ALTER TABLE account ADD jcoins int(20) NOT NULL DEFAULT 0", "deletion_token" => "ALTER TABLE account ADD deletion_token varchar(40) NOT NULL DEFAULT ''", "passlost_token" => "ALTER TABLE account ADD passlost_token varchar(40) NOT NULL DEFAULT ''", "email_token" => "ALTER TABLE account ADD email_token varchar(40) NOT NULL DEFAULT ''", "new_email" => "ALTER TABLE account ADD new_email varchar(64) NOT NULL DEFAULT ''"); foreach($fix as $column => $query) if(!in_array($column, $columns)) { $stmt = $database->runQueryAccount($fix[$column]); $stmt->execute(); print '<div class="alert alert-success alert-dismissible fade show" role="alert"><button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button><center>'.$lang['account-new-column'].$column.'</center></div>'; } } Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now