<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="https://build2be.com"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>build2be/com/e - installation</title>
 <link>https://build2be.com/category/installation</link>
 <description></description>
 <language>en</language>
<item>
 <title>My getting started with Drupal</title>
 <link>https://build2be.com/content/my-getting-started-drupal</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;When I want to install a new site on my laptop I do the following&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Edit /etc/hosts to add a new domain.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;sudo echo test 127.0.0.12 &amp;gt; /etc/hosts&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;Next I add a new website&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;vi /etc/apache2/sites-available/test&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;To make the newly create site work there needs to be a directory to land on.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;mkdir -p /home/me/sites/test&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;We can now enable the newly created site&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;sudo a2ensite test
sudo /etc/init.d/apache2 reload&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;Now test whether both domain and website are working&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;ping test
wget test&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Now suppose the directory &lt;code&gt;/home/me/sites/test&lt;/code&gt; is actually a symlink to drupal? Then it become easier to install 10 sites with another few tricks.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-taxonomy-vocabulary-4 field-type-taxonomy-term-reference field-label-above&quot;&gt;&lt;div class=&quot;field-label&quot;&gt;free form:&amp;nbsp;&lt;/div&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/category/installation&quot;&gt;installation&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 17 Mar 2008 11:23:03 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">37 at https://build2be.com</guid>
 <comments>https://build2be.com/content/my-getting-started-drupal#comments</comments>
</item>
<item>
 <title>Some references</title>
 <link>https://build2be.com/content/some-references</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;Writing an article without pointer is pointless. So here is a start.&lt;/p&gt;
&lt;p&gt;Version dependencies are described here &lt;a href=&quot;http://www.debian.org/doc/debian-policy/ch-relationships.html&quot;&gt;http://www.debian.org/doc/debian-policy/ch-relationships.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;For a functional dependency specification (Nix and NixOS) see &lt;/p&gt;
&lt;ul&gt;&lt;li&gt;the paper of Eelco Dolstra &lt;a href=&quot;http://www.cs.uu.nl/~eelco/pubs/nspfssd-lisa2004-final.pdf&quot;&gt;http://www.cs.uu.nl/~eelco/pubs/nspfssd-lisa2004-final.pdf&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;the developers manual &lt;a href=&quot;http://nix.cs.uu.nl/dist/nix/nix-0.11/manual/#chap-package-management&quot;&gt;http://nix.cs.uu.nl/dist/nix/nix-0.11/manual/#chap-package-management&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;the project homepage &lt;a href=&quot;http://nix.cs.uu.nl/nixos/index.html&quot;&gt;http://nix.cs.uu.nl/nixos/index.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Fri, 07 Mar 2008 09:18:12 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">27 at https://build2be.com</guid>
 <comments>https://build2be.com/content/some-references#comments</comments>
</item>
<item>
 <title>mysql cycle</title>
 <link>https://build2be.com/content/mysql-cycle</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;I still forget how to do the database and user creation and drop goes. So why not make a note.&lt;/p&gt;
&lt;p&gt;Creating&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;create database test;
create user &#039;test&#039; identified by &#039;pwtest&#039;;
grant all on test.* to &#039;test&#039;@&#039;localhost&#039; identified by &#039;pwtest&#039;;&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Cleaning up&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;drop user test;
drop database;&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Yeah ... call me stupid ;-)&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 11:18:36 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">25 at https://build2be.com</guid>
 <comments>https://build2be.com/content/mysql-cycle#comments</comments>
</item>
<item>
 <title>downloading projects in core</title>
 <link>https://build2be.com/content/downloading-projects-core</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;Apart from security risk i think it would be great to have drupal install modules needed for a profile. For a commandline solution provided by drush the advantages are great.&lt;/p&gt;
&lt;p&gt;Combining &#039;project provides&#039; and clean dependency checks multi site users would get rid of the burden to get modules in place before installing.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 09:54:40 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">21 at https://build2be.com</guid>
 <comments>https://build2be.com/content/downloading-projects-core#comments</comments>
