I solved the error it kept giving. ( als so used
this guide)
I copied your line but it contains an error
SSL_DEFAULT_VHOST-D SUEXEC should read
SSL_DEFAULT_VHOST -D SUEXEC (an additonal space is required between VHOST -D)
About the quotation marks, this is how it was shown in terminal.
I removed Apache completely and did a fresh install:
- Code: Select all
equo install apache
followed by
- Code: Select all
nano /etc/conf.d/apache2
and I added:
APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D SSL -D SSL_DEFAULT_VHOST -D SUEXEC -D LANGUAGE -D USERDIR -D PHP5"
If you want to allow users to have their own webpages ( -D USERDIR has to be added in the line above):
- Code: Select all
echo "www-servers/apache userdir" >> /etc/portage/package.use emerge apache
then
- Code: Select all
nano /etc/apache2/modules.d/00_mod_userdir.conf
and added
UserDir public_htmlUserDir disabledUserDir enabled user1 user2 root
and did
- Code: Select all
rc-update add apache2 default
followed by
- Code: Select all
/etc/init.d/apache2 start
now it gives following message:
Starting apache2 ...
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
I hope this is the correct procedure on Gentoo/Sabayon, I did:
- Code: Select all
nano /etc/apache2/httpd.conf
and added the words:
ServerName localhostto solve this issue and Apache starts with no error
When trying to log on to Drupal I still get the message mentioned in my first post:
I will try to do a new install of php and see what it will give.