<?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>Help4Flirts &#187; Web hosting</title>
	<atom:link href="http://help4flirts.com/category/web-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://help4flirts.com</link>
	<description>HTML tutorials for Niteflirt and other stuff</description>
	<lastBuildDate>Thu, 05 Apr 2012 17:25:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Uploading photos, videos, and other files</title>
		<link>http://help4flirts.com/2010/11/23/uploading-photos-videos-and-other-files/</link>
		<comments>http://help4flirts.com/2010/11/23/uploading-photos-videos-and-other-files/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 06:59:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[hosting your own photos]]></category>
		<category><![CDATA[uploading files]]></category>
		<category><![CDATA[uploading photos]]></category>
		<category><![CDATA[uploading videos]]></category>

		<guid isPermaLink="false">http://help4flirts.com/?p=666</guid>
		<description><![CDATA[The issue most people have with uploading photos is that they are used to using a photo-uploading site like photobucket. You visit an account page in your browser, you click an &#8220;uploader&#8221; button to select files, it uploads, and then it gives you the URL to access your photo. When you upload through FTP, it [...]]]></description>
			<content:encoded><![CDATA[<p>The issue most people have with uploading photos is that they are used to using a photo-uploading site like photobucket. You visit an account page in your browser, you click an &#8220;uploader&#8221; button to select files, it uploads, and then it gives you the URL to access your photo. </p>
<p>When you upload through FTP, it is actually simpler, because what you are doing is just putting the photos where you want them. You know where you put them, or at least you will after you get the hang of it, so you don&#8217;t have to be given a code.</p>
<p>Here you are looking at your domain on your server. The domain is selected, so you can see all the folders and files within it. What you want to do is right-click in the bottom frame, select Create Directory, and name the new directory photos. Then right click again, create a new directory, and name it videos. I am using lower case letters intentionally. It can get confusing and easy to mess up if you mix them, so most people just use lower-case.</p>
<p><img src="/images/hosting/uploading1.gif"></p>
<p>It will look like this.</p>
<p><img src="/images/hosting/uploading2.gif"></p>
<p>Now click on the photos directory to select it. The contents will display below. It is empty. </p>
<p><img src="/images/hosting/uploading3.gif"></p>
<p>We want to put an index page in there. Go to the domain directory on your computer where you put the blank index page you created in Notepad yesterday.</p>
<p><a href="/images/hosting/uploading4.gif"><img src="/images/hosting/uploading4_tn.gif"></a></p>
<p>Upload it into your empty photos folder.</p>
<p><a href="/images/hosting/uploading5.gif"><img src="/images/hosting/uploading5_tn.gif"></a></p>
<p>Do the same for your videos folder.</p>
<p>Now, let&#8217;s view that index page. How do we know what its URL is? Well, remember in a previous post where you learned that &#8220;Remote site:&#8221; is the directory you are in.</p>
<p><img src="/images/hosting/uploading6.gif"></p>
<p>In this case the directory is displayed as </p>
<p>&#8216;/example.help4flirts.com/photos&#8217;</p>
<p>Remember a url has to start with &#8216;http://&#8217; to work. So we will have to add </p>
<p>&#8216;http:/&#8217; + &#8216;/example.help4flirts.com/photos&#8217; </p>
<p>to get </p>
<p>&#8216;http://example.help4flirts.com/photos&#8217; </p>
<p>Do that with yours. Copy it into your browser and see what you get. If you have done everything right, you should get a blank page. If you get an error page, check to make sure the url starts with &#8216;http://&#8217;, two slashes, not one or 3. Start by viewing your domain, then add your /photo folder to it. The reason you see that blank page is because the browser always looks for an index page in a directory, if you did not tell it which file to look for. </p>
<p>Now view your videos index page in the same way.</p>
<p><img src="/images/hosting/uploading7.gif"></p>
<p>You will also view your index.html pages in your photo and video directories by adding them to the end of the folder url. So if the folder is </p>
<p>&#8216;http://examples.help4flirts.com/photos&#8217;</p>
<p>and we want to add </p>
<p>&#8216;index.html&#8217; </p>
<p>to it, we just add them. But we have to put a slash between the folder and the file to show your browser that the folder holds the file.</p>
<p>&#8216;http://examples.help4flirts.com/photos&#8217; + &#8216;/&#8217; + &#8216;index.html&#8217;<br />
or<br />
&#8216;http://examples.help4flirts.com/photos/index.html&#8217;</p>
<p>It&#8217;s time to put a photo in my photo folder. I of course have some photos on my computer. Before you look below the screenshot, what is the photo URL? Check to verify by copying it into the address bar at the top of the page and viewing it.</p>
<p><img src="/images/hosting/uploading8.gif"></p>
<p>The URL of the photo is </p>
<p>http://examples.help4flirts.com/photos/img0.jpg</p>
<p>I have put a video in the video folder. What is the video URL?</p>
<p><img src="/images/hosting/uploading9.gif"></p>
<p>The URL of the video is </p>
<p>http://examples.help4flirts.com/videos/video.avi</p>
<p>One last example. What is the photo URL?</p>
<p><img src="/images/hosting/uploading10.gif"></p>
<p>http://examples.help4flirts.com/photos/photo-sets/photos.jpg</p>
<p>When naming files or folders for the web, you should never use blank spaces. Use hyphens, underscores, or leave out the spaces.</p>
<p>Valid filenames: my_photo.jpg, my-photo.jpg, myphoto.jpg<br />
Invalid filename: my photo.jpg</p>
<p>One last thing, how do you use the image? I have a code generator, but if you got through this, you are ready to do it yourself. </p>
<p>HTML tags start with a &#8216;&lt;&#8217; and end with a &#8216;&gt;&#8217;. The image tag contains an &#8216;img src=&#8217; which stands for &#8216;image, source equals&#8217;. That is telling the browser that the URL is next. Put the URL in quotes and here is the link for my first image:</p>
<p>&lt;img src=&quot;http://examples.help4flirts.com/photos/img0.jpg&quot;&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://help4flirts.com/2010/11/23/uploading-photos-videos-and-other-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://examples.help4flirts.com/videos/video.avi" length="24226" type="video/avi" />
		</item>
		<item>
		<title>Adding plugins and themes to your WordPress</title>
		<link>http://help4flirts.com/2010/11/23/adding-plugins-and-themes-to-your-wordpress/</link>
		<comments>http://help4flirts.com/2010/11/23/adding-plugins-and-themes-to-your-wordpress/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 05:10:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress installation]]></category>
		<category><![CDATA[wordpress plugin installation]]></category>
		<category><![CDATA[wordpress setup]]></category>
		<category><![CDATA[wordpress theme installation]]></category>

		<guid isPermaLink="false">http://help4flirts.com/?p=651</guid>
		<description><![CDATA[First of all, you will need to make sure you have an unzip utility on your computer. I have a free download I use. A lot of people have recommended 7-zip to me, so if I needed one, that is the one I would install. Plugins and themes contain many files and come in a [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, you will need to make sure you have an unzip utility on your computer. I have a free download I use. A lot of people have recommended <a href="http://www.7-zip.org/download.html">7-zip</a> to me, so if I needed one, that is the one I would install. Plugins and themes contain many files and come in a .zip format, so you will have to unzip them to install. If you have winzip and know how to use it, great. If not, try 7-zip. </p>
<p>I have two plugins I want you to install. Create a new folder in your <strong>Web Folders</strong> directory named <strong>Blogs</strong>, and in that create a folder named <strong>Plugins</strong> and another named <strong>Themes</strong>.</p>
<p>First you are going to download <a href="http://www.bad-behavior.ioerror.us/download/">Bad Behavior</a>, which is designed to block comment spam from spambots. The download you need will be found in the second paragraph, under the title <strong>Stable</strong>. The text is <span style="color:blue;text-decoration: underline">bad-behavior.2.0.38.zip</span>. The link doesn&#8217;t work here because I want you to download it from their site. When you click to download in Firefox, you will be asked if you wish to save. Click yes. Then, right click the Bad Behavior download in the download popup list (not showing? Click Tools => Downloads to make the popup appear) and select Open containing folder from the menu. When it opens, the file will be highlighted. Right-click it and choose the option that says &#8220;extract to&#8221;. From the menu, select the <strong>Plugins</strong> directory in your new <strong>Blogs</strong> directory and accept. </p>
<p>Now, in Filezilla, find that <strong>Plugins</strong> Directory. Note that there is a bad behavior folder within a bad behavior folder. Click the outermost folder and you will be able to see its contents down below. It should look something like this:</p>
<p><img src="/images/hosting/findbb1.gif"> </p>
<p>Now click the <strong>Plugins</strong> directory.</p>
<p><img src="/images/hosting/findbb2.gif"></p>
<p>Click the bad-behavior folder to select it.</p>
<p><img src="/images/hosting/findbb3.gif"></p>
<p>Now look at the two frames in the right-hand side of your Filezilla window. When examples.help4flirts.com is selected in the top window, you can see your blog directories and files below.</p>
<p><img src="/images/hosting/find-themes1.gif"></p>
<p>Click the &#8216;+&#8217; sign to the left of the domain name and the folders will display above.</p>
<p><img src="/images/hosting/find-themes2.gif"></p>
<p>Now click on <strong>wp-content</strong> in the top frame.</p>
<p><img src="/images/hosting/find-themes3.gif"></p>
<p>Click the &#8216;+&#8217; sign next to it.</p>
<p><img src="/images/hosting/find-themes4.gif"></p>
<p>Click the plugins directory.</p>
<p><img src="/images/hosting/find-plugins1.gif"></p>
<p>Now you can right-click the folder in the lower left-hand frame, select upload, and the entire bad behavior folder will upload into your plugins directory. </p>
<p>Next, I want you to download <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All-in-one SEOpack</a>, which will help make your blog much more search engine friendly. The process is the same. Download, unzip, then upload into your plugins directory. </p>
<p>Let&#8217;s go set up these plugins. Select <strong>Plugins</strong> in your left-hand sidebar. You will now see Bad Behavior listed as one of your plugins. Click the activate link to the left of that plugin. There is also a Bad Behavior link in the Settings file, which you can visit if you are curious. You can wait on that, as it probably doesn&#8217;t need to be changed.  </p>
<p>All in one SEO pack is going to be a little trickier to set up. Click the activate link next to the plugin on the plugins page. A red stripe will appear at the top of the plugins page telling you that you need to go to the admin page to enable and configure your plugin. Click the link in that message to go there.</p>
<p>Scroll down to plugin status. Select enabled.<br />
Home title: pick the title you want to display in the blue strip across the top of the browser window. I have chosen &#8220;Homepage of WordPress demo blog.&#8221;<br />
Home description: I have used &#8220;This blog is being used as a demo to go with the domain registration, hosting, wordpress setup, and file upload series of tutorials on my blog at http://help4flirts.com&#8221;.<br />
Home keywords: Pick words that you want people to find your site for. I have selected &#8220;WordPress, installation demo, tutorials, hosting, domain registration, file uploads&#8221;.</p>
<p>That&#8217;s probably all you need at the moment. Scroll down to the bottom and <strong>update options</strong>.</p>
<p>I was going to show you how to install a new theme, if you don&#8217;t like the ones that came with your blog and find one out there you do like. But you already know how to do it. Download the theme and unzip it into a <strong>Themes</strong> directory you will create in the same <strong>Blog</strong> directory where your <strong>Plugin</strong> directory is. Then upload it into your Themes directory in your wp-content directory. It will automatically appear in the list of themes you have available to you on your Themes page you can get to by clicking the Themes link in the left-hand sidebar here.</p>
<p>A note about themes: some of them are tricky to set up. Some of them are tricky to use. Be prepared to give up and try something else if the first one doesn&#8217;t work for you.</p>
<p>Maybe tomorrow I can finish up the blog by having you write a new post. Then all we need to do is show you how to upload files.</p>
]]></content:encoded>
			<wfw:commentRss>http://help4flirts.com/2010/11/23/adding-plugins-and-themes-to-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do with your new domain</title>
		<link>http://help4flirts.com/2010/11/20/what-to-do-with-your-new-domain-2/</link>
		<comments>http://help4flirts.com/2010/11/20/what-to-do-with-your-new-domain-2/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 23:30:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[file hosting]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[weodpress site]]></category>

		<guid isPermaLink="false">http://help4flirts.com/?p=624</guid>
		<description><![CDATA[What you could do now is start uploading files. You could just create an images folder, upload images to it, and start linking. But before you get into that, I want you to think about one thing: whether you want a WordPress blog on your site or not. It is super-easy to create a WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>What you could do now is start uploading files. You could just create an images folder, upload images to it, and start linking. But before you get into that, I want you to think about one thing: whether you want a WordPress blog on your site or not. </p>
<p>It is super-easy to create a WordPress blog on a new domain using the one-click installer that comes with your Dreamhost account. It&#8217;s a lot harder to do once you&#8217;ve started to create folders and put files in them. </p>
<p>You can always add a blog later in a subdirectory, as in http://mydomain.com/blog. But if you want your site to be a WordPress site, as in http://mydomain.com displaying a blog, the best time to do it is right at the beginning.</p>
<p>A WordPress blog may seem hard to understand. The idea of managing a WordPress site may seem overwhelming.  But it really is something you can learn to do for yourself so you won&#8217;t have to end up paying someone out of desperation to set you up. </p>
<p>So if you want to your site to be a WordPress site, I&#8217;ll show you how to do it now. If you want to just create an images or videos dirctory and start using it, with or without a homepage, I&#8217;ll show you that, too. </p>
<p>But before you can do either, you will need to install an FTP client on your computer. </p>
]]></content:encoded>
			<wfw:commentRss>http://help4flirts.com/2010/11/20/what-to-do-with-your-new-domain-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamhost discount code</title>
		<link>http://help4flirts.com/2010/01/04/dreamhost-discount-code/</link>
		<comments>http://help4flirts.com/2010/01/04/dreamhost-discount-code/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 05:37:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[web hosting discount]]></category>

		<guid isPermaLink="false">http://help4flirts.com/?p=392</guid>
		<description><![CDATA[I have had Dreamhost as my webhost for years. If you&#8217;re looking for a webhost that will let you have unlimited domains and permits you to do almost anything with your account. They don&#8217;t have a fast and dirty sitebuilder. I definitely recommend against fast and dirty sites, but hey, whatever you want to do, [...]]]></description>
			<content:encoded><![CDATA[<p>I have had Dreamhost as my webhost for years. If you&#8217;re looking for a webhost that will let you have unlimited domains and permits you to do almost anything with your account. They don&#8217;t have a fast and dirty sitebuilder. I definitely recommend against fast and dirty sites, but hey, whatever you want to do, it&#8217;s your site. </p>
<p>Shop around. If you decide to go with Dreamhost, use this code: <strong>6ZZIBMU2</strong> and get a $50 discount. </p>
]]></content:encoded>
			<wfw:commentRss>http://help4flirts.com/2010/01/04/dreamhost-discount-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For people having cam issues</title>
		<link>http://help4flirts.com/2009/01/14/for-people-having-cam-issues/</link>
		<comments>http://help4flirts.com/2009/01/14/for-people-having-cam-issues/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 20:42:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chat]]></category>
		<category><![CDATA[Video hosting]]></category>
		<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[Chatroom]]></category>
		<category><![CDATA[Flash media host]]></category>
		<category><![CDATA[Flash media server]]></category>
		<category><![CDATA[Video streaming]]></category>

		<guid isPermaLink="false">http://help4flirts.com/?p=201</guid>
		<description><![CDATA[Yahoo has been unreliable forever, and lately I have heard girls complaining that Eyeball Chat has been down and out more than it has been available. Some girls do sightspeed, which has the annoying feature of making it really easy for a customer to record your cam within the program, so many avoid it. I [...]]]></description>
			<content:encoded><![CDATA[<p>Yahoo has been unreliable forever, and lately I have heard girls complaining that Eyeball Chat has been down and out more than it has been available. </p>
<p>Some girls do sightspeed, which has the annoying feature of making it really easy for a customer to record your cam within the program, so many avoid it.</p>
<p>I also know a few who use Paltalk, but the viewer has to pay for an account to watch, so that doesn&#8217;t work for too many. </p>
<p>I use a company <a href="http://www.influxis.com" target="_blank">called influxis.com</a>. It&#8217;s a flash media host, which means that it hosts and streams your feed on flash, which is about the most common format there is nowadays. </p>
<p><img src="http://help4flirts.com/images/influxis.gif" style="margin:10px 0 10px 0"></p>
<p>I had looked at buying software to put in a video chatroom, but all of them cost a bundle (like $1000 for a real video chatroom), and then after you paid, you still had to get a flash media server. </p>
<p>With this one, you get a bundle of free chatroom and broadcast scripts that come configured for your website. So you do need a site to put the embed code on. </p>
<p>I was chatting with a guy on yahoo who wanted to show me his cam, but it froze up every couple of minutes. I sent him to one of my chatrooms, and the picture was perfect, no more freezeups.  </p>
<p>Plans start at $10 a month and the cost is determined by how much bandwidth you use and how many simultaneous connections you want. </p>
<p>I&#8217;d like to say I&#8217;m getting a signup fee for saying this, but they don&#8217;t have an affiliate program for customers. Check it out if you have your own site. If you&#8217;re busy, it will more than pay for itself. </p>
]]></content:encoded>
			<wfw:commentRss>http://help4flirts.com/2009/01/14/for-people-having-cam-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP and you</title>
		<link>http://help4flirts.com/2008/06/26/ftp-and-you/</link>
		<comments>http://help4flirts.com/2008/06/26/ftp-and-you/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 19:13:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[Webmastering]]></category>

		<guid isPermaLink="false">http://help4flirts.com/?p=52</guid>
		<description><![CDATA[Probably you&#8217;ve heard the acronym &#8216;FTP&#8217;. Unless you&#8217;ve had to use it, you probably don&#8217;t know much about it. As far as FTP goes, what you don&#8217;t know can suddenly become extremely inconvenient for you. FTP stands for File Transfer Protocol. It&#8217;s a way of moving files from one computer to another computer over the [...]]]></description>
			<content:encoded><![CDATA[<p>Probably you&#8217;ve heard the acronym &#8216;FTP&#8217;. Unless you&#8217;ve had to use it, you probably don&#8217;t know much about it. As far as FTP goes, what you don&#8217;t know can suddenly become extremely inconvenient for you. </p>
<p>FTP stands for <u>F</u>ile <u>T</u>ransfer <u>P</u>rotocol. It&#8217;s a way of moving files from one  computer to another computer over the web. It is a lot faster than downloading them through HTTP, or <u>H</u>yper <u>T</u>ext <u>T</u>ransfer <u>P</u>rotocol, which you access through links on regular html webpages. If I installed an <strong><em>FTP server</em></strong> on my computer, I could set you up an account and give you a username and password. You could then open your <strong><em>FTP client</em></strong>, go to the FTP address of my computer, log in, and download files from any directories that I had given you access to. I could choose to allow you to upload files, too. </p>
<h4>In review&#8230;</h4>
<p>The FTP server is the remote computer that hosts files for transfer. The FTP client is the software you use to get those files. </p>
<h4>FTP for downloading purchased content</h4>
<p>This is what happens when you buy content. The files are so large that it would take too long to transfer them just by clicking a link on a webpage, so they may set you up an account and let you download them that way. </p>
<p>My favorite FTP client is a free one, <a href="http://ftp995.com" target="_blank">FTP995</a>. It&#8217;s really easy to set up and use. I used to use Ipswitch, which I paid for, but I like this one better. </p>
<p>Edit to add: I haven&#8217;t used this one in a while. Lately I have used <a href="http://filezilla-project.org/download.php">Filezilla client</a> and <a href="http://fireftp.mozdev.org/">FireFTP</a> Firefox plugin.  </p>
<p>The content company will give you their FTP address, your username, and your password. You just type that info in at the top. Click Connect, and you will go there and login. </p>
<p>Files will appear on the right and left side of the window. The ones on the right side are the remote computer. The ones on the left are your own computer. You need to decide where you want to put the content before downloading it. The top listing on the left is just directories and folders. Double click on a directory to find a subdirectory. Right click on a directory to create a new directory. If you are new to this and don&#8217;t have a directory where you put your photos, I recommend going to My Pictures and creating a new Content directory there. If you have bought photos of more than one model, create a new subdirectory within that for each new model, and within that for each set. Double-click the folder at the top with two dots next to it (which represents the directory you are in) to move back up a level. </p>
<p>When you reach the place where you want to download to and are all set, right-click the file on the right you want to download and select &#8216;download&#8217; from the menu. Then wait. When it&#8217;s done, it will appear in the location on the left. </p>
<p>I know it seems like a pain, but it would be a nightmare later to straighten out if you get everything mixed up. </p>
<p>They will have the files zipped when you download. If double-clicking on the file icon doesn&#8217;t open it, this company also has a free unzip utility.<br />
<a href="http://www.software995.com/" target="_blank">Software995</a></p>
<h4>FTP for creating and managing websites</h4>
<p>I know a lot of people who realize the need for a website find the idea of constructing one and putting it online to be somewhere between daunting and downright scary. It looks like there are so many things that can go wrong that if you make the wrong mistake you could inadvertently start World War III or cause the end of civilization as we know it. </p>
<p>Many webhosts capitalize on newbie fear by providing sitebuilders and a variety ways of getting a page online without having to use ftp. Most of them are very limiting. You will never learn how to run a website properly while using a setup like that. But the worst part is that when you start needing more services, they charge outrageous prices for them. It rapidly adds up to far more than the cost of a real web host, and you may not even be able to take your site with you when you do make the move. You&#8217;ll have to create a new one. </p>
<p>It&#8217;s not rocket science. It&#8217;s not even hard after you&#8217;ve done it like once. It&#8217;s just a different way of thinking that you may not be accustomed to. So let&#8217;s look at FTP.</p>
<p>Again, you install the FTP client software. Your webhost has given you the FTP address you need, your FTP username and password. Fill it in and connect. Then all you have to do is right-click a file on the left to select the &#8216;Upload&#8217; option to upload it to your domain on the right.</p>
<p>Call your first html page index.html or index.htm. Upload it and this is what will show when somebody types your domain name in. Call your other pages whatever you want to and link to them from your index page. </p>
<p>Images? Videos? Recordings? Create an &#8216;Images&#8217;, &#8216;Videos&#8217;, or &#8216;Recordings&#8217; directory and upload to it.  </p>
<p>You can even re-download something you accidentally deleted or forgot where you put it on your computer. </p>
]]></content:encoded>
			<wfw:commentRss>http://help4flirts.com/2008/06/26/ftp-and-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You need a website, part 2 &#8211; choosing a host</title>
		<link>http://help4flirts.com/2008/05/06/you-need-a-website-part-2-choosing-a-host/</link>
		<comments>http://help4flirts.com/2008/05/06/you-need-a-website-part-2-choosing-a-host/#comments</comments>
		<pubDate>Tue, 06 May 2008 18:52:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Web hosting]]></category>

		<guid isPermaLink="false">http://help4flirts.com/?p=49</guid>
		<description><![CDATA[Yes, we talked about this before. We covered some things in detail, in particular how to choose a host that will grow with you. I related the issue of how a free webhost can hold you back and prevent you from doing lots of the things you might want to do, even if they do [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lunarpages.com/id/help4flirts"><img src="http://www.lunarpages.com/banners/images/banner_ads_110x110_01.gif" border="0" align="right"></a>Yes, we talked about this before. We covered some things in detail, in particular how to choose a host that will grow with you. I related the issue of how a free webhost can hold you back and prevent you from doing lots of the things you might want to do, even if they do permit adult. </p>
<p>Once again here I&#8217;m going to put in a plug for the freedom you get when you can host images on your own site and manage them as you please.</p>
<p>Even if all you want is to make a blog right now, putting it on your own website is a smart move. You can still drop blogs around here and there, so long as you&#8217;re staying within the tos of the free blog hosts. But for the blog that represents you, you&#8217;re putting a lot of work in on it. It should be yours, to do with as you wish. </p>
<p>If you&#8217;re going to put that much work in on it, you should have the option of making it a <strong><em>real site</em></strong>. </p>
<p><a href="http://www.dreamhost.com/r.cgi?141182"><img src="http://www.dreamhost.com/images/rewards/125x125-a.gif" border="0" align="right"></a>So here&#8217;s the story I&#8217;d like to relate to you. I spent much of this weekend installing a new website for a girlfriend who previously had a bunch of very strange pages created by a customer who knew nothing about web design or adult web design for PSO. Those pages were not only ugly in a 1992 sort of way, but they didn&#8217;t work right. You&#8217;d have to click a button several times to get a &#8220;mouseover&#8221; to work so the photo would show, instead of a large blank space. It was kind of a maze to get to her existing blogs, which were stuck with the default wordpress theme. </p>
<p>So I replaced the entry page with a really pretty one, the main page with one that links directly to her new blogs. Drop dead gorgeous if I do say so myself. And the blogs are very pretty, too. </p>
<p>Unfortunately, due to her choice of server, there were several problems that needed to be worked out. We never were able to change one of her settings, which would be necessary to get maximum indexing for her blogs.</p>
<p>But the big deal is that she selected this host because it looked like it would be good for a beginner. They had some kind of site builder, an uploader of sorts, and some other cool stuff that no longer works for her because her new computer has Vista. And the stuff she thought was going to save her time and money? While it made it harder (read: more work) for me, the biggest problem was making the blogs work right. </p>
<p>After a discussion on the forums: </p>
<p>Things could have been worse. At least she had apache/linux hosting. If she had chosen Windows hosting, as many &#8220;starter webhosts&#8221; offer, she would have had to move to another server to do what she wanted. You don&#8217;t want a Windows server. Just take my word for it. </p>
<p>If you have to pay somebody to install a blog for you, that&#8217;s an hour&#8217;s work, if nothing goes wrong. If there&#8217;s a problem, it can take several hours for somebody who knows what they&#8217;re doing to sort out the issue and fix it.</p>
<p>The problem is that when you pick a free wordpress theme, you may be getting something highly standard, or you may be getting something that seemed like a good idea at the time to the designer. Fixing a misbehaving theme can be a real pain. And none of this should be necessary, because if you choose a webhost that has simplified installation for wordpress, you click and you are ready. You are provided with a large number of themes that are ready to use. Dreamhost has &#8220;One click&#8221; installs for wordpress blogs and lots of other popular installations. On the rare occasions when I had issues, it was from upgrading very old blogs, and they went out of their way to fix them for me. </p>
<p>If my girlfriend had had to pay me for the time I spent straightening out her blog issues, she&#8217;d be out of money right now. The little bit of convenience back at the beginning that saved her doing research and asking for help would have ended up costing her a load of money in the end.<br />
<a href="http://www.tkqlhce.com/click-2890887-10386907" target="_blank" onmouseover="window.status='http://www.godaddy.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.tqlkg.com/image-2890887-10386907" width="120" height="60" alt="GoDaddy.com Hosting &#038; Servers" border="0" align="right"/></a>For those of you who are still nervous about what it means to use FTP to upload files and images to your website, I&#8217;ll be writing a little tutorial on that shortly. It has to be little. It&#8217;s a lot simpler than you could ever imagine. </p>
]]></content:encoded>
			<wfw:commentRss>http://help4flirts.com/2008/05/06/you-need-a-website-part-2-choosing-a-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

