forntpage error

Status
Not open for further replies.

ghardin

Member
Messages
74
Reaction score
0
Points
6
our website is giving the following error:
ERROR 256: PDO/mysql is not installed.

Fatal error: PDO/mysql is not installed. in /home/knickfam/public_html/includes/classes/class_pgv_db.php on line 102

The site has been working fine for nearly 3 months. Nothing has changed and now this error comes up and we can't get past it.
Does anyone have any ideas?
 

lnxx10bz

New Member
Messages
53
Reaction score
0
Points
0
It is possible that the server went under a change in configuration and the module is no longer loaded correctly.
 

jjordan69

Member
Messages
224
Reaction score
2
Points
18
should be working on your server

you can use this script to test for it

PHP:
<?php
error_reporting(E_ALL);

if (!defined('PDO::ATTR_DRIVER_NAME'))
  {
    print "PDO unavailable";
  }
  else
    {
      print "PDO available";
    }
?>
 
Status
Not open for further replies.
Top