UseBB Community

The official board for UseBB help and discussion

UseBB Community » Help & Support » Installation Error

Installation Error

Moderators: Gaia.

Page: 1

Author Post
Member
Registered: Jun 2005
Posts: 1
When installing, I get:

Quote
var: Deprecated. Please use the public/private/protected modifiers


Sorry if this has been asked before.

If it matters, my PHP version is PHP 5.

Thanks. :)
Member
Registered: Jun 2005
Posts: 1
There are some lines (line 43 - 45) in sources/db_mysql.php that php 5.x don't like. Change as follows:

//
// Variables in this class
//
# Original: var $connection;
# Original: var $queries = array();
# Original: var $results = array();
//
// PHP version 5.x
//
public $connection;
public $queries = array();
public $results = array();

That'll do the trick.

A better solution will be to write a structure that includes the correct lines based on the php version.

Page: 1

UseBB Community » Help & Support » Installation Error

UseBB Community is powered by UseBB 1 Forum Software