Installing and setup drupal6 on Debian Squeeze
Hi,
I just installed drupal6 on my Debian GNU/Linux Squeeze system on my
headless Power PC.
At installation I choosed to automatically create MySQL database
'drupal6'.
After successfully(?) installation I edited file:
sudo nano /etc/apache2/sites-enabled/000-default
[snip]
Alias /drupal6 /usr/share/drupal6
<Directory /usr/share/drupal6/>
Options +FollowSymLinks
AllowOverride All
order allow,deny
allow from all
</Directory>
</VirtualHost>
I did copy these lines abowe from the file
/etc/drupal/6/apache.conf
I restarted apache2 server:
sudo /etc/init.d/apache2 restart
(I have my registered FQDN: cspl.me and apache2 uses this domain on this
machine.)
After that I'm trying to open the webpage: http://cspl.me/drupal6 but I
get warnings:
Warning: Table 'drupal6.access' doesn't exist query: SELECT 1 FROM
access WHERE type = 'host' AND LOWER('192.168.10.90') LIKE LOWER(mask)
AND status = 0 LIMIT 0, 1 in
/usr/share/drupal6/includes/database.mysql.inc on line 128
Warning: session_start() [function.session-start]: Cannot send session
cookie - headers already sent by (output started at
/usr/share/drupal6/includes/database.mysql.inc:128) in
/usr/share/drupal6/includes/bootstrap.inc on line 1143
Warning: session_start() [function.session-start]: Cannot send session
cache limiter - headers already sent (output started at
/usr/share/drupal6/includes/database.mysql.inc:128) in
/usr/share/drupal6/includes/bootstrap.inc on line 1143
Warning: Table 'drupal6.cache' doesn't exist query: SELECT data,
created, headers, expire, serialized FROM cache WHERE cid = 'variables'
in /usr/share/drupal6/includes/database.mysql.inc on line 128
Warning: Table 'drupal6.variable' doesn't exist query: SELECT * FROM
variable in /usr/share/drupal6/includes/database.mysql.inc on line 128
Warning: Table 'drupal6.cache' doesn't exist query: UPDATE cache SET
data = '', created = 1333903496, expire = 0, headers = '', serialized =
0 WHERE cid = 'variables' in
/usr/share/drupal6/includes/database.mysql.inc on line 128
Warning: Table 'drupal6.system' doesn't exist query: SELECT name,
filename, throttle FROM system WHERE type = 'module' AND status = 1 AND
bootstrap = 1 ORDER BY weight ASC, filename ASC in
/usr/share/drupal6/includes/database.mysql.inc on line 128
Warning: Cannot modify header information - headers already sent by
(output started at /usr/share/drupal6/includes/database.mysql.inc:128)
in /usr/share/drupal6/includes/bootstrap.inc on line 709
Warning: Cannot modify header information - headers already sent by
(output started at /usr/share/drupal6/includes/database.mysql.inc:128)
in /usr/share/drupal6/includes/bootstrap.inc on line 710
Warning: Cannot modify header information - headers already sent by
(output started at /usr/share/drupal6/includes/database.mysql.inc:128)
in /usr/share/drupal6/includes/bootstrap.inc on line 711
Warning: Cannot modify header information - headers already sent by
(output started at /usr/share/drupal6/includes/database.mysql.inc:128)
in /usr/share/drupal6/includes/bootstrap.inc on line 712
Warning: Table 'drupal6.url_alias' doesn't exist query: SELECT
COUNT(pid) FROM url_alias in
/usr/share/drupal6/includes/database.mysql.inc on line 128
Fatal error: Call to undefined function filter_xss() in
/usr/share/drupal6/includes/common.inc on line 656
So something is wrong.
When I open the 'drupal6' database using 'mysql' command on the machine
I get these informations:
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| drupal6 |
| horde |
| moodle |
| mysql |
+--------------------+
5 rows in set (0.47 sec)
mysql> use drupal6;
Database changed
mysql> show tables;
Empty set (0.00 sec)
What can I do to solve this problem?
--
Regards from Pal
Reply to: