hinksta

|
Posted:
Fri Feb 10, 2006 6:22 am |
|
Changed
Code:$database = 'MySQL';
if (!defined('MODULE_FILE'))
{
include "../../config.php";
include "../../db/mysql.php";
$db = new sql_db($dbhost, $dbuname, $dbpass, $dbname, false);
}
|
To
Code:$database = 'MySQL';
if (!defined('MODULE_FILE'))
{
include "../../../config.php";
include "../../../db/mysql.php";
$db = new sql_db($dbhost, $dbuname, $dbpass, $dbname, false);
}
|
this got the install to work but had to change it back once installed
Quote: | Anywho, I have it floating, but I would rather have it stationary at a default location, so how would I be able to set that? |
try the fluid skin from here
Only registered users can see links on this board! Get registered or login! |
|
|
hinksta

|
Posted:
Fri Feb 10, 2006 10:37 am |
|
I’m in the process of updating to 5.0.2 but am unsure what changes to make to the mysql file
vers 5.0.0 nuked
Code:$database = 'MySQL';
if (!defined('MODULE_FILE'))
{
include "../../config.php";
include "../../db/mysql.php";
$db = new sql_db($dbhost, $dbuname, $dbpass, $dbname, false);
}
class sql {
var $dbl;
var $debug;
var $num_queries;
var $queries;
function connect ($host, $user, $password, $database, $debug = 0) {
//$this->dbl = mysql_connect($host, $user, $password) ;
//$db = mysql_select_db($database, $this->dbl);
global $db;
$this->dbl = $db->db_connect_id;
$this->num_queries = 0;
$this->debug = $debug ? 1 : 0;
$this->queries = array();
return $db;
}
function query($query, $file, $line) {
global $queries;
global $db;
if ($this->debug) { array_push($this->queries, $query); }
//$result = mysql_query($query) or $this->error($file, $line);
$result = $db->sql_query($query);
$this->num_queries++;
return $result;
}
// Executes a normal query and fetches the array in one line
function fetch($query, $file, $line) {
$result = $this->query($query, $file, $line);
return $this->fetch_array($result);
}
function select_limit($query, $num, $offset, $file, $line) {
if ($offset) { $limit = ' LIMIT '.$offset.','.$num; }
else { $limit = ' LIMIT '.$num; }
return $this->query($query.$limit, $file, $line);
}
function fetch_array($result) {
//return mysql_fetch_array($result);
global $db;
return $db->sql_fetchrow($result);
}
function num_rows($result) {
//return mysql_num_rows($result);
global $db;
return $db->sql_numrows($result);
}
function escape($value) {
global $db;
if (get_magic_quotes_gpc()) {
$value = stripslashes($value);
}
if ($this->dbl)
{
$value = mysql_real_escape_string($value, $this->dbl);
}
else
{
$value = mysql_real_escape_string($value, $db->db_connect_id);
}
return $value;
}
function error($file, $line) {
trigger_error('Database error in "'.$file.'" on line '.$line.'<br /><br />'."\n".@mysql_error($this->dbl), E_USER_ERROR);
}
function close() {
mysql_close($this->dbl);
}
}
|
ver 5.0.2
Code:$database = 'MySQL';
class sql {
var $dbl;
var $debug;
var $num_queries;
var $queries;
function connect ($host, $user, $password, $database, $debug = 0) {
$this->dbl = mysql_connect($host, $user, $password) ;
$db = mysql_select_db($database, $this->dbl);
$this->num_queries = 0;
$this->debug = $debug ? 1 : 0;
$this->queries = array();
return $db;
}
function query($query, $file, $line) {
global $queries;
if ($this->debug) { array_push($this->queries, $query); }
$result = mysql_query($query) or $this->error($file, $line);
$this->num_queries++;
return $result;
}
// Executes a normal query and fetches the array in one line
function fetch($query, $file, $line) {
$result = $this->query($query, $file, $line);
return $this->fetch_array($result);
}
function select_limit($query, $num, $offset, $file, $line) {
if ($offset) { $limit = ' LIMIT '.$offset.','.$num; }
else { $limit = ' LIMIT '.$num; }
return $this->query($query.$limit, $file, $line);
}
function fetch_array($result) {
return mysql_fetch_array($result);
}
function num_rows($result) {
return mysql_num_rows($result);
}
function escape($value, $no_html = 0) {
if (get_magic_quotes_gpc()) {
$value = stripslashes($value);
}
$value = mysql_real_escape_string($value, $this->dbl);
if ($no_html) {
$value = strip_tags($value);
}
return $value;
}
function error($file, $line) {
trigger_error('Database error in "'.$file.'" on line '.$line.'<br /><br />'."\n".@mysql_error($this->dbl), E_USER_ERROR);
}
function close() {
mysql_close($this->dbl);
}
}
|
|
|
|