Difference between revisions of "Drupal"

From Freephile Wiki
Jump to navigation Jump to search
m
(4 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
+
See the [[Drupal/cheatsheet]]
  
{{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 also [[Using git with drupal]]
  
See [https://www.youtube.com/watch?v=1unR0wOkhPA this quick video]
+
== Upgrade ==
 
+
You need to upgrade Drupal like you brush your teeth... at least once or twice a day.
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.
 
 
 
<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 17:23, 18 June 2015

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