Drupal : Path Error
March 9th, 2010During training at work, I came across Joomla and Drupal. Both of these are content management systems which you can get free online. These are excellent tools for you to use if you are not a web guru. Joomla and Drupal make it easy to create a websites for everyone. It is just a matter of getting used to it and playing around with it, in order to understand its many functions. For my first adventure with a CMS I chose Drupal. The installation instructions given on the drupal website are pretty easy. You just have to download the zip folder, unzip it and then upload the folder onto your local server. If you’re local server is up and running and you have installed Drupal then type in your browser’s URL: localhost/install.php You should get a Drupal installation screen.This means that everything was installed properly but there are still more configurations to be done.
Otherwise if you are using wampserver 2.0 version, this comes with PHP version 5.3.0, this will not work with Drupal . The necessary version for you to download and install on your wampserver 2.0 is PHP 5.2.9 or any other PHP5.2.X. After you have installed the correct version of PHP to use, make sure that you change the version being used. This is done as follows:
1. Click on your wampserver icon
2. Click on PHP
3. Click on Version and Select the one you’ve just installed, in my case it was 5.2.9
This should make your wampserver and drupal work together.
After this, go back to your browser and type in your URL: localhost/install.php. In this page you will be asked to choose your language of preference and then it will verify if the all necessary requirement to run Drupal are properly made. This is where I got the following error:
Requirements problem
The following error must be resolved before you can continue the installation process: The Drupal installer requires that you create a settings file as part of the installation process.
Copy the ./sites/default/default.settings.php file to ./sites/default/file/settings.php. Changes file permissions so that it is writable by the web server. If you are unsure how to grant file permissions, please consult the on-line handbook. More details about installing Drupal are available in INSTALL.txt.
So I did as instructed, the problem with this is that it is the file that has to be copied, is being set at the wrong path of the settings file. The error must say copy ./sites/default/default.settings.php to ./sites/default/settings.php and had to make sure that i had changed the permissions of the files. Et voila! This should make your requirements problem disappear.
_______________________________________________________
