Status
Not open for further replies.

Mick

Customer
Some more errors since turning on mysqi (I emptied the log file and it went up by 500k since turning it on)... mostly the poll error I posted before.

However let me know if these are bugs or something my end.

Code:
[09-Jan-2014 20:37:19 UTC] PHP Warning:  mysqli::mysqli(): (HY000/2002): Connection refused in /****/****/****/****/forum/dbtech/dbseo/includes/class_db.php on line 96

PHP:
		if ($this->config['Database']['dbtype'] == 'mysqli' AND class_exists('mysqli'))
		{
			// Connect to MySQL
			$this->db = new mysqli($this->config['MasterServer']['servername'], $this->config['MasterServer']['username'], $this->config['MasterServer']['password'], $this->config['Database']['dbname'], $this->config['MasterServer']['port']);
			if ($this->db->connect_error)
			{
				die('Connect Error (' . $this->db->connect_errno . ') ' . $this->db->connect_error);
			}
		}

line 96: $this->db = new mysqli($this->config['MasterServer']['servername'], $this->config['MasterServer']['username'], $this->config['MasterServer']['password'], $this->config['Database']['dbname'], $this->config['MasterServer']['port']);


----------------------------------

Code:
[09-Jan-2014 20:34:27 UTC] PHP Warning:  apc_store(): Unable to allocate memory for pool. in /home/nginx/domains/digitalworldz/forum/dbtech/dbseo/includes/class_datastore.php on line 33

PHP:
	public function __construct()
	{
		$prefix = DBSEO::$configFile['Datastore']['prefix'];
		if (DBSEO::$configFile['Datastore']['prefix'])
		{
			if (!preg_match('#[^a-zA-Z0-9]#', substr(DBSEO::$configFile['Datastore']['prefix'], -1)))
			{
				$prefix .= '_';
			}
		}

		$this->prefix = $prefix . 'dbseo_';
	}
*************LINE33*****************
	/**
	* Fetches the data from shared memory and detects errors
	*
	* @param	string	title of the datastore item
	*
	* @return	boolean
	*/
	public function fetch($title)
	{
		return false;
	}

Line 33: STRANGE LINE 33 IS EMPTY I have marked in the php code (above) where line 33 is


----------------------------------

NOT SURE IF THIS IS DBSEO RELATED ???

Code:
[09-Jan-2014 20:58:14 UTC] PHP Fatal error:  Call to a member function query_first() on a non-object in /home/nginx/domains/digitalworldz/forum/global.php(29) : eval()'d code on line 20

PHP:
error_reporting(E_ALL & ~E_NOTICE);

require_once('./includes/class_bootstrap.php');

define('VB_AREA', 'Forum');

$bootstrap = new vB_Bootstrap_Forum();
$bootstrap->datastore_entries = $specialtemplates;
$bootstrap->cache_templates = vB_Bootstrap::fetch_required_template_list(
	empty($_REQUEST['do']) ? '' : $_REQUEST['do'],
	$actiontemplates, $globaltemplates
);

Line 20: $bootstrap->datastore_entries = $specialtemplates;




Thank you for your time Fillip H. and sorry if the post is not a bug

Cheers
Mick
 
It sounds like there's some serious configuration issues with your server, are you using localhost or 127.0.0.1 as your host name in the config.php file?

Try swapping it, see if that resolves that.

The APC memory pool issue I have no idea about, never seen that one before. That's definitely not a DBSEO issue though as it's not a DBSEO function.
 
to be honest since your last hotfix, I have no errors in the last 5-10 minutes and it was growing with every click...

My php-error file is empty :)

Also I use 127.0.0.1 will try and swap it around see what happens.

Cheers
Mick
 
Status
Not open for further replies.

Legacy DragonByte SEO

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
7,169
Customer rating
5.00 star(s) 1 ratings
Back
Top