</item>
<item>
 <title>uninstalling dependentless</title>
 <link>https://build2be.com/content/uninstalling-dependentless</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;When uninstalling modules the code uses a simple foreach to call &lt;code&gt;drupal_uninstall_module&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;My guess is that this should be &lt;strong&gt;in TSL order&lt;/strong&gt;. And it will be easy to implement when we have the dependency graph of the modules to uninstall.&lt;/p&gt;
&lt;p&gt;Question remains whether dependent modules should be uninstalled together. That is without the user selecting what modules to uninstall.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 09:48:11 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">20 at https://build2be.com</guid>
 <comments>https://build2be.com/content/uninstalling-dependentless#comments</comments>
</item>
<item>
 <title>Module management in Drupal</title>
 <link>https://build2be.com/content/module-management-drupal</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;The title of this page should be project management because Drupal uses projects for delivering modules.

A companion video shows the Drupal 5.x situation. Using drush, my drush_mm patch and update status to manage and install modules command line. This video shows better dependency checking than currently available in D7. As I hope is clear I want to contribute to implement this into D7.

&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 08:19:10 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">16 at https://build2be.com</guid>
 <comments>https://build2be.com/content/module-management-drupal#comments</comments>
</item>
<item>
 <title>Installing ubercart through drush pm and mm</title>
 <link>https://build2be.com/content/installing-ubercart-through-drush-pm-and-mm</link>
 <description>&lt;div class=&quot;field field-name-field-images field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/content/installing-ubercart-through-drush-pm-and-mm&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://build2be.com/sites/build2be.com/files/styles/medium/public/ubercart.neato.png?itok=xHn2VP2h&quot; width=&quot;220&quot; height=&quot;166&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;It&#039;s quite neat using drush to install ubercart. Here is what I did.&lt;/p&gt;
&lt;p&gt;Preparation&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Install drupal 5.x&lt;/li&gt;
&lt;li&gt;Install your site/database&lt;/li&gt;
&lt;li&gt;download and install &lt;a href=&quot;http://drupal.org/project/drush&quot;&gt;drush&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;download and install &lt;a href=&quot;http://drupal.org/project/update_status&quot;&gt;update_status&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;if you want to follow along &lt;a href=&quot;http://drupal.org/node/220945&quot;&gt;install this patch for the module manager&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Enable the above modules. For a list see below.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Installing&lt;/p&gt;
&lt;ol&gt;&lt;/ol&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Thu, 28 Feb 2008 11:14:37 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">14 at https://build2be.com</guid>
 <comments>https://build2be.com/content/installing-ubercart-through-drush-pm-and-mm#comments</comments>
</item>
<item>
 <title>My drush usage</title>
 <link>https://build2be.com/content/my-drush-usage</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;Using drush with a strict server design makes my drupal maintence much more relaxed. I have this tiny script as a runner for drush.&lt;/p&gt;
&lt;p&gt;$ cat drush&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Fri, 22 Feb 2008 09:32:57 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">9 at https://build2be.com</guid>
 <comments>https://build2be.com/content/my-drush-usage#comments</comments>
</item>
<item>
 <title>Modules in err</title>
 <link>https://build2be.com/content/modules-err</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;Installing modules with drush is easy.

&lt;pre&gt;&lt;code&gt;# drush pm install ubercart&lt;/code&gt;&lt;/pre&gt;

My drush patch for a module manager makes it more easier to SEE what&#039;s installed.

&lt;strong&gt;listing&lt;/strong&gt;&lt;code&gt;# drush mm list&lt;/code&gt;
&lt;strong&gt;imagary&lt;/strong&gt;&lt;code&gt;# drush mm dot | dot -T png -o ~/graph.png&lt;/code&gt;

shows a module in error. (I deleted workflow_ng) &lt;strong&gt;scroll to the right for red&lt;/strong&gt;

