Difference between revisions of "Drupal"

From Freephile Wiki
Jump to navigation Jump to search
(Adds druplicon from commons)
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
<i class="fa fa-pull-left fa-5x fa-drupal" aria-hidden="true"></i>Web Applications
+
[[File:Druplicon.vector.svg|right|link=Category:Drupal|Druplicon|240px]]
  
{{CompanyName}} founder and principal consultant Greg Rundlett has been working with Drupal since the beginning of Drupal. Now Drupal 8 is celebrating it's one year anniversary. What is Drupal? The free software Content Mangement System (CMS) that delivers for many of the top websites in the world, including the most recognizable brands and institutions globally.
+
See the [[Drupal/cheatsheet]]
  
See [https://www.youtube.com/watch?v=1unR0wOkhPA this quick video]  
+
See also [[Using git with drupal]]
  
Aquia is the Boston company behind Drupal. While you can go directly to them for your Drupal needs, you are also free to build a relationship with us at eQuality Technology. The product cost is the same (free). We offer a more agile and responsive customer experience.
+
== Upgrade ==
 
+
You need to upgrade Drupal like you brush your teeth... at least once or twice a day.
<html><iframe src="https://www.youtube.com/embed/1unR0wOkhPA" frameborder="0" width="560" height="315"></iframe></html>
 
  
 +
<source lang="bash">
 +
cd /var/www/equality-tech.com/www/drupal
 +
drush vset maintenance_mode 1
 +
~/bin/backup.db.sh civicrm
 +
~/bin/backup.db.sh drupal
 +
cp .htaccess .htaccess.mine
 +
drush up
 +
mv .htaccess.mine .htaccess
 +
drush vset maintenance_mode 0
 +
</source>
  
 
[[Category:CMS]]
 
[[Category:CMS]]
 
[[Category:Drupal]]
 
[[Category:Drupal]]

Revision as of 12:17, 22 February 2016

Druplicon

See the Drupal/cheatsheet

See also Using git with drupal

Upgrade[edit | edit source]

You need to upgrade Drupal like you brush your teeth... at least once or twice a day.

cd /var/www/equality-tech.com/www/drupal
drush vset maintenance_mode 1
~/bin/backup.db.sh civicrm 
~/bin/backup.db.sh drupal
cp .htaccess .htaccess.mine
drush up
mv .htaccess.mine .htaccess
drush vset maintenance_mode 0