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
  • 64

2 Answers2

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.

Indrek
  • 24,874
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.

JustXanny
  • 1,784