&lt;div style=&quot;height:500px;width:700px;overflow:auto&quot;&gt;
&lt;img src=&quot;http://build2be.com/sites/build2be.com/files/ubercart-in-error.png&quot;/&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-upload field-type-file field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;div class=&quot;table-responsive&quot;&gt;
&lt;table class=&quot;table table-hover table-striped sticky-enabled&quot;&gt;
 &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Attachment&lt;/th&gt;&lt;th&gt;Size&lt;/th&gt; &lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;
 &lt;tr&gt;&lt;td&gt;&lt;span class=&quot;file&quot;&gt;&lt;img class=&quot;file-icon&quot; alt=&quot;Image icon&quot; title=&quot;image/png&quot; src=&quot;/modules/file/icons/image-x-generic.png&quot; /&gt; &lt;a href=&quot;https://build2be.com/sites/build2be.com/files/ubercart-in-error.png&quot; type=&quot;image/png; length=355426&quot; title=&quot;ubercart-in-error.png&quot;&gt;ubercart-in-error.png&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;347.1 KB&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-taxonomy-vocabulary-4 field-type-taxonomy-term-reference field-label-above&quot;&gt;&lt;div class=&quot;field-label&quot;&gt;free form:&amp;nbsp;&lt;/div&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/category/drush&quot;&gt;drush&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;field-item odd&quot;&gt;&lt;a href=&quot;/category/graphviz&quot;&gt;graphviz&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/category/installation&quot;&gt;installation&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Wed, 20 Feb 2008 17:06:33 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">8 at https://build2be.com</guid>
</item>
<item>
 <title>Installing ubercart.</title>
 <link>https://build2be.com/content/installing-ubercart</link>
 <description>&lt;div class=&quot;field field-name-upload field-type-file field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;div class=&quot;table-responsive&quot;&gt;
&lt;table class=&quot;table table-hover table-striped sticky-enabled&quot;&gt;
 &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Attachment&lt;/th&gt;&lt;th&gt;Size&lt;/th&gt; &lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;
 &lt;tr&gt;&lt;td&gt;&lt;span class=&quot;file&quot;&gt;&lt;img class=&quot;file-icon&quot; alt=&quot;Microsoft Office document icon&quot; title=&quot;application/msword&quot; src=&quot;/modules/file/icons/x-office-document.png&quot; /&gt; &lt;a href=&quot;https://build2be.com/sites/build2be.com/files/shop.build2be.com.dot&quot; type=&quot;application/msword; length=1877&quot; title=&quot;shop.build2be.com.dot&quot;&gt;shop.build2be.com.dot&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;1.83 KB&lt;/td&gt; &lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;span class=&quot;file&quot;&gt;&lt;img class=&quot;file-icon&quot; alt=&quot;Image icon&quot; title=&quot;image/png&quot; src=&quot;/modules/file/icons/image-x-generic.png&quot; /&gt; &lt;a href=&quot;https://build2be.com/sites/build2be.com/files/ryan.png&quot; type=&quot;image/png; length=281495&quot; title=&quot;ryan.png&quot;&gt;ryan.png&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;274.9 KB&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;This story is about the cool tools and modules drupal offer.

I will use drush as a command tool. This only works if you have shell access.

Steps taken
&lt;ol&gt;
&lt;li&gt;Install drupal.&lt;/li&gt;
&lt;li&gt;Install &lt;a href=&quot;http://drupal.org/project/drush&quot;&gt;drush&lt;/a&gt; module&lt;/li&gt;
&lt;li&gt;Install &lt;a href=&quot;http://drupal.org/project/update_status&quot;&gt;update_status&lt;/a&gt; module&lt;/li&gt;
&lt;/ol&gt;

Now the fun part starts.
&lt;ol&gt;
&lt;li&gt;configure drush&lt;/li&gt;
&lt;li&gt;run drush ... 
&lt;pre&gt;&lt;code&gt;drush pm install token workflow_ng tapir ubrowser cck imagefield imagecache google_analytics ubercart&lt;/code&gt;&lt;/pre&gt;
&lt;/ol&gt;

&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Fri, 08 Feb 2008 15:29:56 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">4 at https://build2be.com</guid>
 <comments>https://build2be.com/content/installing-ubercart#comments</comments>
</item>
</channel>
</rss>
