<?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>Magento Help - osCommerce Help &#187; Web Development Help &#8211; General</title>
	<atom:link href="http://www.imagedia.com/category/web-development-help-general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imagedia.com</link>
	<description>Imagedia - Maximizing and developing ecommerce applications</description>
	<lastBuildDate>Sun, 18 Jul 2010 17:25:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Change File / Folder Owner With SSH</title>
		<link>http://www.imagedia.com/2010/07/change-file-folder-owner-with-ssh/</link>
		<comments>http://www.imagedia.com/2010/07/change-file-folder-owner-with-ssh/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:46:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development Help - General]]></category>

		<guid isPermaLink="false">http://www.imagedia.com/?p=479</guid>
		<description><![CDATA[<p>After doing a transfer of files for a website using SSH, if you&#8217;ve transferred from one domain to another, you&#8217;ll probably run into a file or folder ownership problem. Using SSH, this is actually easy to fix.</p>
<p>Log in to your server using SSH</p>
<p>Change to the directory you need to change permissions or ownership.</p>
<p>chown -R correctuser [...]]]></description>
			<content:encoded><![CDATA[<p>After doing a transfer of files for a website using SSH, if you&#8217;ve transferred from one domain to another, you&#8217;ll probably run into a file or folder ownership problem. Using SSH, this is actually easy to fix.</p>
<p>Log in to your server using SSH</p>
<p>Change to the directory you need to change permissions or ownership.</p>
<p>chown -R correctuser *</p>
<p>correctuser is the name of the owner of this website</p>
<p>That&#8217;s it. You&#8217;ve now changed the owner of files and folders in that directory using SSH.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imagedia.com/2010/07/change-file-folder-owner-with-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Way to Move Website Via SSH</title>
		<link>http://www.imagedia.com/2010/07/another-way-to-move-website-via-ssh/</link>
		<comments>http://www.imagedia.com/2010/07/another-way-to-move-website-via-ssh/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 22:24:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development Help - General]]></category>

		<guid isPermaLink="false">http://www.imagedia.com/?p=477</guid>
		<description><![CDATA[<p>Very recently, we published an article about moving entire website from one server to another via SSH. Sometimes those commands give us problems with the resulting transfer, so we found this alternate method that seems to work perfectly.</p>
<p>Keep in mind, you MUST perform separate actions for copying or moving databases as well as adding email [...]]]></description>
			<content:encoded><![CDATA[<p>Very recently, we published an article about moving entire website from one server to another via SSH. Sometimes those commands give us problems with the resulting transfer, so we found this alternate method that seems to work perfectly.</p>
<p>Keep in mind, you MUST perform separate actions for copying or moving databases as well as adding email addresses.</p>
<p>1.	First log in to your old server via SSH. If necessary, you may need to login as a &#8220;super user&#8221;.</p>
<p>2.	Change directories to the directory where your website resides.</p>
<p>3.	Type in the following code:</p>
<p>4.	tar -cpzf backup.tar.gz *</p>
<p>6. This creates a tar file of all files in that directory.</p>
<p>7.	Login to your new server.</p>
<p>8.	Navigate to the directory where you want to place the website you are moving.</p>
<p>7.	Type in:</p>
<p>8.	wget yourdomain.com/backup.tar.gz</p>
<p>9. (Of course, yourdomain.com is replaced with your actual domain name). This transfers the tar file from the old server to the new server.</p>
<p>10. Once the file is transfered, type:</p>
<p>10.	tar -xzf backup.tar.gz</p>
<p>11.	This will unpack the tar file onto the new server in the directory that you placed it.</p>
<p>That&#8217;s it, another way to move websites using SSH.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imagedia.com/2010/07/another-way-to-move-website-via-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Move A Website From One Server To Another Using SSH</title>
		<link>http://www.imagedia.com/2010/07/how-to-move-a-website-from-one-server-to-another-using-ssh/</link>
		<comments>http://www.imagedia.com/2010/07/how-to-move-a-website-from-one-server-to-another-using-ssh/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:19:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development Help - General]]></category>

		<guid isPermaLink="false">http://www.imagedia.com/?p=474</guid>
		<description><![CDATA[<p>If you ever have the need to move or migrate complete websites from one server to another, you know what a hassle it is using FTP. For one, it takes a long time, especially for larger sites, plus most of the time, we lose connection and our FTP program stalls, meaning we have to start [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever have the need to move or migrate complete websites from one server to another, you know what a hassle it is using FTP. For one, it takes a long time, especially for larger sites, plus most of the time, we lose connection and our FTP program stalls, meaning we have to start all over again. So here&#8217;s how to do it using SSH /Telnet.</p>
<ol>
<li>First log in to your old server via SSH. If necessary, you may need to login as a &#8220;super user&#8221;.</li>
<li>Change directories to the directory where your website resides.</li>
<li>Type in the following code:</li>
<li>tar -cvf sitepack.tar ./ This creates a tar file of all files in that directory.</li>
<li>Login to your new server.</li>
<li>Navigate to the directory where you want to place the website you are moving.</li>
<li>Type in:</li>
<li>wget yourdomain.com/sitepack.tar (Of course, yourdomain.com is replaced with your actual domain name). This transfers the tar file from the old server to the new server.</li>
<li>Type:</li>
<li>tar -xvf sitepack.tar</li>
<li>This will unpack the tar file onto the new server in the directory that you placed it.</li>
</ol>
<p>There you go. Within seconds you have moved all your site files from one server to another using SSH, which makes migrating a website as easy as ever.</p>
<p>Keep in mind, you MUST perform separate actions for copying or moving databases as well as adding email addresses.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imagedia.com/2010/07/how-to-move-a-website-from-one-server-to-another-using-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternate or Different Backgrounds Using CSS</title>
		<link>http://www.imagedia.com/2010/03/alternate-or-different-backgrounds-using-css/</link>
		<comments>http://www.imagedia.com/2010/03/alternate-or-different-backgrounds-using-css/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 08:36:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development Help - General]]></category>

		<guid isPermaLink="false">http://www.imagedia.com/?p=389</guid>
		<description><![CDATA[<p>Ever want to have different backgrounds for different pages? Here&#8217;s the way we suggest:</p>
<p>Using your &#60;body&#62; tag on your hrml page, add an id tag. Now it might look like this:</p>
<p>&#60;body id=&#8221;page_2&#8243;&#62;</p>
<p>In your CSS file, add</p>
<p>.body#page_2 {</p>
<p>your parameters and settings</p>
<p>}</p>
<p>Thats it!</p>
]]></description>
			<content:encoded><![CDATA[<p>Ever want to have different backgrounds for different pages? Here&#8217;s the way we suggest:</p>
<p>Using your &lt;body&gt; tag on your hrml page, add an id tag. Now it might look like this:</p>
<p>&lt;body id=&#8221;page_2&#8243;&gt;</p>
<p>In your CSS file, add</p>
<p>.body#page_2 {</p>
<p>your parameters and settings</p>
<p>}</p>
<p>Thats it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imagedia.com/2010/03/alternate-or-different-backgrounds-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Park City Real Estate Website and IDX Integration</title>
		<link>http://www.imagedia.com/2010/03/park-city-real-estate-website-and-idx-integration/</link>
		<comments>http://www.imagedia.com/2010/03/park-city-real-estate-website-and-idx-integration/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 23:19:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development Help - General]]></category>

		<guid isPermaLink="false">http://www.imagedia.com/?p=378</guid>
		<description><![CDATA[<p>If you&#8217;ve never done any work on a real estate website, I have to say, you may want to think about it again. This is one we&#8217;ve been involved in developing for a Park City Utah Real Estate Agent. The real estate market is extremely guarded by the companies that specialize in real estate websites. [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve never done any work on a <a href="http://www.insideparkcityrealestate.com/" target="_blank">real estate website</a>, I have to say, you may want to think about it again. This is one we&#8217;ve been involved in developing for a <strong><a href="http://www.insideparkcityrealestate.com/" target="_blank">Park City Utah Real Estate Agent</a></strong>. The <strong>real estate market</strong> is extremely guarded by the companies that specialize in real estate websites. It&#8217;s amazing what some of these companies charge for <strong>real estate websites</strong>, even though it&#8217;s not rocket science. The biggest hurdle is <strong>getting an IDX or RETS feed on the website</strong>. Most companies that provide an IDX solution apparently think there code is gold, and apparently it is. We&#8217;ve talked with some of these companies that want $350.00 / month just to provide the software that serves up the data feed, and they require you to host your site on their server since they don&#8217;t want anyone stealing their code. Then, there&#8217;s the frameset method, which is just the other companies website framed into your website, therefore giving them all the benefits of SEO, while getting nothing for the hosts <strong>real estate website</strong>.</p>
<p>I know I sound like I&#8217;m ranting and I suppose I am. If anyone out there knows of a good solution for <strong>IDX feeds for Real Estate Websites</strong>, feel free to add your comments here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imagedia.com/2010/03/park-city-real-estate-website-and-idx-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Import a MYSQL Database using SSH</title>
		<link>http://www.imagedia.com/2010/02/how-to-import-a-mysql-database-using-ssh/</link>
		<comments>http://www.imagedia.com/2010/02/how-to-import-a-mysql-database-using-ssh/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 01:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development Help - General]]></category>

		<guid isPermaLink="false">http://www.imagedia.com/?p=349</guid>
		<description><![CDATA[<p>Using SSH is a much more efficient way of importing a large MYSQL database than trying to use phpMyadmin. But if you&#8217;re not used to using SSH / Telnet, it can be a bit awkward.</p>
<p>Here are full and easy instructions on how to import a mysql database using SSH / TELNET.</p>

Use FTP to transfer your [...]]]></description>
			<content:encoded><![CDATA[<p>Using SSH is a much more efficient way of importing a large MYSQL database than trying to use phpMyadmin. But if you&#8217;re not used to using SSH / Telnet, it can be a bit awkward.</p>
<p>Here are full and easy instructions on <strong>how to import a mysql database using SSH / TELNET.</strong></p>
<ol>
<li>Use FTP to transfer your MySQL database to your server</li>
<li>Create a remote connection using your SSH program to your server</li>
<li>Navigate to the directory where you uploaded your MySQL database</li>
<li>Enter this command: mysql -u username -p -h servername data-base-name &lt; data.sql</li>
<li>The system will prompt you for the database password</li>
<li>Enter the password</li>
<li>You&#8217;re done.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.imagedia.com/2010/02/how-to-import-a-mysql-database-using-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add pop-up window in Dreamweaver</title>
		<link>http://www.imagedia.com/2009/09/add-pop-up-window-in-dreamweaver/</link>
		<comments>http://www.imagedia.com/2009/09/add-pop-up-window-in-dreamweaver/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 19:33:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development Help - General]]></category>

		<guid isPermaLink="false">http://www.imagedia.com/?p=186</guid>
		<description><![CDATA[<p>Instructions
Things You&#8217;ll Need:
		Dreamweaver
	.	Step 1</p>
<p>Start Dreamweaver. Open a new blank document by selecting &#8220;HTML&#8221; in the &#8220;New&#8221; category on the introduction splash screen.
	.	Step 2</p>
<p>Type the word &#8220;Link&#8221; or some other text so you can test out the pop-up window onto your new blank HTML document and select it when you are finished.
	.	Step 3</p>
<p>Choose the &#8220;Window&#8221; menu, [...]]]></description>
			<content:encoded><![CDATA[<p>Instructions<br />
Things You&#8217;ll Need:<br />
		Dreamweaver<br />
	.	Step 1</p>
<p>Start Dreamweaver. Open a new blank document by selecting &#8220;HTML&#8221; in the &#8220;New&#8221; category on the introduction splash screen.<br />
	.	Step 2</p>
<p>Type the word &#8220;Link&#8221; or some other text so you can test out the pop-up window onto your new blank HTML document and select it when you are finished.<br />
	.	Step 3</p>
<p>Choose the &#8220;Window&#8221; menu, and then &#8220;Behaviors&#8221; to bring up the Behaviors panel.<br />
	.	Step 4</p>
<p>Click on the &#8220;+&#8221; symbol and then choose &#8220;Open Browser Window&#8221; to view the Open Browser Window pop-up properties. Here, you can set the specific properties you would like to apply to your pop-up window.<br />
	.	Step 5</p>
<p>Key in, copy and paste or browse to input the URL you wish the visitor to be directed to when he clicks on the word &#8220;Link&#8221; in your document.<br />
	.	Step 6</p>
<p>Specify the width and height of the pop-up, as well as any attributes you want the pop-up to contain such as a toolbar, menu bar, status bar, scrollbars or resize handles and click &#8220;OK.&#8221;<br />
	.	Step 7</p>
<p>Select &#8220;onClick&#8221; from the Events column in the Behaviors panel to set the pop-up window to occur when the word &#8220;Link&#8221; is clicked.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imagedia.com/2009/09/add-pop-up-window-in-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
