Hi there,
I just installed the QuickStart package for Cagox Joomla 3.x v1.01 and there is an incorrect CORE Joomla file which is throwing this error when you try to install:
Fatal error: Class ‘PDO’ not found in /home/thesvetshop/public_html/libraries/joomla/database/driver/pdomysql.php on line 102
reason: the core joomla file located here ./public_html/libraries/joomla/database/driver/pdomysql.php
is NOT the Joomla v3.4.1 file
Line 100-102 in your file reads:
public static function isSupported()
{
return in_array(‘mysql’, PDO::getAvailableDrivers());
}
but it should:
public static function isSupported()
{
return class_exists(‘PDO’) && in_array(‘mysql’, PDO::getAvailableDrivers());
}
FYI, once I replaced the file, installation was successful… just find it really surprising that you would have replaced a CORE file or not updated to 3.4.1 if it was a 3.4 bug…
Thanks,
Emmanuel for SvetShop