RE: Texting Poll

Fatal error: Uncaught exception ‘PDOException’ with message ‘SQLSTATE[HY000] [14] unable to open database file’ in /Library/WebServer/Documents/Text-to-Vote-master-2/include/db.php:9 Stack trace: #0 /Library/WebServer/Documents/Text-to-Vote-master-2/include/db.php(9): PDO->__construct(‘sqlite:votes.sq…’) #1 /Library/WebServer/Documents/Text-to-Vote-master-2/create_database.php(6): DB->__construct() #2 {main} thrown in /Library/WebServer/Documents/Text-to-Vote-master-2/include/db.php on line 9

THis is what comes up and i have no clue what i am doing wrong the file

[php]<?php
require_once(’./include/db.php’);

if (file_exists('votes.sqlite') != true)
{
	$db = new DB();
	$db->init();

	echo 'Database created';

}

?>
[/php]

DO you have any idea what this error means?

The file is missing? Without seeing your DB() class it’s hard to tell.

Sponsor our Newsletter | Privacy Policy | Terms of Service