Difference between revisions of "Drupal"
From Amahi Wiki
Aljachimiak (talk | contribs) (Created page with "==Drupal== ---- You now can install Drupal 7.12 with one click in Amahi!") |
|||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | You now can install [http://http://www.amahi.org/apps/drupal Drupal] with one click in Amahi! | |
| − | ---- | + | |
| − | You now | + | If you would like to use a lower version, or are feeling adventurous, you will need to manually install Drupal as a web-app. Here are some steps to help you along. |
| + | |||
| + | #Use the instructions [http://wiki.amahi.org/index.php/Webapps here] to help you create the web-app from the control panel and create an associated database. | ||
| + | #Download your [http://drupal.org/project/drupal Drupal tarball] and install. The second page of [http://wiki.amahi.org/index.php/File:Packaging-Applications-for-OneClick-Installation.ppt this presentation] is very helpful. | ||
| + | #Now open your Drupal app and complete Drupal's initial setup. You may have to check the readme for specific instructions. | ||
| + | #You will now need to change the app's conf file to allow Drupal to have full functionality. | ||
| + | *Use [http://wiki.amahi.org/index.php/Hosting_a_website these instructions] to find Drupal's conf file. | ||
| + | *Once you have opened the file, find the portion that looks like this: | ||
| + | |||
| + | <pre><Directory "/var/hda/web-apps/drupal/html"> | ||
| + | Options Indexes FollowSymLinks +ExecCGI | ||
| + | AddHandler fcgid-script .fcg | ||
| + | AllowOverride AuthConfig | ||
| + | Order allow,deny</pre> | ||
| + | |||
| + | You need to change the AllowOverride value to all. Here, you'll see that the default is commented out (#) and the new value is added below: | ||
| + | <pre><Directory "/var/hda/web-apps/drupal/html"> | ||
| + | Options Indexes FollowSymLinks +ExecCGI | ||
| + | AddHandler fcgid-script .fcg | ||
| + | #AllowOverride AuthConfig | ||
| + | AllowOverride all | ||
| + | Order allow,deny</pre> | ||
| + | |||
| + | After restarting apache services, your Drupal installation should be ready for action. | ||
| + | service httpd restart | ||
| + | |||
| + | [[User:Aljachimiak|Aljachimiak]] 17:03, 20 March 2012 (PDT) | ||
| + | [[Category:apps]] | ||
Latest revision as of 17:18, 9 January 2021
You now can install Drupal with one click in Amahi!
If you would like to use a lower version, or are feeling adventurous, you will need to manually install Drupal as a web-app. Here are some steps to help you along.
- Use the instructions here to help you create the web-app from the control panel and create an associated database.
- Download your Drupal tarball and install. The second page of this presentation is very helpful.
- Now open your Drupal app and complete Drupal's initial setup. You may have to check the readme for specific instructions.
- You will now need to change the app's conf file to allow Drupal to have full functionality.
- Use these instructions to find Drupal's conf file.
- Once you have opened the file, find the portion that looks like this:
<Directory "/var/hda/web-apps/drupal/html">
Options Indexes FollowSymLinks +ExecCGI
AddHandler fcgid-script .fcg
AllowOverride AuthConfig
Order allow,deny
You need to change the AllowOverride value to all. Here, you'll see that the default is commented out (#) and the new value is added below:
<Directory "/var/hda/web-apps/drupal/html">
Options Indexes FollowSymLinks +ExecCGI
AddHandler fcgid-script .fcg
#AllowOverride AuthConfig
AllowOverride all
Order allow,deny
After restarting apache services, your Drupal installation should be ready for action.
service httpd restart
Aljachimiak 17:03, 20 March 2012 (PDT)
