Problem with Drupal 7.0 installation - PHP extensions disabled

2

2

when I install Drupal I have the following problem.

PHP extensions Disabled
Drupal requires you to enable the PHP extensions in the following list (see the system requirements page for more information):

gd

I tried to solve it according to this page but with no success.

Have you encountered the same problem and solved it?

I'm using Linux (Ubuntu)

thank you for help

xralf

Posted 2011-03-18T17:01:28.607

Reputation: 234

Answers

2

It sounds like you don't have the GD extension installed. I don't use Ubuntu any longer, but I think it may be named php5-gd, so you'd need to install that package and restart your webserver and it should then work.

8BitsOfGeek

Posted 2011-03-18T17:01:28.607

Reputation: 1 744

6

  1. Install the gd package:

    apt-get install php5-gd php-db php5-mysql
    
  2. Restart the web server:

    sudo /etc/init.d/apache2 restart
    

That should do it.

SONU SINGH

Posted 2011-03-18T17:01:28.607

Reputation: 61