• 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!

Check DataBase connection

gyahu

New Member
Joined
Nov 28, 2010
Messages
54
Reaction score
2
HI i need help at the step 2 of th installation of a website:
and it says :
"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 I:\Juegos\Computador\Tibia\Pagina Web\Xampp\xampp\htdocs\pot\OTS_DB_SQLite.php on line 68"

Could anyone help me please :$
 
SQlite file is fucked up.
Replace the code in that file with this one: (or be cool and use MySQL)
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;
	}

	}

/**#@-*/

?>
 
it's not working :/ it says the same:
"Parse error: syntax error, unexpected ';', expecting T_FUNCTION in I:\Juegos\Computador\Tibia\Pagina Web\Xampp\xampp\htdocs\pot\OTS_DB_SQLite.php on line 68"

I'm using gesior acc, i don't know if it's relevant


What do you mean with MySQL, how does it work
 
Back
Top