<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Red Frog Blog _ AWP _ Web and Graphic Design, Consulting and Marketing Solutions &#187; DigiShop</title>
	<atom:link href="http://blog.awpny.com/category/digishop/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.awpny.com</link>
	<description>"The frog can show you how to grow by making intelligent use of whatever opportunity is available." - medicine wheel</description>
	<lastBuildDate>Tue, 10 Nov 2009 16:13:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tutorial: Moving DigiShop to a New Server</title>
		<link>http://blog.awpny.com/2008/03/tutorial-moving-digishop-to-a-new-server/</link>
		<comments>http://blog.awpny.com/2008/03/tutorial-moving-digishop-to-a-new-server/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 23:49:25 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[BlogTorials]]></category>
		<category><![CDATA[DigiShop]]></category>

		<guid isPermaLink="false">http://www.ancientwisdompro.com/blog/archives/201</guid>
		<description><![CDATA[I recently had the task of moving an installation of DigiShop from one server to another. Here&#8217;s how I did it, in ten easy steps:
 1) Download all the DigiShop files.
Also download any other site files that need to move to the new server to a local copy on your computer. I found the easiest [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had the task of moving an installation of <a href="http://digishop.sumeffect.com" title="DigiShop website..." target="_blank">DigiShop</a> from one server to another. Here&#8217;s how I did it, in ten easy steps:</p>
<p><span id="more-201"></span> <strong>1) Download all the DigiShop files.</strong></p>
<p>Also download any other site files that need to move to the new server to a local copy on your computer. I found the easiest way to accomplish this is to SSH to the server, zip up the store directory and download the single tar.gz file. Here&#8217;s how:</p>
<ol>
<li>SSH to the server</li>
<li>cd to the directory that holds the folder you want to compress</li>
<li>at the command line type: tar cvf &#8211; <em>directory to compress</em> | gzip &gt; <em>newfilename</em>.tar.gz (obviously, replace &#8220;directory to compress&#8221; with the name of the directory you want to compress and &#8220;newfilename&#8221; with the name you want to call the archive.)</li>
<li>this will place the new archived file in the current directory.</li>
<li>Then use a program like Transmit to SFTP to the server and download the archive to your computer. While you&#8217;re in there, you can use the secure copy command (scp) to send the archive directly to the new server.</li>
</ol>
<p><strong>2) Prep the new store database.</strong></p>
<p>Use phpMyAdmin or another MySQL utility to create a new database and database user for DigiShop. Write down the database name and the database user name and password.</p>
<p><strong>3) Update these DigiShop files with the new file paths and database information.<br />
</strong></p>
<blockquote><p>conf/config.app.bootstrap.ini.php<br />
conf/config.app.root.ini.php<br />
conf/gatewayConfiguration.inc.php<br />
conf/config.app.settings.ini.php<br />
secure/conf/config.app.root.ini.php<br />
secure/webapp.php<br />
lib/framework/config.framework.bootstrap.ini.php</p></blockquote>
<p>Extract your local copy of the tar.gz file to edit these files. But save a copy of the archive for uploading to the sever in the next step.</p>
<p><strong>4) Upload the updated files to the new server.</strong></p>
<p>Use SFTP to send the tar.gz archive to the new server. Then login to the server command line via SSH and extract the archive file (gunzip <em>yourachive</em>.tar.gz then tar -xvf <em>yourarchive</em>.tar). IMPORTANT: you may need reset the permissions on the unarchived files. On Linux-based systems use the chown command to reset the file ownership and permissions (chown -R <em>username:groupname directory</em>). Check the permissions for all the files and directories that DigiShop likes to have write-able (chmod 777). Now switch back to SFTP and upload just the files you updated in the last step. Overwrite the files on the server with these updated versions.</p>
<p><strong>5) Close the old store.</strong></p>
<p>If you have a recent version of DigiShop you&#8217;re in luck, because there&#8217;s a little check-box that will take the store offline for you. It&#8217;s in the DigiShop admin control panel under Settings &gt; General Settings.</p>
<p>If you don&#8217;t have this option (I didn&#8217;t), the easiest way to close up the store is to make a static version of the cart.php page, and put a &#8220;store closed&#8221; message on that page. Simply load up cart.php in a browser, view the source, and copy-paste the code into a text editor (I use <a href="http://www.barebones.com/products/textwrangler/index.shtml" title="Check out TextWrangler..." target="_blank">TextWrangler</a>). Then edit the code until you have a sufficiently formatted store closed message. SFTP to your site and rename cart.php to cart2.php (or whatever), and upload your &#8220;static&#8221; version of cart.php.</p>
<p><strong>6) Download the DigiShop database.</strong></p>
<p>Export your DigiShop MySQL database via phpMyAdmin, or another utility so that you have a .sql file containing the structure and contents of the DigiShop database.</p>
<p><strong>7) Upload and update the DigiShop database.</strong></p>
<p>Using phpMyAdmin or other MySQL utility, import the .sql file that you made during the last step to the database on the new server. IMPORTANT: Now you have to update several entries in the ds_settings table in the new database to match the settings that you used in the config.app.settings.ini.php file.</p>
<p><strong>8 ) Transfer the SSL certificate to the new server.</strong></p>
<p>This can be a tricky process. You should have a plan for this before you even start on Step 1.</p>
<p><strong>9) Run some tests on the new store.</strong></p>
<p>Try adding some items to your cart and completing a test transaction on the new server. Don&#8217;t forget to make sure the admin control panel is working properly.</p>
<p><strong>10) Switch the domiain&#8217;s DNS to point to the new server.</strong></p>
<p>You&#8217;re back open for business!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.awpny.com/2008/03/tutorial-moving-digishop-to-a-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DigiShop and Search Engine Optimization</title>
		<link>http://blog.awpny.com/2008/02/digishop-and-search-engine-optimization/</link>
		<comments>http://blog.awpny.com/2008/02/digishop-and-search-engine-optimization/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 17:46:42 +0000</pubDate>
		<dc:creator>casey</dc:creator>
				<category><![CDATA[Casey's Corner]]></category>
		<category><![CDATA[DigiShop]]></category>

		<guid isPermaLink="false">http://www.ancientwisdompro.com/blog/archives/190</guid>
		<description><![CDATA[You may or may not be aware of a piece of eCommerce software called DigiShop.  It&#8217;s pretty much the solution we use here at AWP for our eCommerce clients. There are some nice benefits to DigiShop: you can fiddle with the PHP code to your heart&#8217;s content, you buy the software once, and it [...]]]></description>
			<content:encoded><![CDATA[<p>You may or may not be aware of a <a href="http://digishop.sumeffect.com/">piece of eCommerce software called DigiShop</a>.  It&#8217;s pretty much the solution we use here at AWP for our eCommerce clients. There are some nice benefits to DigiShop: you can fiddle with the PHP code to your heart&#8217;s content, you buy the software once, and it can integrate nicely enough with CakePHP.  The company, SumEffect, is small enough that you can always reach someone on the phone, and if you do that enough, they remember you.</p>
<p>However, there are some issues with this piece of software that you need to watch out for.</p>
<p>Here at the shop, we just finished up this great new eCommerce site for a new business here in <a href="http://www.ithacadirectory.com">Ithaca</a>, called <a href="http://www.gardengatedelivery.com">Garden Gate Delivery</a>.  It&#8217;s a grocery-delivery service that provides <strong>only</strong> local food.  It&#8217;s really awesome, actually, and besides the fact that we did the logo and website, we are genuinely excited about the business, and want it to flourish.</p>
<p>Imagine our shock, then, when a week after we launched the site, it disappeared from the Google Search results.  Yep.  What was once the top hit under &#8220;Garden Gate Ithaca&#8221; was nowhere to be found.  Searching &#8220;Garden Gate Delivery&#8221; would list the actual website at the bottom of the 1st or 2nd page, depending on the user.  The Google Local Business entry was gone.  Luckily, <a href="http://www.ithacadirectory.com/businesses/view/4564">Garden Gate&#8217;s entry in the Ithaca Directory</a> was still near the top of the search listings, but still, what happened???</p>
<p>As it turns out, Search Engine &#8220;Optimization.&#8221;  </p>
<p>See, DigiShop has a function called just that in their administration back-end.  You click it, it processes for a few minutes, and then it&#8217;s done.  There&#8217;s no description as to what, exactly the SEO function does in Digishop.  I assumed it optimized some page titles and keywords for meta tags, etc.  But after Google dropped Garden Gate, we took a closer look.  It looks like the DigiShop Search Engine Optimization consists of nothing more than <em>writing out static pages that duplicate every page in the store</em>.  Excuse me?  That&#8217;s the optimization???  Maybe this made a difference five years ago, when not all search engines could parse dynamically generated pages, but these days every modern search engine (which is to say, all of them) easily do that.  Also, they don&#8217;t look too kindly on new websites that contain exact duplicates of each page.  They see it as an attempt to drum up keyword frequencies.  In fact, that sort of action has a <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=66359">highly negative effect on your search ranking</a>.</p>
<p>So that&#8217;s probably why Google dropped Garden Gate.  We deleted all the duplicate content and submitted a <a href="https://www.google.com/webmasters/tools/reconsideration?hl=en&#038;pli=1">Request for Reconsideration</a> to Google about our site&#8217;s ranking.  This may take weeks to get this all sorted out.  </p>
<p>So let this be a warning to anyone who uses DigiShop.  The search engine optimization feature effectively does just the opposite.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.awpny.com/2008/02/digishop-and-search-engine-optimization/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
