EVE-SECURE / ooe

Automatically exported from code.google.com/p/ooe
0 stars 0 forks source link

Fatal error: Class 'PDO' not found #18

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install with php5.3.3 and mysqlnd
2. connect to home page.

What is the expected output? What do you see instead?
The Out of Eve Home page is what I see.

Fatal error: Class 'PDO' not found in ./ooe/includes/database.php on line 12

What version of the product are you using? On what operating system?
1.7 Release, FreeBSD

Please provide any additional information below.
function Connect($conf) {^M
            $this->conn = new PDO($conf['dsn'], $conf['user'], $conf['pass']);^M
        }
Is the line it is complaining about.

Original issue reported on code.google.com by tc3dri...@gmail.com on 18 Jan 2011 at 11:13

GoogleCodeExporter commented 9 years ago
Unfortunately it looks like PDO is not enabled on your PHP configuration.

See here: http://www.php.net/manual/en/intro.pdo.php
See here for enabling PDO in PHP: 
http://www.php.net/manual/en/pdo.installation.php 

It is assumed that PDO is enabled by default in PHP 5.1+, for some reason it 
sounds like it's disabled in your environment.

Original comment by shrimp.za@gmail.com on 19 Jan 2011 at 6:21

GoogleCodeExporter commented 9 years ago
Wow, I feel like such a bone head...

I didn't compile it in and I, obviously, didn't realise that it was an 
extension for php5....

Original comment by tc3dri...@gmail.com on 19 Jan 2011 at 5:42

GoogleCodeExporter commented 9 years ago

Original comment by shrimp.za@gmail.com on 21 Jan 2011 at 7:09