views:

281

answers:

3

I am attempting a fresh install of Drupal 6.14 on a Ubuntu 9.10 machine using XAMPP for Linux. I use XAMPP fine with Wordpress and some different frameworks. I am having problems after I download and extract Drupal to my /htdocs/. The following pic shows the errors I get.

Problem installing Drupal with XAMPP

+2  A: 

I think that is a combination of using php5.3 and having warn levels too high. php is outputting warnings which means that Drupal can't change the header information.

If you are on Ubuntu why would you not just use the standard php and mysql?

Jeremy French
I'm not sure. How would I go about that?
GreenRails
apt-get will do the trick, there is an old howto here http://www.theatons.com/ubuntu-install-php5-mysql-apache2-ssl-pdo-pdo_mysql
Jeremy French
There is even an entire group devoted to the use of drupal with ubuntu. It is called (very imaginatively!) DRUBUNTU. How-to's on how to configure the server are provided too. http://groups.drupal.org/drubuntu
mac
A: 

Apparently Drupal is not compatible with PHP 5.3 you should download an older xampp that includes PHP version less than 5.3

Tom
It works, but you get a lot of warnings.
Jeremy French
A: 

You can avoid to display deprecated function messages by altering /opt/lampp/etc/php.ini error_reporting directive to:

error_reporting = E_ALL & ~E_DEPRECATED | E_STRICT

LostCore