Error with sqlite in Suse Linux Enterprise 11

Error with sqlite in Suse Linux Enterprise 11

by Marcos Sagrera -
Number of replies: 0

hi, I am installing my first version of moodle 2.2.1+ but i have some troubles with my installation.

I am installing the Moode on a virtual server using: PHP 5.3.2, MySQL 5.0.67, and Apache 2.

I ran the command line installer, and i think i've followed every instruction. However, after that it asked me the admin and the password, then i think the system starts creating the database but an error occurs:

usr/sbin/httpd2-prefork: symbol lookup error: /usr/lib64/php5/extensions/pdo_sqlite.so: undefined symbol: sqlite3_libversion

However the system has created a config.php:

<?php  // Moodle configuration file

unset($CFG);

global $CFG;

$CFG = new stdClass();                     

$CFG->dbtype    = 'mysqli';

$CFG->dblibrary = 'native';

$CFG->dbhost    = 'localhost'; 

$CFG->dbname    = 'moodlezadb'; 

$CFG->dbuser    = 'moodleza';

$CFG->dbpass    = '*********';

$CFG->prefix    = 'mdl_';

$CFG->dboptions = array (

'dbpersist' => 0,

'dbsocket' => false,

);

$CFG->wwwroot   = 'http://moodleza.zonamerica.com'; 

$CFG->dataroot  = '/home/moodledata';

$CFG->admin     = 'admin';                                                                 

$CFG->directorypermissions = 02777;                                                                       

$CFG->passwordsaltmain = 'l8UbV]%!PdF{X^[k&^<,8+ShC!6H(Mt~';                   

require_once(dirname(__FILE__) . '/lib/setup.php');

// There is no php closing tag in this file,                                                                                            

// it is intentional because it prevents trailing whitespace problems!

I would apreciate any kind of help.

Thank you all


Average of ratings: -