<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>dreamhost &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/dreamhost/</link>
	<description>Feed of posts on WordPress.com tagged "dreamhost"</description>
	<pubDate>Sun, 27 Dec 2009 08:05:23 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Back in the frazzle again]]></title>
<link>http://dustbury.wordpress.com/2009/12/07/back-in-the-frazzle-again/</link>
<pubDate>Mon, 07 Dec 2009 21:11:23 +0000</pubDate>
<dc:creator>CGHill</dc:creator>
<guid>http://dustbury.wordpress.com/2009/12/07/back-in-the-frazzle-again/</guid>
<description><![CDATA[Looks like all things Dreamhost are toast, or at least stale bread; neither my sites, nor webmail, n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Looks like all things Dreamhost are toast, or at least stale bread; neither my sites, nor webmail, nor their control panel are coming up.</p>
<p>I suspect someone tripped over something in their Brand New Data Center&#8482;.</p>
<p><em>Update:</em>  Back up in 40 minutes.  I&#8217;ve seen worse.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wednesday data center tidbits.]]></title>
<link>http://vburke.wordpress.com/2009/12/03/wednesday-data-center-tidbits-2/</link>
<pubDate>Thu, 03 Dec 2009 01:21:23 +0000</pubDate>
<dc:creator>vburke</dc:creator>
<guid>http://vburke.wordpress.com/2009/12/03/wednesday-data-center-tidbits-2/</guid>
<description><![CDATA[Data center bad example of the day, DreamHost for bumbling a data center move bad enough to leave cu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Data center bad example of the day, <a>DreamHost for bumbling a data center move bad enough to leave customers down for days</a>. It&#8217;s obvious that they can&#8217;t manage a data center move, the technical quotes make me wonder about their network diagnostic skills.</p>
<p>The second bad example comes from <a href="http://www.networkworld.com/community/node/48663">Bank of America</a>. If there&#8217;s one thing people are going to be hypersensitive to being broken, it&#8217;s a financial system. Combine that with PR that gives the distinct impression you don&#8217;t have a clue and then it becomes flammable.</p>
<p>Vern, SwiftWater Telecom</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Install MoinMoin on Dreamhost. A Walk Through]]></title>
<link>http://blog.brettski.com/2009/11/21/install-moinmoin-on-dreamhost-walk-through/</link>
<pubDate>Sat, 21 Nov 2009 06:12:58 +0000</pubDate>
<dc:creator>Brettski</dc:creator>
<guid>http://blog.brettski.com/2009/11/21/install-moinmoin-on-dreamhost-walk-through/</guid>
<description><![CDATA[The goal of this document is to walk through the installation of a MoinMoin wiki without getting bog]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The goal of this document is to walk through the installation of a <a href="http://MoinMoin.in" target="_blank">MoinMoin</a> wiki without getting bogged down in any details.  We&#8217;ll go through requirements, decisions, and steps to complete, that&#8217;s all.  (OK, I did end up indicating what directories are added; I can&#8217;t stand when stuff is added I don&#8217;t know about.)   I will follow up this post with the details for those who are interested. Once you have completed the steps herein you will have a working MoinMoin wiki on your Dreamhost.com shared hosting account.  By no way is this the only way to set up MoinMoin on an account, or even the best way, but I tested it and it will work.  Lets get to it!</p>
<h2>Requirements</h2>
<ul>
<li><a href="http://www.dreamhost.com/r.cgi?490900" target="_blank">Dreamhost</a> shared hosting account.</li>
<li>A domain setup as fully hosted</li>
<li>Shell and FTP access to the domain account</li>
</ul>
<h2>Assumptions</h2>
<ul>
<li>Dreamhost running python version 2.4</li>
<li>MoinMoin version 1.8.5</li>
<li>Understanding of editing files from Linux shell</li>
<li><strong>acctname</strong> is the accout name you used to access your domain account through ssh and FTPS.</li>
<li>~/ = $HOME = /home/<em>acctname</em>/</li>
</ul>
<h2>Decisions</h2>
<ul>
<li>URL to run wiki from (we use sub directory) [We will use: http://hosteddomain<strong>/wiki</strong>]</li>
<li>Private name for the wiki&#8217;s instance name [We will use: <strong>dhwiki</strong>]</li>
</ul>
<h2>Steps</h2>
<ol>
<li>Download MoinMoin wiki tarball from http://moinmo.in/MoinMoinDownload (<a href="http://static.moinmo.in/files/moin-1.8.5.tar.gz" target="_blank">moin-1.8.5.tar.gz</a>) to your local workstation.</li>
<li>From FTP: upload file to Dreamhost into folder ~/files [/home/acctname/files]<br />
** All commands from now on are from your shell access **</li>
<li>cd ~/files</li>
<li>
<pre>tar -xvzf ~/files/moin-1.8.5.tar.gz [new directory is created: ~/files/moin-1.8.5</pre>
</li>
<li>
<pre>cd ~/files/moin-1.8.5</pre>
</li>
<li>
<pre>python setup.py --quiet install --prefix=$HOME --record=install.log</pre>
<p>[two directories created: ~/share/moin; ~/lib/python2.4/site-packages/MoinMoin]</li>
<li>Setup environment variables
<ol>
<li>
<pre>export PREFIX=$HOME</pre>
</li>
<li>
<pre>export SHARE=$PREFIX/share/moin</pre>
</li>
<li>
<pre>export WIKILOC=$SHARE</pre>
</li>
<li>
<pre>export INSTANCE=dhwiki</pre>
</li>
</ol>
</li>
<li>
<pre>cd $WIKILOC</pre>
</li>
<li>
<pre>mkdir $INSTANCE</pre>
</li>
<li>
<pre>cp -R $SHARE/data $INSTANCE</pre>
</li>
<li>
<pre>cp -R $SHARE/underlay $INSTANCE</pre>
</li>
<li>
<pre>cp $SHARE/config/wikiconfig.py $INSTANCE</pre>
</li>
<li>
<pre>chmod -R o+rwX $INSTANCE</pre>
</li>
<li>Edit file $INSTANCE/wikiconfig.py<br />
Find and change the follwing lines:</p>
<ol>
<li>sitename = u'<em>Your Wiki Title</em>'</li>
<li>logo_string = u'&#60;img src="/wiki/common/moinmoin.png" alt="MoinMoin Logo"&#62;'</li>
<li>Remove hash (#) in front of: page_front_page = u"FrontPage"</li>
<li>data_dir = '/home/<em>acctname</em>/share/moin/<em>dhwiki</em>/data/'</li>
<li>data_underlay_dir = '/home/<em>acctname</em>/share/moin/<em>dhwiki</em>/underlay/'</li>
<li>url_prefix_static = '/wiki'   [(remove # from line)]</li>
<li>mail_smarhost = "<em>dreamhost smtp server</em>"</li>
</ol>
</li>
<li>
<pre>cd ~/hosteddomain</pre>
</li>
<li>
<pre>cp -R $SHARE/htdocs wiki</pre>
</li>
<li>
<pre>chmod -R a+rX wiki</pre>
</li>
<li>
<pre>cd wiki</pre>
</li>
<li>
<pre>mkdir ./cgi-bin</pre>
</li>
<li>
<pre>cp $SHARE/server/moin.cgi ./cgi-bin</pre>
</li>
<li>
<pre>chmod -R a+rx ./cgi-bin</pre>
</li>
<li>
<pre>cd ./cgi-bin</pre>
</li>
<li>Edit file moin.cgi<br />
Find and change the following lines.  Please remove the # if they exist on THESE lines:</p>
<ol>
<li>sys.path.insert(0, 'home/<em>acctname</em>/lib/python2.4/site-packages')</li>
<li>sys.path.insert(0, '/home/<em>acctname</em>/share/moin/<em>dhwiki</em>'<em>)</em></li>
</ol>
</li>
<li>
<pre>cd ..</pre>
</li>
<li>Edit file index.html<br />
Find and change the following lines:</p>
<ol>
<li>&#60;meta http-equiv="refresh" content="0; URL=cgi-bin/moin.cgi/"&#62;</li>
<li>Click &#60;a href="cgi-bin/moin.cgi"&#62;here&#60;/a&#62; to get to the FrontPage</li>
</ol>
</li>
<li><strong>Go to your favorite browser and enter your wiki's domain: </strong><strong>Http://hosteddomain/wiki</strong></li>
</ol>
<p><em><span style="text-decoration:underline;">Use these instructions at your own risk.  I extend no warranties or guarantees about the accuracy or safety of your data or website.</span></em></p>
<p>These instructions where tested by building the following wiki: http://MMonDH.brettski.com/wiki</p>
<p>All comments are welcome</p>
<h3>References Used</h3>
<ul>
<li>http://master.moinmo.in/MoinMoin/InstallDocs#basic-install</li>
<li>http://www.wombatnation.com/misc/installMoinMoinDreamHost.html</li>
</ul>
<h3>Revision Information</h3>
<ul>
<li>11/21/2009
<ul>
<li>Initial post after successfully building a wiki following exact steps</li>
</ul>
</li>
</ul>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:1033px;width:1px;height:1px;">
<table id="BodyTable" style="text-align:left;font-family:Segoe UI;table-layout:fixed;font-size:75%;vertical-align:top;" cellspacing="0">
<tbody>
<tr style="background-color:#e0edff;">
<td><span style="color:windowtext;">Is this a negotiation, or are you just not  interested? I am spending about 40k a month right now on consultants, so I have  plenty of money to spend. Culture, to me it's directly impacted by budget and  resources. At the time that we spoke my budget isn't nearly as high as it is  right now. If you are talking about working evenings you do that already. </span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:11:16 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">When we first spoke, I was under the  impression you no longer available after 6:00. You underpromised, so you could  over deliver. I found out later that you were one of the hardest working guys  that I know.</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:13:30 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">Maybe you don't want to work that hard which  is why it became an issue for you when I was pressing it. When I interview  people, I always try and understand where their comfort levels are so I  understand their boundries. The way I saw it is you wanted to have dinner with  your family and got back on the computer later. Here is what I would ask for you  to do.</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:15:12 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">Look at your last month, and figure how many  hours you really worked. Was it 40-50? 50-55? or +55 hours per week? I am  interested in knowing because I am guessing your somewhere between 50-55. </span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:18:46 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">When we were in our discussions, you were  giving me the perception that it could cause a problem for you at home if you  were hoing to have to put in over 45 hours. What I really think is if you could  make $110,000 in a 50 hour work week, or you could make $150,000 in a 60 hour  work week I think you would probibly work 60. And then figure how you could get  it down to 55... and then 52...</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:21:25 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">And at the same time you were doing that,  you would get me from 65 to 58, and 58 to 52, and so on. So at the end of the  day, it really comes down to how much my time is worth as well as your time.  Which is something you might not be taking into consiteration when you limit  your opportunities and not discussing this further. </span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:23:43 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">Currently, I have 3 consultants I am paying  170,000 and they are not as smart as you are. They are down the street and you  were down the block. At a certain point, I am sure you can understand that I can  only afford to spend so much time in IT. I am ready to discuss dollars if you  are. I am willing to discuss the boundries, or we can not discuss it at  all.</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:24:56 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">Hopefully you at least know where I am  comming from. Bottom line, I am sitting here writing big checks saying to  myself. Would I be writing checks this big and having to invest the time if  Brett were here?</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:27:22 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">I don't mind writing the checks, what I mind  is when I have ot write the checks and still put in the time. You asked me what  my commitment to you would be. If we were to do something, I told you I would  give you a year of 60 hours a week of helping you acclimate yourself to our  company. Thats a big investment of my time. I apprechiated the question because  no one had ever asked me before. </span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:29:59 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">So here is what you have to ask yourself...  Do I want to pass on the biggest financial opportunity of my life without going  to see this man? The question I would ask you, is why would you want to limit  your opportunities? </span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:34:35 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">The only thing I can think of is that you  would be affraid of the industry, maybe that you were getting dragged into the  deep end of the pool, giving up a job that I like that I am currently doing.  Also, I did hire a senior level programmer for more money than you were asking  for when you were interviewing and I am willing to pay him. Because I see how  much value he brings me.</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:35:27 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">I guess the question I would ask you is  would you be willing to work with a programmer that makes more money that you  did if he had the tallent? </span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:38:26 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">We have an aggressive agenda, I am looking  to bring in top guys to make my life easier. I think you would be a good fit.  Tallent costs money, I realize that. Something to consider, the banks are  looking to change the comp plans for the Loan Officers and cut what they pay the  Loan Officers by 50% of what they pay now. They are doing this as a result of  the pressure they are getting from the gov</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:39:50 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">The insurance companies that own mortgage  companies are following suit. Which means that we have hundreds of people who  are looking at our company as a result of massive pay cuts across the industry,  which we are not participating in doing.</span></td>
</tr>
<tr style="background-color:#e0edff;">
<td>11/20/2009</td>
<td></td>
<td>8:41:18 PM</td>
<td></td>
<td>mikeg1@ephmc.com (E-mail address not verified)</td>
<td></td>
<td>Brettski *red+u</td>
<td></td>
<td><span style="color:windowtext;">I know you have been looking for that 1  opportunity that you could capitalize on. Maybe this is it? Is it really that  far from the relm of possibility?</span></td>
</tr>
</tbody>
</table>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Limited Invitation Codes]]></title>
<link>http://dreamhostcodes.wordpress.com/2009/11/16/limited-invitation-codes/</link>
<pubDate>Mon, 16 Nov 2009 01:28:20 +0000</pubDate>
<dc:creator>dreamhostcodes</dc:creator>
<guid>http://dreamhostcodes.wordpress.com/2009/11/16/limited-invitation-codes/</guid>
<description><![CDATA[DreamHost Invitations: Are each good only one time! Give $150 off a 5-year signup or $200 off a 10-y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>DreamHost Invitations:</strong></p>
<ul>
<li> Are each good <em>only one time!</em></li>
<li> Give <em>$150 off</em> a 5-year signup or <em>$200 off</em> a 10-year signup!</li>
</ul>
<p><strong> </strong>I currently have <strong>5</strong> unused invites, with the codes:</p>
<blockquote><p>298673866187<br />
380311303344<br />
387473152761<br />
425422981557<br />
439849601090</p></blockquote>
<p>Please let me know when you use one, so I can remove those!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Get me out of here!]]></title>
<link>http://netcultures.wordpress.com/2009/10/06/get-me-out-of-here/</link>
<pubDate>Tue, 06 Oct 2009 04:59:18 +0000</pubDate>
<dc:creator>netcultures</dc:creator>
<guid>http://netcultures.wordpress.com/2009/10/06/get-me-out-of-here/</guid>
<description><![CDATA[How to back up or migrate your blog. The internet is not safe. If you have your data on a webhost, a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a title="Amazing Stories February 1952 Classic Vintage Science Fiction Sci Fi Pulp Book by YellowcakeMushroom, on Flickr" href="http://www.flickr.com/photos/35301335@N07/3595025105/"><img src="http://farm4.static.flickr.com/3178/3595025105_53f412d739.jpg" alt="Amazing Stories February 1952 Classic Vintage Science Fiction Sci Fi Pulp Book" width="368" height="500" /></a></p>
<p>How to back up or migrate your blog.</p>
<p>The internet is not safe. If you have your data on a webhost, anywhere, it&#8217;s probably not safe. If you have a security specialist on your team (and none of us here do), then maybe it&#8217;s <em>somewhat</em> safe from malicious attacks, but even then, it&#8217;s still vulnerable to <a href="http://www.datacenterknowledge.com/archives/2009/02/19/magnolia-data-is-gone-for-good/">plain old hardware failure</a> and <a href="http://groups.google.com/group/google-appengine/msg/ba95ded980c8c179">general cockups</a>. And the most vulnerable data of all is the data that is hosted on <a href="http://digg.com/tech_news/Just_Exactly_How_Bad_Does_Dreamhost_Suck_Read_this_to_find_out">bottom-end hosts like Dreamhost</a> where potentially hundreds of other people are sharing disk space and server resources with you, and as with everywhere on the internet, a sizable proportion of them are guaranteed to be some combination of incompetent and malicious. It&#8217;s only a matter of time before one of them accidentally or deliberately brings the server down, accidentally corrupts your files, or breaks in to your filespace and uses it to subsidise their pornography business. It&#8217;s happened to me, more than once. Moreover, as I&#8217;ve said before, if you are using FTP instead of SFTP, it means that you don&#8217;t really care about your data anyway, and pretty much anyone with enough dedication can come along and steal your password and make free with your files if they try hard enough.<!--more--></p>
<p>Everyone needs backups. Backup. Backup all the time. Remember, I can&#8217;t give you extensions if the <a href="http://www.marinij.com/marin/ci_8444654">Ukrainian Pr0n Mafia eats your homework</a>.</p>
<p>Those are the risks &#8211; but here is an clarifying certainty: when the semester is over, this web hosting will be turned off and your files will be deleted. So, quite aside from everything else, if you wish to keep your work, you will need to make at least one backup to get it off Dreamhost at the end of the class.</p>
<p>OK, that&#8217;s the motivation. Now&#8230; how to do this backup thing?</p>
<p>There&#8217;s a few options. Too many, as always. Personally, I store all the files I am working on using <a href="http://github.com/howthebodyworks">github</a>, which keeps a record of every change I make, and is very very powerful. However, that&#8217;s a bit complicated, and it won&#8217;t work easily from UTS computers, so I&#8217;ll leave that one as an exercise for the advanced students.</p>
<p>More easy, you might want to keep all your work <em>off</em>line on your home computer, and only upload it at the last minute. That&#8217;s pretty possible too. You can run web servers on your home machine and just use whatever your normal home backup system is. (you <em>do</em> have a backup system for your home computer, right?) If you want to do that, you might find it easiest to download a preconfigured web server. There&#8217;s a free one for windows called <a href="http://www.apachefriends.org/en/xampp-windows.html">XAMPP</a>, and one for Mac called <a href="http://www.mamp.info/en/index.html">MAMP</a>. I certainly do offline development myself, although I don&#8217;t use those preconfigured web server packages, since I don&#8217;t develop on Mac <em>or</em> Windows, but use a nice fresh linux system called <a href="http://www.ubuntu.com/products/WhatIsUbuntu/serveredition">Ubuntu</a> which manages it for me automatically. All three of these systems are quite easy to use, although I should warn you that WordPress makes the uploading to a new server <a href="http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_to_a_New_Server">a bit fiddly</a>.</p>
<p>But enough broad-brush options. I&#8217;m going to get down to the nitty gritty on the simplest option of all: Backing up over (S)FTP.</p>
<p>If you are uplaover cyberduck, you are already part of the way there. The trick is:remember that when you edit your files on the dreamhost server instead of your local computer, you now have some custom changes which you probably want to keep a copy of.</p>
<div id="attachment_309" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-309" title="do not edit" src="http://netcultures.wordpress.com/files/2009/10/do-not-edit.png" alt="this way lies pain if you ain't careful" width="500" height="289" /><p class="wp-caption-text">this way lies pain if you ain&#39;t careful</p></div>
<p>Same goes for wordpress&#8217;s built-in editor, and its plugin installer. Every time you use that, you are modifying files on the server which leaves them at the whim of Dreamhost. Nothing wrong with that, if you want to see the changes you make take instant effect, but it can be bad if you want to make sure you get to keep that change if something goes wrong.</p>
<p>So the trick to avoid losing stuff here is to use Cyberduck&#8217;s &#8220;Synchronise&#8221; feature, which will synchronise files on your local computer and the server, and keep them as similar as possible. This handy little feature exists on the &#8220;actions&#8221; menu of cyberduck</p>
<div id="attachment_311" class="wp-caption alignnone" style="width: 509px"><img class="size-full wp-image-311" title="cyberduck's sync menu" src="http://netcultures.wordpress.com/files/2009/10/cyberduck-sync-menu.png" alt="Here's your lifesaver" width="499" height="373" /><p class="wp-caption-text">Here&#39;s your lifesaver</p></div>
<p>Once you click on that, you get to choose a local folder on your computer to keep in sync with the server.</p>
<div id="attachment_310" class="wp-caption alignnone" style="width: 509px"><img class="size-full wp-image-310" title="cyberduck's synchronise window" src="http://netcultures.wordpress.com/files/2009/10/picture-9.png" alt="cyberduck's synchronise window" width="499" height="323" /><p class="wp-caption-text">cyberduck&#39;s synchronise window</p></div>
<p>Now, choose whether to do update the server with your local changes (&#8220;upload&#8221;), update your local copy with changes from the server (&#8220;download&#8221;), or both at once (&#8220;mirror&#8221;). Press &#8220;continue&#8221; then wait until it&#8217;s finished. And now you&#8217;ve backed up your files. Hurray!</p>
<div id="attachment_312" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-312" title="cyberduck sync options" src="http://netcultures.wordpress.com/files/2009/10/cyberduck-sync-options.png" alt="so many choices, so little time" width="500" height="356" /><p class="wp-caption-text">so many choices, so little time</p></div>
<p><em>Note that Dreamweaver can also do this. The adventurous among you are welcome to try that, but I&#8217;m not going to show you. Why? Well, for a start, all the staff here use Cyberduck in preference to Dreamweaver. For another, just because dreamweaver can do almost everything doesn&#8217;t mean it can do everything </em>well<em>, and one of the things that annoys me is how incredibly slow its file synchronisation system can be. For a final reason, it doesn&#8217;t hurt to learn how to use a couple of different tools, especially free, open-source ones like Cyberduck.</em></p>
<p>But, are you done here? Well, no. Not unless you are building a site in pure HTML. The thing about WordPress, or joomla, or any of these modern blogs and things is that they store information in a <em>database</em> on the server (in our case, MySQL) which is completely distinct from the <em>files</em> on the server. It&#8217;s a whole other way of storing information, and it&#8217;s completely different to back up. We won&#8217;t be going in to MySQL in detail this semester, but you will need to know at least that it&#8217;s there and how to make copies of the stuff it stores on your behalf. Here goes:</p>
<p>You need to find the admin interface for you database. The easiest way to do this is to log in to the dreamhost control panel and <a href="https://panel.dreamhost.com/index.cgi?tree=goodies.mysql&#38;">go right there.</a></p>
<p><a href="https://panel.dreamhost.com/index.cgi?tree=goodies.mysql&#38;"><img class="alignnone size-full wp-image-314" title="finding the database admin page" src="http://netcultures.wordpress.com/files/2009/10/picture-18.png" alt="finding the database admin page" width="500" height="122" /></a></p>
<p>You&#8217;re looking for the &#8220;web administration&#8221; link, which for all of our databases is though a special web application called &#8220;phpMyAdmin&#8221;.  You can also usually work out how to get there, if you rememebrd your MySQL hostname, by just putting &#8220;mysql&#8221; in front of your site address. So for my site, at http://dan.map-netcultures.net, the databse admin is at http://mysql.dan.map-netcultures.net. It will be different for you, mind.  You&#8217;ll need your database username and password to login, mind. You <em>did</em> write it down, didn&#8217;t you?</p>
<p>That will take you into the convoluted bowels of phpMyAdmin. There&#8217;s lots of buttons here, which you can gleefully ignore. The key thing is to select the database that you are using for your blog (you<em> </em>did write<em> that </em>down, right?) In my case it&#8217;s &#8220;dan123&#8243;.</p>
<p><img class="alignnone size-full wp-image-316" title="The Mysql DB menu" src="http://netcultures.wordpress.com/files/2009/10/mysql-db-menu.png" alt="The Mysql DB menu" width="500" height="299" /></p>
<p>Next, you want to do an &#8220;export&#8221; of that database, which is, predictably, under the &#8220;export&#8221; menu &#8211; the little guy highlighted in red below.</p>
<p><img class="alignnone size-full wp-image-317" title="The MySQL export menu for my database" src="http://netcultures.wordpress.com/files/2009/10/mysql-export-menu.png" alt="The MySQL export menu for my database" width="499" height="476" /></p>
<p>Now, finally, it&#8217;s time to do the deed. The expor menu has terrifyingly many options, most of which you don&#8217;t need. But you do probably want to &#8220;save as a file&#8221; and moreover a &#8220;zipped&#8221; file. Select those options and press the &#8220;go&#8221; button.</p>
<div id="attachment_315" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-315" title="mysql save-as-zipped-file" src="http://netcultures.wordpress.com/files/2009/10/mysqlsaveasfile.png?w=300" alt="The red circle highlights the only controls I suspect you will need unless you are feeling very advanced indeed" width="300" height="250" /><p class="wp-caption-text">The red circle highlights the only controls I suspect you will need unless you are feeling rather advanced indeed</p></div>
<p>Bam! you now have a database backup called something like yourname.sql.zip</p>
<div id="attachment_318" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-318" title="The database backup should appear in your downloads list" src="http://netcultures.wordpress.com/files/2009/10/picture-25.png" alt="Put this somewhere safe" width="500" height="78" /><p class="wp-caption-text">Put this somewhere safe</p></div>
<p>Where this downloads to depends on your browser. the important thing is that you should put it somewhere safe so that you can find it again later. And while we&#8217;re here- you can also restore backups. This is handy if you make a horrible mistake while you are editing your blog and want it to go back the way it was. That part is straightforward if you&#8217;ve gotten this far &#8211; to reload your exported database, you simply &#8220;import&#8221; it:</p>
<div id="attachment_319" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-319" title="importing a database snapshot" src="http://netcultures.wordpress.com/files/2009/10/picture-26.png" alt="The opposite of exporting is importing. If you dump your exported file into the import box, you will get your database restored to the way it was when you exported it." width="500" height="348" /><p class="wp-caption-text">The opposite of exporting is importing. If you dump your exported file into the import box, you will get your database restored to the way it was when you exported it.</p></div>
<p>Too easy. Now, go forth and make radical changes to your blog, secure in the knowledge you can always put it back the way it was.</p>
<h3 id="wordpress-tips">Bonus points &#8211; wordpress-specific tips</h3>
<p>These instructions so far have been completely generic. But if you are using wordpress, you have a couple of extra options, and a couple of extra difficulties.</p>
<p>Firstly, let me re-iterate that full blown wordpress install is a bit fiddly, but the instructions are<br />
<a href="http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_to_a_New_Server">here</a>. If you&#8217;ve done anything at all complex to your blog, this is the avenue open to you. It&#8217;s pretty well documented, but takes a few minutes.</p>
<p>There&#8217;s also the wordpress-special option of exporting and re-importing your blog. This only works if you haven&#8217;t done any massively self-hosted word-press specific things &#8211; if you haven&#8217;t customised your themes, if you aren&#8217;t embedding custom javascript, and you haven&#8217;t installed any except the wordpress.com preferred plugins. If all those hold true, there is an easy option: Export your blog posts, and import them again later. Instructions are <a href="http://codex.wordpress.org/Tools_Export_SubPanel">here</a>. Two steps. 2 minutes. Easy.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dreamhost Discount - Flat $50]]></title>
<link>http://w3solutions.wordpress.com/2009/09/28/dreamhost-discount-flat-50/</link>
<pubDate>Mon, 28 Sep 2009 15:21:38 +0000</pubDate>
<dc:creator>shravanmishra</dc:creator>
<guid>http://w3solutions.wordpress.com/2009/09/28/dreamhost-discount-flat-50/</guid>
<description><![CDATA[If you are looking to purchase cheap web hosting and also reliable then Dreamhost is a great webhost]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you are looking to purchase<a href="http://www.smashapps.org/2009/09/8-cheap-and-best-wordpress-hosting.html"><strong> cheap web hosting</strong></a> and also reliable then Dreamhost is a great webhosting company that you can go with.</p>
<p>Get you <a href="http://www.smashapps.org/2009/09/dreamhost-discount-coupon-50.html"><strong>Dreamhost promo code</strong></a>. Follow the link and get $50 discount on your dreamhost web hosting.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Què ha passat!?]]></title>
<link>http://bits.quintanasegui.com/2009/09/20/que-ha-passat/</link>
<pubDate>Sun, 20 Sep 2009 09:42:07 +0000</pubDate>
<dc:creator>pere</dc:creator>
<guid>http://bits.quintanasegui.com/2009/09/20/que-ha-passat/</guid>
<description><![CDATA[Probablement, ja us heu demanat què ha passat amb Bitsenbloc, ja que ha desaparegut el preciós disse]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Probablement, ja us heu demanat què ha passat amb <strong>Bitsenbloc</strong>, ja que ha desaparegut el preciós disseny que tenia fins ara. L&#8217;explicació és simple, ahir vaig fer un canvi de servidor i, pel camí, he hagut de renunciar a certes coses.</p>
<p>Comencem pel principi. Fins ara, Bitsenbloc era allotjat en un servidor de <a href="http://www.dreamhost.com">Dreamhost</a>. Aquella era una instal·lació manual. És a dir, era jo qui s&#8217;havia d&#8217;encarregar d&#8217;anar actualitzant el blog a la darrera versió i, això és el més important, era jo qui s&#8217;havia d&#8217;encarregar de la seva seguretat.</p>
<p>Actualitzar el blog no suposa un problema molt important, al cap i a la fi, els de <a href="http://www.wordpress.org">WordPress.org</a> han simplificat molt la tasca. No obstant, no sempre actualitzava a temps, simplement, perquè la vida ara m&#8217;obliga a orientar la meva atenció cap a altres coses. No actualitzar el blog és un problema de seguretat, ja que un cop una vulnerabilitat és detectada, tota una munió de <em>crackers</em> es dedica a cercar blogs fets amb WordPress per tal d&#8217;injectari-hi codi, sovint amb l&#8217;objectiu d&#8217;enllaçar pàgines fraudulentes. De fet, això ja m&#8217;ha passat més d&#8217;una vegada.</p>
<p>Així doncs, tenint en compte que la meva vida actual no em deixa mantenir el blog com és degut i que jo no sóc un bon administrador de sistemes, he decidit passar el relleu a professionals. Així doncs, des d&#8217;ahir vespre, Bitsenbloc i <a href="http://quintanapetrus.com">el blog del meu pare</a> s&#8217;allotgen a <a href="http://www.wordpress.org">WordPress.com</a>, el servei comercial de blogs que ofereix <a href="http://automattic.com/">Auttomattic</a>, l&#8217;empresa del creador d&#8217;aquest programa de gestió de blogs. Pel mòdic preu de 10$ anuals (és el que s&#8217;ha de pagar per tal de poder emprar un domini propi), els millors experts en WordPress s&#8217;encarregaran de vigilar la meva llar digital. Així, podré dormir tranquil.</p>
<p>Què he perdut amb el canvi? Per una banda, ja no puc emprar el disseny que jo vulgui (bé sí, si pago 15$ més anuals ho podré fer, però de moment em fa vessa), per l&#8217;altra no puc posar els <em>plugins</em> que desitgi. El primer problema és relativament greu. El segon, en canvi, no em fa patir, ja que, de fet, cap dels <em>plugins</em> que emprava és essencial.</p>
<p>I què passa amb la meva llibertat? Doncs no gaire cosa. Tinc una relació de client a professional amb Automattic, ja que pago un servei, així doncs, tinc tot el dret a queixar-me (com ho faig de vegades amb els de Dreamhost). Per altra banda, WordPress és un programa molt respectuós amb les dades de l&#8217;usuari. Aquestes es poden exportar en format XML. De fet, és gràcies a això que he pogut importar tot el que he escrit a Bitsenbloc des de 2003. Així doncs, quan vulgui, faré les maletes i aniré a una altre casa. Amb tot allò que em pertany.</p>
<p>Per sort, no hi ha hagut cap canvi de domini, així que els fils de subscripció es troben allí mateix. El que sí que ha canviat una mica és l&#8217;estructura de les URL dels arxius, però no només de PageRank viu l&#8217;home. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Ja per acabar, vull donar les gràcies a n&#8217;<a href="http://oscarbarber.com">Oscar Barber</a> per haver fet el magnífic disseny i logo que tenia fins ara. Ara intentaré cercar un disseny que em permeti canviar el logo, per així recuperar el de sempre.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wordpress in miniature.]]></title>
<link>http://netcultures.wordpress.com/2009/09/18/wordpress-in-miniature/</link>
<pubDate>Thu, 17 Sep 2009 15:54:38 +0000</pubDate>
<dc:creator>netcultures</dc:creator>
<guid>http://netcultures.wordpress.com/2009/09/18/wordpress-in-miniature/</guid>
<description><![CDATA[Here&#8217;s a handy tool for y&#8217;all. WordPress. It&#8217;s probably one of the most common CMS]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.flickr.com/photos/fotologic/1283109349/" title="Torn Posters by fotologic, on Flickr"><img src="http://farm2.static.flickr.com/1322/1283109349_903e38a0c9.jpg" width="333" height="500" alt="Torn Posters" /></a><br />
Here&#8217;s a handy tool for y&#8217;all. WordPress. It&#8217;s probably one of the most common CMSs (Content Management Systems) in existence. It&#8217;s written in <a href="http://php.net">PHP</a> and the <a href="http://mysql.com">MySQL</a> dialect of <a href="http://en.wikipedia.org/wiki/SQL">SQL</a>, two languages that I do <em>not</em> intend to cover in this course.  The beauty of WordPress, as opposed to systems like <a href="http://rubyonrails.org/">Ruby on Rails,</a> <a href="http://www.joomla.org/">Joomla</a> or <a href="http://www.djangoproject.com/">Django</a>, is that you can do a lot of stuff without having to touch the PHP/SQL stuff. I might argue that the beauty of Django or Rails is that it makes the code so simple that you don&#8217;t mind messing with it. But that is definitely digressing. You might want to give those frameworks a look if you are going further later on.</p>
<p>The distinction with all these systems, the thing that makes them different from the javascript-based code we&#8217;ve been developing so far, is that javascript runs (typically) in the browser, on the computer of the user who visits your page. PHP and SQL though are executed on a the server. This is why UTS pays Dreamhost money for the usage of their machines.</p>
<p>But one step at a time. WordPress is a great way of seeing how all this website stuff works&#8230; let&#8217;s take it <a href="http://netcultures.wordpress.com/2009/09/11/a-quick-look-behind-the-curtain/">from where we left off last time</a>, installing stuff from the dreamhost control panel.<!--more--></p>
<div id="attachment_271" class="wp-caption alignnone" style="width: 510px"><a href="https://panel.dreamhost.com/index.cgi?tree=goodies.installer&#38;"><img class="size-full wp-image-271" title="The dreamhost add-new-software screen" src="http://netcultures.wordpress.com/files/2009/09/picture-21.png" alt="The dreamhost add-new-software screen" width="500" height="333" /></a><p class="wp-caption-text">The dreamhost add-new-software screen</p></div>
<p>Shazam. You now have wordpress installed. Why not take a look at what you have there, and fill out your info?</p>
<div id="attachment_273" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-273" title="your brand new blog thingy" src="http://netcultures.wordpress.com/files/2009/09/picture-7.png" alt="your brand new blog thingy - don't get the email wrong or you'll have to start again." width="500" height="375" /><p class="wp-caption-text">your brand new blog thingy - don&#39;t get the email wrong or you&#39;ll have to start again.</p></div>
<p>Once you&#8217;ve logged in you&#8217;ll be presented with a classic blog dashboard where you can hang around editing posts and so forth. There&#8217;s a million options here which might be confusing. Fortunately there is<a href="http://codex.wordpress.org/"> an extensive manual</a>. Why not try to make a brand new post? Can you work out how to do that? Having edited your new post, why not find the post in a browser and have a look the published version? Now, run firebug, or press &#8220;view source&#8221; and have a look at the HTML that makes up the page&#8230; It&#8217;s a bit more complex that the stuff we were coding up by hand earlier, no?</p>
<div id="attachment_275" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-275" title="the view from the inside" src="http://netcultures.wordpress.com/files/2009/09/picture-10.png" alt="where all the wordpress action is at" width="500" height="432" /><p class="wp-caption-text">where all the wordpress action is at</p></div>
<p>How is this magic accomplished? Well, if you&#8217;d like you can look deeper into the internals of the software&#8230; you can point Cyberduck at the server and have a look at the files that make up your wordpress installation. There&#8217;s a lot of stuff there- basically, a crapload of PHP code that automates the process of generating HTML for you. You could edit the PHP code in turn if you wanted to&#8230; but why bother? Life is short, and there are some easier options to try first.</p>
<div id="attachment_284" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-284" title="FTP view " src="http://netcultures.wordpress.com/files/2009/09/picture-211.png" alt="FTP view of the php files that dreamhost has installed for you to make wordpress go" width="500" height="261" /><p class="wp-caption-text">FTP view of the php files that dreamhost has installed for you to make wordpress go</p></div>
<p>For a start, you can modify wordpress&#8217;s behaviour with plugins, little bits of PHP code that the community has generously written and shared. How about we look for ones that give the blog handy map mashup functionality? I happen to know one of the geo mashup standards is called &#8220;GeoRSS&#8221;, so I&#8217;ll do  search for that. Plugins are variable in quality, but the first one listed there looks alright:</p>
<div id="attachment_277" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-277" title="hunting georss plugins" src="http://netcultures.wordpress.com/files/2009/09/picture-12.png" alt="i search for georss, i find too many options." width="500" height="361" /><p class="wp-caption-text">i search for georss, i find too many options.</p></div>
<p>From there it&#8217;s as simple as pressing the &#8220;install&#8221; button. Well, almost. this one uses google maps, so you have to sign on to google maps too:</p>
<div id="attachment_278" class="wp-caption alignnone" style="width: 510px"><a href="http://maps.google.com/apis/maps/signup.html"><img class="size-full wp-image-281 " title="signing on for a google maps API key" src="http://netcultures.wordpress.com/files/2009/09/picture-17.png" alt="signing on for a google maps API key is typical of the sorts of sign on you have to do to use third party services." width="500" height="733" /></a><p class="wp-caption-text">signing on for a google maps API key is typical of the sorts of sign on you have to do to use third party services.</p></div>
<p>After those steps, <em>BAM</em>, you now have a mapping-enabled blog:</p>
<div id="attachment_278" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-278" title="georss settings" src="http://netcultures.wordpress.com/files/2009/09/picture-14.png" alt="cripes, a whole new bonus settings menu has appeared." width="500" height="380" /><p class="wp-caption-text">cripes, a whole new bonus settings menu has appeared.</p></div>
<p>Great. But you can also change the appearance of your blog. The visual equivalent of a plugin is a &#8220;theme&#8221;, a collection of CSS and code that changes the appearance of your blog. There are loads of community-contributed ones there too.</p>
<div id="attachment_279" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-279" title="theme hunting" src="http://netcultures.wordpress.com/files/2009/09/picture-15.png" alt="you can hunt &#34;themes&#34; the same way as hunting plugins" width="500" height="539" /><p class="wp-caption-text">you can hunt &#34;themes&#34; the same way as hunting plugins</p></div>
<p>Of if you need to make finer changes, you can edit the CSS, or the code, that makes up your site by yourself:</p>
<div id="attachment_280" class="wp-caption alignnone" style="width: 509px"><img class="size-full wp-image-280" title="The theme editor" src="http://netcultures.wordpress.com/files/2009/09/picture-16.png" alt="The theme editor allows you to get at the CSS and HTML that makes up the site" width="499" height="352" /><p class="wp-caption-text">The theme editor allows you to get at the CSS and HTML that makes up the site</p></div>
<p>Now, how about taking it further?</p>
<p>There are loads of interesting plugins &#8211; say if you want to integrate some other social networking sites that you are involved in, you could install  <a href="http://wordpress.org/extend/plugins/lifestream/">Lifestream</a></p>
<p>If you think giving your readers the ability to comment on the individual paragraphs of your blog, for example, there are plugins to enable that. There is an old system called comment press that makes an <a href="http://www.futureofthebook.org/commentpress/about/">interesting case about why you might want to do that</a>. Don&#8217;t install that, though, install the new version called <a href="http://digress.it/">digress.it</a>.</p>
<p>Or if you wanted to use wordpress as a mashup engine, lots of things you might want to do don&#8217;t even need you to install plugins. For example, you could use the wordpress sidebar widgets to download and install new content from other sites (or from yahoo pipes, or from dapper) using rss&#8230; anyone care to walk us through that one?</p>
<p>And if you want to combine some of the other skills we&#8217;ve been learning with this&#8230; yes, jQuery, and CSS and all that stuff still work. jQuery ships with wordpress and it&#8217;s <a href="http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/">easy to enable</a>. You can <a href="http://codex.wordpress.org/Using_Javascript">create scripts</a> on a per-page basis or for every page in your site. You can also <a href="http://wordpress.org/extend/plugins/use-google-libraries/">use the google-hosted version</a>, as we&#8217;ve been doing in class. There&#8217;s a little trick, though &#8211; to enable the $() business to work like you&#8217;re used to, you have to write your javascript files <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Default_scripts_included_with_WordPress">like this:</a></p>
<pre style="font-variant:normal!important;text-align:left!important;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#f5f5f5;font-size:12px;line-height:1.3em;font-family:Consolas, Monaco, 'Courier New', Courier, monospace;font-weight:inherit;white-space:pre-wrap;background-position:initial initial;border:1px solid #dadada;margin:0 0 22px;padding:11px;">jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
});</pre>
<p>There are some excellent tutorials out there on precisely this:</p>
<ul>
<li><a href="http://speckyboy.com/2009/08/06/30-tutorials-combining-both-wordpress-and-jquery/">30 Tutorials Combining Both WordPress and jQuery</a></li>
<li><a href="http://www.wpbeginner.com/plugins/15-plugins-to-unleash-the-invincible-power-of-jquery-and-wordpress/">15+ Plugins to Unleash the Invincible Power of jQuery and WordPress</a></li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Affiliate Marketing]]></title>
<link>http://mediazed.wordpress.com/2009/09/06/affiliate-marketing/</link>
<pubDate>Sun, 06 Sep 2009 02:19:20 +0000</pubDate>
<dc:creator>mnazeq</dc:creator>
<guid>http://mediazed.wordpress.com/2009/09/06/affiliate-marketing/</guid>
<description><![CDATA[Affiliate marketing is a very popular practice on the Internet. Under this system you have a merchan]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Affiliate marketing is a very popular practice on the Internet. Under this system you have a merchant that is willing to let other people (the affiliates) sell directly or indirectly its products and services, in exchange for a commission. Sometimes this type of advertising is also called CPA (cost per action) or CPL (cost per lead) based.<br />
Affiliates can send potential customers to the merchant using several tools, from banners to text links and product reviews.<br />
In order to find suitable affiliate programs you can turn to individual companies and publishers like Dreamhost and SEOBook, or join affiliate marketplaces and networks.<br />
List of popular affiliate marketplaces and networks:<br />
	Commission Junction<br />
	ClickBank<br />
	Azoogle Ads<br />
	Link Share</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lash Boutique]]></title>
<link>http://avexnation.wordpress.com/2009/08/31/002/</link>
<pubDate>Mon, 31 Aug 2009 08:52:35 +0000</pubDate>
<dc:creator>Stan Choi</dc:creator>
<guid>http://avexnation.wordpress.com/2009/08/31/002/</guid>
<description><![CDATA[As mentioned in my bio; I do a bit of web-designing on the side&#8230;  it&#8217;s always been an in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>As mentioned in my bio; I do a bit of web-designing on the side&#8230;  it&#8217;s always been an interest of mine and something I&#8217;m quite passionate about because unlike my regular day job, it really allows my mind to run free and be as creative as can be.</p>
<p>Currently the projects are:</p>
<ul>
<li><strong>Lash Boutique</strong> (<a href="http://www.lashboutique.com.au" target="_blank">www.lashboutique.com.au</a>)</li>
<li><strong>Roxy2Foxy &#8211; Makeup Artistry</strong> (<a href="http://www.roxy2foxy.com.au" target="_blank">www.roxy2foxy.com.au</a>)</li>
<li><strong>Moltofino</strong> (<a href="http://www.moltofino.com.au" target="_blank">www.moltofino.com.au</a>)</li>
</ul>
<p>Lash Boutique was founded by <strong>Wendy Huang</strong> who approached me for a site after her previous designer decided to jump ship (after she&#8217;d paid for it &#8211; yes lame).  Being a good friend, and also someone that <strong>Roxy2Foxy</strong> had worked with before &#8211; I went to extra lengths to help her out.</p>
<p>The result is as follows:</p>
<p><a href="http://www.lashboutique.com.au"><img class="alignnone size-full wp-image-12" title="Lash Boutique Website Screenshot" src="http://avexnation.wordpress.com/files/2009/08/untitled-2.jpg" alt="Lash Boutique Website Screenshot" width="500" height="505" /></a><br />
The site incorporates most if not all of my web-designing knowledge and with the help of <strong>Mitch</strong> &#38; Google, I&#8217;ve learnt a lot along the way.  I also learnt that you should <strong><span style="text-decoration:underline;">NEVER EVER</span></strong> host your sites with <strong>Plesk</strong> &#8211; slow, cumbersome and manual.  It is now with <strong>Dreamhost</strong>; and we&#8217;re never looking back <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So if you have a moment, go over n have a browse&#8230; if you have a girlfriend, sister or even mum who&#8217;s into this stuff; be sure to let them know!</p>
<p>Another project completed by <strong>a-vex designs</strong>&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Purchasing right website host!]]></title>
<link>http://singhmadhuri.wordpress.com/2009/08/28/purchasing-right-website-host/</link>
<pubDate>Fri, 28 Aug 2009 05:14:50 +0000</pubDate>
<dc:creator>singhmadhuri</dc:creator>
<guid>http://singhmadhuri.wordpress.com/2009/08/28/purchasing-right-website-host/</guid>
<description><![CDATA[I did a bit of reading about a few hosts available in the market based on the features, recommendati]]></description>
<content:encoded><![CDATA[I did a bit of reading about a few hosts available in the market based on the features, recommendati]]></content:encoded>
</item>
<item>
<title><![CDATA[DreamHost Free Trial Offer!!!]]></title>
<link>http://freewebspace1.wordpress.com/2009/08/22/dreamhost-free-trial-offer/</link>
<pubDate>Sat, 22 Aug 2009 01:06:25 +0000</pubDate>
<dc:creator>BlogAdmin</dc:creator>
<guid>http://freewebspace1.wordpress.com/2009/08/22/dreamhost-free-trial-offer/</guid>
<description><![CDATA[DreamHost is a top web hosting company offering a spectacular deal.  For a limited time you can actu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>DreamHost is a top web hosting company offering a spectacular deal.  For a limited time you can actually get a free trial!  Not many companies would offer a special like this!</p>
<p style="text-align:center;"><strong><a href="http://www.dreamhost.com/r.cgi?115004" rel="nofollow">Click Here for the DreamHost FREE Trial Offer Today!!!</a></strong></p>
<p style="text-align:left;">DreamHost has been serving customers since 1997.  They are an employee owned company and they like it that way.  They strive to be an industry leader in the web hosting business but they don&#8217;t sacrifice honesty, reliability or great customer service just so they can grow.  They are committed to their customers and keep their technology up to date so that individuals and business owners alike have all that they need from the web hosting that DreamHost offers. </p>
<p style="text-align:left;">Here are just a few of the great services you can expect to find at DreamHost:</p>
<ul>
<li>
<div style="text-align:left;">Unlimited bandwidth</div>
</li>
<li>
<div style="text-align:left;">50 GB back up space</div>
</li>
<li>
<div style="text-align:left;">Unlimited domain hosting</div>
</li>
<li>
<div style="text-align:left;">Domain registration</div>
</li>
<li>
<div style="text-align:left;">Private domain registration</div>
</li>
<li>
<div style="text-align:left;">Custom DNS</div>
</li>
<li>
<div style="text-align:left;">Secure SSL server</div>
</li>
<li>
<div style="text-align:left;">PHP5 Support</div>
</li>
<li>
<div style="text-align:left;">Perl Support</div>
</li>
<li>
<div style="text-align:left;">Full Unix Shell</div>
</li>
<li>
<div style="text-align:left;">Ruby on Rails</div>
</li>
<li>
<div style="text-align:left;">CVS Repository</div>
</li>
<li>
<div style="text-align:left;">Access to raw log files</div>
</li>
<li>
<div style="text-align:left;">Jabber Chat server</div>
</li>
<li>
<div style="text-align:left;">24 hour support</div>
</li>
<li>
<div style="text-align:left;">97 day money back guarantee</div>
</li>
<li>
<div style="text-align:left;">The DreamHost forum access</div>
</li>
</ul>
<p style="text-align:left;">These are just a few of the many features you will be lucky to use when you sign up with DreamHost.  Don&#8217;t wait, take advantage of this great offer!!!</p>
<p style="text-align:center;"><strong><a href="http://www.dreamhost.com/r.cgi?115004" rel="nofollow">Get Your FREE Trial Offer NOW!</a></strong></p>
<p style="text-align:center;"><strong><a href="http://www.dreamhost.com/r.cgi?115004" rel="nofollow">CLICK HERE!!!</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Using Ruby Java Bindings on Dreamhost and Fill PDF Form with iText]]></title>
<link>http://pdfhacks.wordpress.com/2009/08/18/using-ruby-java-bindings-on-dreamhost-and-fill-pdf-form-with-itext/</link>
<pubDate>Mon, 17 Aug 2009 18:44:29 +0000</pubDate>
<dc:creator>rubypdf</dc:creator>
<guid>http://pdfhacks.wordpress.com/2009/08/18/using-ruby-java-bindings-on-dreamhost-and-fill-pdf-form-with-itext/</guid>
<description><![CDATA[I am familiar with iText , but not familiar with Ruby, I know Dreamhost supports Ruby on Rails(ROR),]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I am familiar with iText , but not familiar with Ruby, I know <a href="http://blog.rubypdf.com/2008/06/13/five-dreamhost-invitations/">Dreamhost</a> supports <strong>Ruby on Rails</strong>(<strong>ROR</strong>), but never have a chance to run a real application, though I have a <a href="http://blog.rubypdf.com/2008/06/13/five-dreamhost-invitations/">Dreamhost</a> space.</p>
<p>Getting rjb, also known as &#8220;Ruby Java Bindings&#8217; to work in a Dreamhost account can be somewhat problematic. Fortunately, it is also fairly straightforward. You just have to install all the dependencies in the user directory.</p>
<p>In my case, I was setting up a Rails Application that used the iText Java library to <strong>fill in PDF documents</strong> for user download. Of course, the server environment was not using Sun Java and the Java headers were not present, so <span style="font-family:Courier New;">gem install rjb</span> failed.  Joy.</p>
<p>The first course of action was to do a local install of Java.</p>
<p>Download <span style="font-family:Courier New;">jdk-6u7-linux-x64.bin</span> and <span style="font-family:Courier New;">jre-6u7-linux-x64.bin</span> from the Sun Java site. Then create an <span style="font-family:Courier New;">~/opt</span> directory and extract the JRE and JDK (you will need to <span style="font-family:Courier New;">chmod u+x</span> both files then call them from the command line).  Move the resulting folders to <span style="font-family:Courier New;">~/opt</span> .   I renamed the folders to<em> jdk</em> and <em>jre</em> for simplicity.</p>
<p>Now you ensure that user gems are enabled in cPanel.  Then add the following 3 lines to <span style="font-family:Courier New;">~/.bash_profile</span></p>
<p><span style="font-family:Courier New;">export JAVA_HOME=/home/username/opt/jdk</span><br />
<span style="font-family:Courier New;">export GEM_PATH=/home/username/ruby/gems</span><br />
<span style="font-family:Courier New;">export GEM_HOME=/home/username/ruby/gems</span></p>
<p>Run <span style="font-family:Courier New;">source ~/.bash_profile</span> to load the paths.</p>
<p>Now you can run <span style="font-family:Courier New;">gem install rjb</span> without any problems. You will likely have to re-install Rails and other gems because we will be telling our Rails app to load gems from the user directory. Just use the regular <span style="font-family:Courier New;">gem install <span style="font-family:Arial;">syntax.</span></span></p>
<p>Add the following 2 lines to your config/environment.rb at the top</p>
<p><span style="font-family:Courier New;">ENV['GEM_PATH']=&#8217;/home/username/ruby/gems&#8217;</span><br />
<span style="font-family:Courier New;">ENV['JAVA_HOME']=&#8217;/home/username/opt/jdk&#8217;</span></p>
<p>That&#8217;s pretty much it.</p>
<p>I will concede that these probably aren&#8217;t the best instructions, but this is the real meat of the solution. If you keep getting &#8220;no such file to load&#8221; errors, you will need to extract the gems to the vendor/plugins directory. <span style="font-family:Courier New;">cd RAILS_ROOT/vendor/plugins</span> and <span style="font-family:Courier New;">gem unpack gem_name</span> for each problematic gem.  I believe this is an issue with Passenger.</p>
<p>Please correct me if I am wrong about any of this, it was a very long day!</p>
<p>source: <a href="http://blog.patrick-morgan.net/2008/10/using-ruby-java-bindings-on-dreamhost.html">http://blog.patrick-morgan.net/2008/10/using-ruby-java-bindings-on-dreamhost.html</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[This blog is going away....]]></title>
<link>http://nicholasjamison.wordpress.com/2009/08/08/this-blog-is-going-away/</link>
<pubDate>Sun, 09 Aug 2009 00:14:37 +0000</pubDate>
<dc:creator>Nick Shoemaker</dc:creator>
<guid>http://nicholasjamison.wordpress.com/2009/08/08/this-blog-is-going-away/</guid>
<description><![CDATA[I&#8217;ll keep it up for a bit longer&#8230; but I am now hosting my own blog! check it out: nick5h]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;ll keep it up for a bit longer&#8230; but I am now hosting my own blog! check it out: <a title="My NEW blog!" href="http://nick5hoe.com">nick5hoe.com</a></p>
<p>I&#8217;ve transferred everything from here to there- see you on the other side!</p>
<p>~NjS</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cheap Hosting and Domain Registration]]></title>
<link>http://howicrackedthemarket.wordpress.com/2009/08/05/cheap-hosting-and-domain-registration/</link>
<pubDate>Wed, 05 Aug 2009 20:38:28 +0000</pubDate>
<dc:creator>Jordan</dc:creator>
<guid>http://howicrackedthemarket.wordpress.com/2009/08/05/cheap-hosting-and-domain-registration/</guid>
<description><![CDATA[A long time ago, when I just started with my online business, there weren&#8217;t that many choices ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A long time ago, when I just started with my online business, there weren&#8217;t that many choices of hosting companies<br />
to work with.<br />
The first company I used was <a title="Godaddy Web hosting" href="http://www.dpbolvw.net/3a74lnwtnvAEGBKBHJACBEJHKBH" target="_blank">Godaddy</a>.<br />
GoDaddy grew very big in the DotCom era, and are one of the most popular hosts until this time.<br />
This is no accident, as they provide one of the best most well rounded services in the world for domain owners.<br />
They provide hosting also, plus many many &#8220;bonus&#8221; features.<br />
I say &#8220;Bonus&#8221; just because they are <strong>not free</strong> like regular Bonuses, however they provide many extra services<br />
that other companies just don&#8217;t. So I see them as Bonus features.</p>
<p>After a while, when the DotCom bubble kinda blew up, and well, <strong>most of the yourname.com domains were<br />
no longer available</strong>, many other post-fixes came into the market (i.e .net .org .co.uk etc),<br />
as well as a new type of host &#8211; <span style="color:#008000;">Green</span> hosts.</p>
<p>With the environmental build up in the world, domain hosts such as <a title="DreamHost" href="http://dh.dtop10.com" target="_blank">DreamHost</a> realized that they too have to<br />
consider their customers feelings, and started promoting, as well as operating <a title="DreamHost Green Host" href="http://dh.dtop10.com">Green hosting</a>.<br />
Green hosting means that they use the minimum necessary energy to operate their Server farms,<br />
some hosts even donate to environmental organizations parts of their revenue &#8211; <strong>All in the name of<br />
customer satisfaction</strong>. Many people these days, like me,  consider this a very important attribute.</p>
<p><strong>However &#8211; the problem remained the same</strong> &#8211; Most of the yourname.com, or even anyshortname.com<br />
domains  are long since taken. <strong>One has to be very creative, very lucky, or settle for a long domain name<br />
that no one  could remember</strong>.</p>
<p style="text-align:left;"><strong>Then one company said &#8211; no more. That company is <a title="Global Domains International" href="http://mylistfrog.com/leap/clked.php?l=1401474081" target="_blank">Global Domains International</a>.</strong></p>
<p style="text-align:left;">In the web industry is it always hard to identify pioneers and the forward thinking people who can take<br />
a simple  concept and turn it into a big opportunity.  <a title="Global Domains International GDI" href="http://my.ws/duvash" target="_blank">Global Domains International</a> could be identified as a<br />
<strong>pioneering  company</strong> when it comes to offering domain registration services <strong>that could provide you<br />
with a steady income, in more than one way</strong>.<br />
<strong><span style="color:#008000;">At a time when the dot com domains have filled up and people are on the lookout for an alternative<br />
way to get  their businesses noticed on the internet, GDI has supplied that alternative</span>.</strong></p>
<p style="text-align:left;"><a title="Global Domains International GDI" href="http://my.ws/duvash" target="_blank">GDI</a> has <strong>locked down the entire .WS market</strong>, <strong>thus</strong> <strong>creating a full out Internet revolution</strong><br />
With a .WS address you  can stand out above the rest, and gain a completely new level of presence that is no longer<br />
possible with an obscure dot com address.<br />
<strong>Not only that</strong>, but GDI also provide you with all the services a host like Godaddy Supplies you with, plus<br />
the service you&#8217;d expect from hosts like the Green <a title="Dream Host Web Host Sale" href="http://dh.dtop10.com" target="_blank">DreamHost</a>. <strong>Personally it took me about 5 minutes</strong> on the<br />
clock to decide to move my domains from <a title="Godaddy" href="http://www.dpbolvw.net/3a74lnwtnvAEGBKBHJACBEJHKBH" target="_blank">GoDaddy</a> to them, and ofcourse get a<strong> .Ws domain on my own name</strong>.<br />
<span style="color:#008000;"><strong>Haven&#8217;t looked back since!</strong></span><br />
I get full hosting service, Total flexibility, SEO services, and all I need to concentrate on my business.<br />
Over time I kept on registering more domains, hey &#8211; The names are available, easy and short, why not use it?</p>
<p><strong>That&#8217;s what I recommend folks!</strong><br />
You see listed above my three most favorite hosting companies, and of course &#8211; The Host I chose at the end.<br />
<strong>The only thing wrong</strong> with the first two hosts is &#8211; You&#8217;ve guessed it &#8211; They CAN&#8217;T register .Ws names,<br />
therefore  they are still stuck with the same ever shrinking supply of Domain names.</p>
<p>Get your business it&#8217;s own .Ws Domain <a title="Join Global Domains International GDI" href="http://duvash.ws" target="_blank">Here</a>.</p>
<p>Cheers!<br />
<a href="http://duvash.ws"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Willy's New Wix]]></title>
<link>http://artthis.wordpress.com/2009/08/01/willys-new-wix/</link>
<pubDate>Sat, 01 Aug 2009 07:11:12 +0000</pubDate>
<dc:creator>WDT</dc:creator>
<guid>http://artthis.wordpress.com/2009/08/01/willys-new-wix/</guid>
<description><![CDATA[I finally ditched my old site with Dreamhost due to lack of programs to run it and forgetting all my]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I finally ditched my old site with Dreamhost due to lack of programs to run it and forgetting all my passwords, but decidedly still need a place to send people when they come-a-calling for examples of my refrigerator drawings.  So I decided that as long as I&#8217;m in school, the last thing I need is to be a &#8220;pro&#8221; and have a real deal site like before&#8230; becuase let&#8217;s face it, I wasn&#8217;t keeping up with it. I failed at the private artist&#8217;s homepage &#8220;test&#8221;aroni&#8230; and failed hard&#8230; much like testaroni, which can only be either a failed italian sports car brand of some sort or a dog testicle chef boyardee concontion.</p>
<p>On this bright and sunny rain-filled night, I finally put myself to work to create a simple online art portfolio to have this part of my online persona filled out and ready to never be seen, as is my fate given my unexcellent google rankings, sigh.</p>
<p>For your viewing pleasure, <a href="http://www.wix.com/WDTdesign/WDT" target="_blank">My newest online thing</a>.</p>
<p>I need to make more stuff, only one work in there is from the last year&#8230; wowza.</p>
<p>WDT</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wordpress Hosting, Who to Choose?]]></title>
<link>http://themehelp.wordpress.com/2009/07/16/wordpress-hosting-who-to-choose/</link>
<pubDate>Thu, 16 Jul 2009 23:10:48 +0000</pubDate>
<dc:creator>Rebecca</dc:creator>
<guid>http://themehelp.wordpress.com/2009/07/16/wordpress-hosting-who-to-choose/</guid>
<description><![CDATA[In combination of hosts that I have experience with first hand + what WordPress.org recommends, here]]></description>
<content:encoded><![CDATA[In combination of hosts that I have experience with first hand + what WordPress.org recommends, here]]></content:encoded>
</item>
<item>
<title><![CDATA[Episode 5: The Not So Lazy Days of Summer]]></title>
<link>http://cmedge.wordpress.com/2009/06/29/episode-5-the-not-so-lazy-days-of-summer/</link>
<pubDate>Mon, 29 Jun 2009 20:23:09 +0000</pubDate>
<dc:creator>henryjz</dc:creator>
<guid>http://cmedge.wordpress.com/2009/06/29/episode-5-the-not-so-lazy-days-of-summer/</guid>
<description><![CDATA[On this episode, we are talking about Jon and Kate, the death of Michael Jackson, and what to do abo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>On this episode, we are talking about Jon and Kate, the death of Michael Jackson, and what to do about events and volunteers during the summer.</p>
<p>Hosts for this episode: <a href="http://cmedge.org/who#zonio">Henry Zonio</a>, <a href="http://cmedge.org/who#luce">Sam Luce</a>, and <a href="http://cmedge.org/who#mcclain">Gina McClain</a>.</p>
<p>Listen now</p>
<p><span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://wordpress.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://wordpress.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fwww.elementalcm.com%2Fwp-content%2Fpodcast%2Fep05_cmedge_jun09.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /></object></p></span></p>
<p>Or you can <a href="http://www.elementalcm.com/wp-content/podcast/ep05_cmedge_jun09.mp3">download it</a>.</p>
<p><strong>Episode Table of Contents (approximate times to go to)</strong></p>
<p>0 minute &#8211; Intro<br />
3 minute &#8211; In the News: Jon and Kate divorce announcement and Michael Jackson passing away<br />
14 minute &#8211; Summer Events and Volunteers Discussion<br />
43 minute &#8211; Resource picks for the month (<a href="http://www.evernote.com" target="_blank">Evernote</a>, <a href="http://www.goodreads.com" target="_blank">GoodReads</a>, and <a href="http://www.dreamhost.com" target="_blank">DreamHost</a>)</p>
<p>Come back after you listen and leave your comments!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New Blog]]></title>
<link>http://timlloydphoto.wordpress.com/2009/06/17/new-blog/</link>
<pubDate>Wed, 17 Jun 2009 11:36:55 +0000</pubDate>
<dc:creator>timlloydphoto</dc:creator>
<guid>http://timlloydphoto.wordpress.com/2009/06/17/new-blog/</guid>
<description><![CDATA[My current hosting company has just expired so i’ve taken the trip across to dreamhost who will look]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="margin-top:10px;margin-bottom:10px;padding-top:0;padding-bottom:0;">My current hosting company has just expired so i’ve taken the trip across to <a href="http://www.dreamhost.com" target="_blank">dreamhost</a> who will look after my hosting needs from now on. They give me a lot more freedom than my previous host so the first thing i’ve done is to get my blog up-to-date. I’ll cease to use this blog as of today and all updates will come through to my new site. If you have had this blog delivered to your email or a rss reader <a href="http://www.youtube.com/watch?v=0klgLsSxGsU" target="_blank">(whats this?)</a> then just visit the new site and subscribe again. It wont take you 2 minutes.</p>
<p style="margin-top:10px;margin-bottom:10px;padding-top:0;padding-bottom:0;"><a href="http://www.timlloydphoto.com/blog"><img class="aligncenter size-full wp-image-576" title="Picture 6" src="http://timlloydphoto.wordpress.com/files/2009/06/picture-6.png" alt="Picture 6" width="500" height="424" /></a></p>
<p style="margin-top:10px;margin-bottom:10px;padding-top:0;padding-bottom:0;">
<p style="margin-top:10px;margin-bottom:10px;padding-top:0;padding-bottom:0;">This latest blog has been designed by myself and i feel its good to go out live now. If you see anything you don’t like or have any suggestions for improvements then just let me know, i’d be happy to hear them. Hopefully it should be looking nice and slick very shortly. I’m currently designing a new website for this blog to compliment which i’ll let you know about as soon as its ready to drop.</p>
<p style="margin-top:10px;margin-bottom:10px;padding-top:0;padding-bottom:0;">Hope to see you over on the new blog <a href="http://www.timlloydphoto.com/blog" target="_blank">www.timlloydphoto.com/blog</a></p>
<p style="margin-top:10px;margin-bottom:10px;padding-top:0;padding-bottom:0;">Cheers for following this one,</p>
<p style="margin-top:10px;margin-bottom:10px;padding-top:0;padding-bottom:0;">Tim.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tidak boleh Install WP MU di Dreamhost (shared hosting)]]></title>
<link>http://learnarabic.wordpress.com/2009/06/17/tidak-boleh-install-wp-mu-di-dreamhost-shared-hosting/</link>
<pubDate>Wed, 17 Jun 2009 06:07:35 +0000</pubDate>
<dc:creator>learnarabic</dc:creator>
<guid>http://learnarabic.wordpress.com/2009/06/17/tidak-boleh-install-wp-mu-di-dreamhost-shared-hosting/</guid>
<description><![CDATA[Ternyata tidak boleh install WP di Dreamhost Shared Hosting katanya ga kuat harus Install di Dreamho]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ternyata tidak boleh install WP di Dreamhost Shared Hosting katanya ga kuat harus Install di Dreamhost PS.</p>
<p>Info Selengkapnya di </p>
<p><a title="http://wiki.dreamhost.com/WordPress_MU" href="http://wiki.dreamhost.com/WordPress_MU">http://wiki.dreamhost.com/WordPress_MU</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cheap Reliable Hosting - HUGE $50 Discount!]]></title>
<link>http://andrewworboys.wordpress.com/2009/06/13/cheap-reliable-hosting/</link>
<pubDate>Fri, 12 Jun 2009 20:03:58 +0000</pubDate>
<dc:creator>andrewworboys</dc:creator>
<guid>http://andrewworboys.wordpress.com/2009/06/13/cheap-reliable-hosting/</guid>
<description><![CDATA[SPECIAL PROMO: Are you looking for affordable and reliable web hosting? I&#8217;ve been hosting 100+]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>SPECIAL PROMO:</p>
<p>Are you looking for affordable and reliable web hosting?</p>
<p>I&#8217;ve been hosting 100+ domains for the last 10 years at Dreamhost. Pricing is ridiculously affordable: $10.95 if you pay monthly, $9.95 a month if you pay yearly and it gets cheaper with other packages, all comes with:</p>
<p>FREE .com domain<br />
UNLIMITED BANDWIDTH<br />
UNLIMITED STORAGE<br />
HOST UNLIMITED Domains and POP accounts<br />
One-Click Installs for WordPress, Joomla, Drupal plus more (meaning you just click one button to install with little waiting time)<br />
Plus so much more features!</p>
<p>I&#8217;ve just created a promo code for you guys that&#8217;ll give you $50 discount for all packages! There&#8217;s normally a $49.95 setup fee for the entry level (monthly) package but if you use my promo code: <strong>WORBOYS</strong> or <strong>worboys</strong> that setup fee means it&#8217;ll be waived and even a better deal for yearly payment!</p>
<p><a rel="nofollow" href="http://www.dreamhost.com/r.cgi?185354" target="_blank"><span>http://www.dreamhost.com/r</span>.cgi?185354</a></p>
<p>P.S. You can host your clients&#8217; sites with no extra charge!!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A Call For Help]]></title>
<link>http://rockinthestream.wordpress.com/2009/06/04/acallforhelp/</link>
<pubDate>Thu, 04 Jun 2009 16:11:45 +0000</pubDate>
<dc:creator>Aaron Hecker</dc:creator>
<guid>http://rockinthestream.wordpress.com/2009/06/04/acallforhelp/</guid>
<description><![CDATA[Last night I posted that my website, http://ahecker.com would be up and running by 9:00 this morning]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Last night I posted that my website, http://ahecker.com would be up and running by 9:00 this morning. I&#8217;ll save you the trouble of going there &#8211; it doesn&#8217;t work yet. The works perfectly fine when tested locally, but when I put the files up through FTP (I used CyberDuck), the links were all broken. I have double checked everything and it seems to be fine, but the results are still the same.</p>
<p>So I am asking for help. My website is being hosted through DreamHost, which does not have a lot of customer support, or at least any that I can find about this topic. If anyone has a website through DreamHost, or knows what I might be doing wrong in the FTP process, please leave a comment here or email me at toledo8904@gmail.com . Or if you just know someone I should talk to about it, drop me a comment or email.</p>
<p>I spent a lot of time working on this site, and I don&#8217;t want it all to be for nothing. Thank you for any help you may be able to give, and I will be back with an update and a story by the end of the weekend.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DreamHost offer Trac via One-Click Install]]></title>
<link>http://furryface.wordpress.com/2009/05/30/dreamhost-offer-trac-via-one-click-install/</link>
<pubDate>Sat, 30 May 2009 02:41:23 +0000</pubDate>
<dc:creator>furryface</dc:creator>
<guid>http://furryface.wordpress.com/2009/05/30/dreamhost-offer-trac-via-one-click-install/</guid>
<description><![CDATA[It&#8217;s been a long time coming, but we are finally (almost) there So far only the newer servers ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>It&#8217;s been a long time coming, but we are finally (almost) there <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So far only the newer servers have it available, which I&#8217;m not on yet <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   A friend is though, the smug git!</p>
<p>Roll on the server upgrades I say.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
