Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Latest ExtaliaCMS

Newbie Spellweaver
Joined
Aug 9, 2012
Messages
84
Reaction score
20
Hi today I'm going to release the latest ExtaliaMS CMS, just like the title says. This isn't leaked since it was already released somewhere else, I just fixed it up and changed some images, etc. I'm only releasing this so that people that want it and can't find it, can have it. Please don't flame, I really don't like getting flamed :( Anyways enjoy!

 
Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
Ty I guess.

I was being sarcastic.
I ripped this from Extalia's site (which was a penis move, I know), and sold it to Edward (from MapleTalk) for some quick money. All you did was change a few words here and there. Ripping sites is dumb, and nobody appreciates it. Please don't do this in the future.
 
Junior Spellweaver
Joined
Mar 19, 2016
Messages
100
Reaction score
0
When i register new account i have this error

TLCrimson - [Release] Latest ExtaliaCMS - RaGEZONE Forums

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\AppServ\www\config\core_class.php on line 11
 
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
When i register new account i have this error

TLCrimson - [Release] Latest ExtaliaCMS - RaGEZONE Forums

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\AppServ\www\config\core_class.php on line 11

It's not an error, it's just using the old mysql and you need to switch to mysqli or PDO. You can either turn off error reporting or you can update mysql to mysqli. You can google how to do so, pretty easy. Also, you can't just upload an image from your localhost and expect us to see it xD, upload it to a webhost like imgur or something next time.
 
Junior Spellweaver
Joined
Mar 19, 2016
Messages
100
Reaction score
0
@Eric

how i turn off show error?

its the core_class.php

Code:
<?phpif (!defined('INIT_SCRIPT')) exit;


class Database {
	private $num_queries = 0;
	private $connection = "";
	private $last_query = "";
	private $last_result = "";
	
	public function Database($db_url, $db_user, $db_pass) {
		$this->connection = mysql_connect($db_url, $db_user, $db_pass) or trigger_error('Failed to connect to MySQL Server', E_USER_ERROR);
	}
	
	public function select_db($s_db) {
		return mysql_select_db($s_db, $this->connection) or trigger_error('Cannot select database: '.$s_db, E_USER_ERROR);
	}
	
	public function last_error() {
		return mysql_error();
	}
	
	public function last_query() {
		return $this->last_query;
	}
	
	public function last_result() {
		return $this->last_result;
	}
	
	public function num_queries() {
		return $this->num_queries;
	}
	
	public function query($sql_query) {
		$this->last_query = $sql_query;
		if(!$this->last_result = [USER=1333341228]Mysql[/USER]_query($this->last_query, $this->connection)){
			trigger_error('Failed to execute MySQL Query - '.mysql_error().'<br />Query: '.$sql_query, E_USER_ERROR);
			return false;
		}
		++$this->num_queries;
		return $this->last_result;
	}
	
	public function s_query($sql_query) {
		$query = [USER=1333341228]Mysql[/USER]_query($sql_query, $this->connection) or trigger_error('Failed to execute MySQL Query: '.mysql_error(), E_USER_ERROR);
		++$this->num_queries;
		return $query;
	}
	
	public function fetch_next() {
		return mysql_fetch_assoc($this->last_result);
	}
	
	public function s_fetch_next($sql_query) {
		return mysql_fetch_assoc($sql_query);
	}
	
	public function fetch_next_simple() {
		return mysql_fetch_rows($this->last_result);
	}
	
	public function s_fetch_array($sql_query) {
		return mysql_fetch_array($sql_query);
	}
	
	public function rows() {
		return mysql_num_rows($this->last_result);
	}
	
	public function s_rows($sql_query) {
		return mysql_num_rows($sql_query);
	}
	
	public function affected_rows() {
		return mysql_affected_rows();
	}
	
	public function free_result() {
		return mysql_free_result($this->last_result);
	}
	
	public function __destruct() {
		if ( [USER=1333341228]Mysql[/USER]_close($this->connection)) {
			trigger_error('Failed to close MySQL connection', E_USER_ERROR);
		}
		return true;
	}
}
 
Junior Spellweaver
Joined
Mar 19, 2016
Messages
100
Reaction score
0
Any have idea how to put off the error reporting
 
Back
Top