• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Problem installing the Gesior Acc TFS 0.3.6

MUTANO

New Member
Joined
Jan 10, 2009
Messages
39
Reaction score
2
Location
Brazil - Santa Catarina
I was installing Gesior Acc for TFS 0.3.6, when STEP 2 appeared in this issue:

STEP 2
Check database connection
If you don't see any errors press link to STEP 3 - Add tables and columns to DB. If you see some errors it mean server has wrong configuration. Check FAQ or ask author of acc. maker.
Parse error: syntax error, unexpected ';', expecting T_FUNCTION in C:\xampp\htdocs\pot\OTS_DB_SQLite.php on line 67

It seems to acknowledge a problem here 'OTS_DB_SQLite.php':

<?php

/**#@+
* @version 0.0.1
*/

/**
* @package POT
* @version 0.1.3
* @author Wrzasq <[email protected]>
* @copyright 2007 (C) by Wrzasq
* @license http://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public License, Version 3
*/

/**
* SQLite connection interface.
*
* <p>
* At all everything that you really need to read from this class documentation is list of parameters for driver's constructor.
* </p>
*
* @package POT
* @version 0.1.3
*/
class OTS_DB_SQLite extends OTS_Base_DB
{
/**
* Creates database connection.
*
* <p>
* Connects to SQLite database on given arguments.
* <p>
*
* <p>
* List of parameters for this drivers:
* </p>
*
* <ul>
* <li><var>database</var> - database name.</li>
* </ul>
*
* @version 0.0.7
* @param array $params Connection parameters.
* @throws PDOException On PDO operation error.
*/
public function __construct($params)
{
if( isset($params['prefix']) )
{
$this->prefix = $params['prefix'];
}

// PDO constructor
try
{
parent::__construct('sqlite:' . $params['database']);
}
catch(PDOException $error)
{
echo 'Can\'t connect to SQLite database.</font>';
exit;
}

}

/**#@-*/

?>

Can anyone give me a hand here :confused:
Thanks
 
I do not understand much of it, but I just downloaded the xampp, and I set the site files of Gesior inside in the htdocs.
then I started to install the browser and gave this problem in STEP 2
 
you need to use mysql.
If you already have a database that you dont want lose.
You need to find a tutorial of convert sqlite to mysql.
In that tutorials will tell you to remove all " to '
and maybe another 2 more things.
 
There is no need to save anything, because my server is still under construction ..
but then I wanted a tutorial on how to make efficient server Mysql online, because I never dared to try Mysql

P.S.: My server is TFS 0.3.6 - Version 8.54
 
Back
Top