Skip to content

grachov/DebugToolbar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Debug Toolbar

Installation

Download the latest package from the downloads page
Make the following change in core/xpdo/xpdo.class.php, starting at line 2952
Replace:

try {
    $this->pdo= new PDO($this->config['dsn'], $this->config['username'], $this->config['password'], $this->config['driverOptions']);
    $errorCode= $this->pdo->errorCode();
} catch (PDOException $xe) {
    $this->log(xPDO::LOG_LEVEL_ERROR, $xe->getMessage(), '', __METHOD__, __FILE__, __LINE__);
    return false;
} catch (Exception $e) {
    $this->log(xPDO::LOG_LEVEL_ERROR, $e->getMessage(), '', __METHOD__, __FILE__, __LINE__);
    return false;
}

with:

$PDOClass = $this->xpdo->getOption('pdo_class');
if (empty($PDOClass)){
    $PDOClassname = 'PDO';
}else{
    $this->xpdo->loadClass($PDOClass, MODX_BASE_PATH, true);
    $pos= strrpos($PDOClass, '.');
    if ($pos === false) {
        $PDOClassname = $PDOClass;
    } else {
        $PDOClassname = substr($PDOClass, $pos +1);
    }
}
try {
    $this->pdo= new $PDOClassname($this->config['dsn'], $this->config['username'], $this->config['password'], $this->config['driverOptions']);
} catch (PDOException $xe) {
    $this->xpdo->log(xPDO::LOG_LEVEL_ERROR, $xe->getMessage(), '', __METHOD__, __FILE__, __LINE__);
    return false;
} catch (Exception $e) {
    $this->xpdo->log(xPDO::LOG_LEVEL_ERROR, $e->getMessage(), '', __METHOD__, __FILE__, __LINE__);
    return false;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 96.1%
  • Perl 2.8%
  • JavaScript 1.1%