<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feed.searchfriendlywebdesign.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feed.searchfriendlywebdesign.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Search Friendly Web Design</title>
	
	<link>http://searchfriendlywebdesign.com</link>
	<description>Search Engine Optimization + Website Design</description>
	<pubDate>Sun, 13 Jul 2008 15:37:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feed.searchfriendlywebdesign.com/SEFWD" type="application/rss+xml" /><feedburner:emailServiceId>1092246</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Dreamweaver Template to Wordpress Theme Variation</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/334321429/</link>
		<comments>http://searchfriendlywebdesign.com/dreamweaver-template-to-wordpress-theme-variation/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 14:44:58 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/dreamweaver-template-to-wordpress-theme-variation/</guid>
		<description><![CDATA[Last year I published a tutorial outlining how to convert a Dreamweaver Template into a Wordpress Theme.  In that first method we detached the page from the Dreamweaver template and we eventually broke the templated file into the various Wordpress include files. In this alternate variation we will keep the association between the themes [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I published a tutorial outlining how to <a title="Conver Dreamweaver Template into a Wordpress Theme" href="http://searchfriendlywebdesign.com/dreamweaver-templates-into-wordpress-themes/">convert a Dreamweaver Template into a Wordpress Theme</a>.  In that first method we detached the page from the Dreamweaver template and we eventually broke the templated file into the various Wordpress include files. In this alternate variation we will keep the <strong>association between the themes files &amp; the Dreamweaver Template intact.</strong>  We&#8217;ll drop the Wordpress Loop and sidebar code into the editable regions of the Dreamweaver Templated page via source code or split view. And just like in the first tutorial, we will also be merging style sheets together without bringing over too much code so theres no weird cascading effects from overlapping styles.</p>
<p>When converting a Dreamweaver Template to a Wordpress Theme, I personally prefer to use the initial method because creating a full on Wordpress Theme with all it&#8217;s include files makes managing your Wordpress CMS or Blog easier and more versatile in my opinion.</p>
<p><strong>Suggested Requirements</strong></p>
<ul>
<li>At the very minimum your Dreamweaver Template needs to have one editable region for the main body area and one editable region for the side bar area.</li>
<li>Any person attempting to use this tutorial should have a moderate understanding of HTML &amp; CSS, a pretty good understanding of how Dreamweaver Templates work, a good attention to detail and common sense.</li>
<li>Most <a title="Conver Dreamweaver Template into a Wordpress Theme" href="http://searchfriendlywebdesign.com/dreamweaver-templates-into-wordpress-themes/">important, you should read through the original tutorial</a> as this one is a quick bulleted todo list, where the original method goes into a little more detail. Read through both and decide which route you want to take.</li>
<li>Read the primers for <a href="http://codex.wordpress.org/Theme_Development" target="_blank">Theme Development</a> and <a href="http://codex.wordpress.org/The_Loop" target="_blank">The Wordpress Loop</a>&#8230; at least once.</li>
</ul>
<p><span id="more-54"></span></p>
<p><strong>Time to get started&#8230;</strong></p>
<p>1. Open your Dreamweaver Template my_template.dwt file and save as a new name like my_wpblog_template_.dwt or something.</p>
<p>2. Update all links in your Dreamweaver Template</p>
<ul>
<li>Update link calls to be absolute URL&#8217;s</li>
<li>Update images calls to be absolute URL&#8217;s</li>
</ul>
<p>3. Create your various php files</p>
<ul>
<li>file &gt; new from template &gt; choose the blog template</li>
<li>save as wp-content/themes/your_theme/index.php</li>
<li>repeat the process and create single.php, search.php and page.php</li>
</ul>
<p>Save and leave all 4 files open</p>
<p>4. Update Stylesheet</p>
<ul>
<li>open the site stylesheet associated with the Dreamweaver Template</li>
<li>save as wp-content/themes/theme_folder/style.css =&gt; leave open</li>
</ul>
<p>5. Go back to your NEW index.php, toggle split view,</p>
<ul>
<li>open index.php from the Default Wordpress Kubrick Theme</li>
<li>copy everything from and including &lt;?php if (have_posts()) : ?&gt;  to  &lt;?php endif; ?&gt; =&gt; paste into to the body section editable region via the source code of your index.php file we just created from your Dreamweaver Template.</li>
<li>scan through the source code you just pasted.. note all the different styles being used.</li>
</ul>
<p>6. Open the stylesheet from the Default Wordpress Kubrick Theme</p>
<ul>
<li>add comments from top of default css and paste into yours.. update theme name, version, author etc.</li>
<li>copy the styles associated with the Kubrick loop code from step 5 and paste them into your new style.css file.</li>
</ul>
<p>7. Repeat Steps 5 &amp; 6 for single.php, search.php and page.php, again using the WP Loop code from the associated Kubrick files. Don&#8217;t forget to carry over the associated styles.</p>
<p>8. Carry over the sidebar code, copy everything between &lt;div id= &#8220;sidebar&#8221;&gt; &lt;/div&gt;. Copyall associated styles sidebar styles. You can either skip  #sidebar container style (around line #532) or copy it over and adjust it to fit your site.</p>
<p>9. Copy the following files over from the default folder: function.php, searchform.php, comments.php and comments_popup.php and paste them into your new theme directory.</p>
<p>10. Merge your head content from the  Kubrick header.php file into the Dreamweaver Template so it can filter out to all associated pages. Be sure not to over write or mess up and of the Dreamweaver Template tags.</p>
<p>11. upload your theme, test all the different page types; tweak styles and formatting as need be.</p>
<p>12. All done&#8230;</p>
<p>Remember.. if you get stumped or don&#8217;t understand a part of my explanation, please leave a comment with your issue and I&#8217;ll try and follow up.. I&#8217;m usually pretty fast to respond. Furthermore, if you decide this task is beyond your skill set, please contact us for a free consultation.</p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/334321429" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/dreamweaver-template-to-wordpress-theme-variation/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/dreamweaver-template-to-wordpress-theme-variation/</feedburner:origLink></item>
		<item>
		<title>Wordpress is Search Engine Friendly</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/330960079/</link>
		<comments>http://searchfriendlywebdesign.com/wordpress-is-search-engine-friendly/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 17:04:00 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Why Wordpress?]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/wordpress-is-search-engine-friendly/</guid>
		<description><![CDATA[Considering the business I&#8217;m in, it only makes sense to use tools that make building search engine friendly websites more efficient. Which is why I use Wordpress for a number of my projects because it&#8217;s internal architecture is designed to be search engine friendly.

WordPress, straight out of the box, comes ready to embrace search engines. [...]]]></description>
			<content:encoded><![CDATA[<p>Considering the business I&#8217;m in, it only makes sense to use tools that make building search engine friendly websites more efficient. Which is why I use Wordpress for a number of my projects because it&#8217;s internal architecture is designed to be search engine friendly.</p>
<blockquote>
<p>WordPress, straight out of the box, comes ready to embrace search engines. Its features and functions guide a search engine through the posts, pages, and categories to help the search engine crawl your site and gather the information it needs to include your site within its database.</p>
<p>WordPress comes with several built in search optimization tools, including the ability to use .htaccess to create apparently static URLs called permalinks, blogrolling, and pinging. There are also a number of third party plugins and hacks which can be used for search engine optimization (SEO).</p>
<p>excerpt from wordpress.org - <a href="http://codex.wordpress.org/Search_Engine_Optimization_for_Wordpress" target="_blank" rel="nofollow">Search Engine Optimization for Wordpress</a></p>
</blockquote>
<p>It&#8217;s out of the box features and the various Wordpress SEO plugins available combined with it&#8217;s ease of use make it a very powerful tool. I&#8217;ve been working with content managements systems for a number of years now and hands down.. I think Wordpress is the most search engine friendly on the market.</p>
<p>So whether you want to start a blog, build a website using a content management system or both&#8230; I recommend using Wordpress.  It makes doing business online easy and affordable.</p>
<p>Need some help building a website? Check out our <a href="http://searchfriendlywebdesign.com/services/">website services</a> or <a href="http://searchfriendlywebdesign.com/contact/">contact us</a> for a free consultation.</p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/330960079" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/wordpress-is-search-engine-friendly/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/wordpress-is-search-engine-friendly/</feedburner:origLink></item>
		<item>
		<title>Follow up to Goal Conversions in Google Analytics</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/321457000/</link>
		<comments>http://searchfriendlywebdesign.com/google-analytics-tracking-issue/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 17:02:16 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Web Resources]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=50</guid>
		<description><![CDATA[A few weeks back I posted an article highlighting what I thought was the solution to my Google Analytics goal conversion tracking dilemma. I later posted a comment noting that the solution did not work.
To catch you up to speed, I have a client who needs to track more than the alloted 4 conversion goals [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks back <a href="http://searchfriendlywebdesign.com/goal-conversions-in-google-analytics/" target="_self">I posted an article</a> highlighting what I thought was the solution to my Google Analytics goal conversion tracking dilemma. I later posted a comment noting that the solution did not work.</p>
<p>To catch you up to speed, I have a client who needs to track more than the alloted 4 conversion goals allowed in a Google Analytics profile. According to Google Help docs, to track more conversions you&#8217;re supposed to set up additional profiles.</p>
<p><span id="more-50"></span></p>
<p>The site I am doing this for requires that I use the old legacy Urchin. js code because we have Live Person Chat enabled on our site and the legacy code is the only code that can integrate at the current time with Google Analytics. So after trying a number of different code configurations I decided to grab the new GA.js code and run it along side in the Legacy Urchin code.</p>
<p>I originally ordered the code ga.js then urchin.js. I tested for a day and noticed that numbers were off a bit so I switched then around and now finally it appears that I am successfully tracking two separate profiles for the same website allowing my up to 8 conversion goals. The numbers are still off slightly but only by a handful or so.. I can live with that.</p>
<p>Below is a screen shot of what the Google Analytics code looks like in my website&#8230;</p>
<p><a href="http://searchfriendlywebdesign.com/wp-content/uploads/2008/06/ga_js_code2.png"><img class="aligncenter size-full wp-image-52" title="ga_js_code2" src="http://searchfriendlywebdesign.com/wp-content/uploads/2008/06/ga_js_code2.png" alt="" width="500" height="222" /></a></p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/321457000" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/google-analytics-tracking-issue/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/google-analytics-tracking-issue/</feedburner:origLink></item>
		<item>
		<title>Goal Conversions in Google Analytics</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/309202240/</link>
		<comments>http://searchfriendlywebdesign.com/goal-conversions-in-google-analytics/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 00:09:13 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Web Resources]]></category>

		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=47</guid>
		<description><![CDATA[One of my clients decided that we they needed to start tracking certain goals or conversions on the website via Google Analytics. So I set up the the allotted conversion goals / funnels, but I needed more.
According to Google Analytics documentation or Help Center, they say that if you need to more than four goal [...]]]></description>
			<content:encoded><![CDATA[<p>One of my clients decided that we they needed to start tracking certain goals or conversions on the website via Google Analytics. So I set up the the allotted conversion goals / funnels, but I needed more.</p>
<p>According to Google Analytics documentation or Help Center, they say that if you need to more than four goal conversions&#8230; set up additional profiles.  So I did.. I took the snippet of java script code (we&#8217;re using the Legacy Tracking Code - urchin.js) and pasted it along side the other script. I waited a couple of days and noticed that the second profile wasn&#8217;t collecting data.</p>
<p><span id="more-47"></span></p>
<p><strong>Troubleshooting Round 1</strong><br />
So I started examining the code snippets&#8230; I noticed they were out of sequential order according to the user account # associated with this site profile ex.. _uacct = &#8220;UA-8XXXX2-3&#8243;;. So I put them in sequential order and all of a sudden the second profile  started registering data&#8230; sweet I figured out.</p>
<p>My code looked something like this&#8230;</p>
<p><img class="aligncenter size-full wp-image-48" title="js1" src="http://searchfriendlywebdesign.com/wp-content/uploads/2008/06/js1.gif" alt="" width="628" height="249" /></p>
<p>A few days later, colleague and friend, <a href="http://searchenginemarketing.com">Search Master Jamie Low</a> called me and said Google Analytics stopped tracking our account. What happened was once I switched the code around it activated the second profile but deactivated the first.</p>
<p><strong>Troubleshooting Round 2</strong><br />
I&#8217;ll admit.. I&#8217;m terrible with javascript.. I can install them but have no idea what any of the code means.. but I have worked with them so I should have used a little more common sense.  First I fixed the issue by removing the call to the second profile. But I still had find the solution to track both.</p>
<p>Unfortunately, I couldn&#8217;t find the answer on Google anywhere so I sat an pondered the code for a little while. All of sudden I started thinking back to the validation and calendar scripts I install on client forms and how those calls to scripts are structured.  I had it all wrong I needed to combine the two scripts into one.. not use two separate ones so it would like this&#8230;</p>
<p><img class="aligncenter size-full wp-image-49" title="js2" src="http://searchfriendlywebdesign.com/wp-content/uploads/2008/06/js2.gif" alt="" width="627" height="178" /></p>
<p>After double checking things this afternoon it appears that both sites are now tracking data. I will post a follow up in a few days with final results to let you know how its going and if I really fixed it.</p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/309202240" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/goal-conversions-in-google-analytics/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/goal-conversions-in-google-analytics/</feedburner:origLink></item>
		<item>
		<title>A Great New Anti Spam Bot Plugin</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/306972142/</link>
		<comments>http://searchfriendlywebdesign.com/is-human/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 20:53:02 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[My Favorite Plugins]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=46</guid>
		<description><![CDATA[I came across a great new plugin this morning..  I&#8217;ve been looking for this exact plugin for a while now. The plugin is called is_human() by Nick Berlette. With one tiny snippet of code placed into  the comments.php file and you have catpcha security integrated into you site. Upon activation it automatically embeds it [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a great new plugin this morning..  I&#8217;ve been looking for this exact plugin for a while now. The plugin is called <a href="http://www.pancak.es/plugins/is-human/" target="_blank">is_human()</a> by Nick Berlette. With one tiny snippet of code placed into  the comments.php file and you have catpcha security integrated into you site. Upon activation it automatically embeds it self in your Wordpress Registration page.</p>
<p>I have a blog called <a title="Tehachapi Daily" href="http://www.tehachapidaily.com" target="_blank">Tehachapi Daily</a> which is completely open to the community to post to the site. They are granted contributor level access immediately upon registration and get worried sometimes about all the spam registers I get. Now with is_human(), I&#8217;ve got Catpha security.</p>
<p>Thanks Nick for developing this new plugin.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/is-human/" target="_blank">Download is_human()</a></strong></p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/306972142" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/is-human/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/is-human/</feedburner:origLink></item>
		<item>
		<title>When A Deactivated Plugin Breaks Your Blog</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/306369459/</link>
		<comments>http://searchfriendlywebdesign.com/plugin-breaks-your-blog/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 21:17:55 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Wordpress Tips &amp; Tricks]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=44</guid>
		<description><![CDATA[I logged into my dashboard and saw a post in the WP feed about what to do if your blog goes down upon deactivating a plugin. I&#8217;ve had this happen to me a couple of times. The plugins I usually have this issue with are..

 Related Posts
Breadcrumb Navigation
Recent Posts
My Category Order

When a plugin breaks my [...]]]></description>
			<content:encoded><![CDATA[<p>I logged into my dashboard and saw <a href="http://weblogtoolscollection.com/archives/2008/06/01/if-plugin-deactivation-breaks-your-blog/" mce_href="http://weblogtoolscollection.com/archives/2008/06/01/if-plugin-deactivation-breaks-your-blog/" target="_blank">a post in the WP feed</a> about <a href="http://wordpress.jdwebdev.com/blog/plugin-deactivation-theme-errors/" mce_href="http://wordpress.jdwebdev.com/blog/plugin-deactivation-theme-errors/" target="_blank">what to do if your blog goes down upon deactivating a plugin</a>. I&#8217;ve had this happen to me a couple of times. The plugins I usually have this issue with are..</p>
<ul>
<li> Related Posts</li>
<li>Breadcrumb Navigation</li>
<li>Recent Posts</li>
<li>My Category Order</li>
</ul>
<p>When a plugin breaks my site.. if I know for certain I&#8217;m going to be reactivating the plugin anytime soon I go ahead and delete the PHP call for the plugin. If I think I&#8217;m going be using the plugin in question again I comment it out instead.</p>
<p><b>How to ID the Plugin Causing the Problem?</b></p>
<p>If you&#8217;re new to Wordpress and PHP, one thing the <a href="http://wordpress.jdwebdev.com/blog/plugin-deactivation-theme-errors/" mce_href="http://wordpress.jdwebdev.com/blog/plugin-deactivation-theme-errors/" target="_blank">original article</a> left out was how to ID the Faulty Plugin. The error message usually tells you. Lets say you deactivated al plugins and now your front page has this message..</p>
<blockquote><p><b>Fatal error</b>:  Call to undefined function: get_breadcrumb() in <b>/home/hostname/public_html/websitename/wp-content/themes/genesis-10/header.php</b> on line <b>48</b></p>
</blockquote>
<p>I have all the info I need to quickly find the bad code and either comment it out or delete it. I know that on line 48 in the header file of the Genesis theme i need to find the code <b>get_breadcrumb(). </b>Make sure to include the open and close php brackets that enclose the call.<b><br />
</b></p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/306369459" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/plugin-breaks-your-blog/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/plugin-breaks-your-blog/</feedburner:origLink></item>
		<item>
		<title>Wordpress Blog Security Measures</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/284395152/</link>
		<comments>http://searchfriendlywebdesign.com/wordpress-blog-security-measures/#comments</comments>
		<pubDate>Tue, 06 May 2008 04:56:49 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Wordpress Tips &amp; Tricks]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/wordpress-blog-security-measures/</guid>
		<description><![CDATA[Here area a few tips and tricks to keeping your Wordpress blog or Wordpress CMS safe and secure. There are plenty of other tactics out there to take for increased security but these will get you started and should be considered best practice.

The Blank Index.html FileMost web hosting servers do not block site visitors from [...]]]></description>
			<content:encoded><![CDATA[<p>Here area a few tips and tricks to keeping your Wordpress blog or Wordpress CMS safe and secure. There are plenty of other tactics out there to take for increased security but these will get you started and should be considered best practice.</p>
<p><span id="more-43"></span></p>
<p><strong>The Blank Index.html File<br /></strong>Most web hosting servers do not block site visitors from being able to view the root of any folder. To keep anyone from figuring out what is running your site you should put a blank index.html file inside your wp-content folder as well as inside uploads, themes and most importantly plugins.</p>
<p>The blank index.html file keeps anyone who might be snooping around where they don&#8217;t belong from finding out what theme you are using or the plugins that being used to run your site. The more a hacker knows about your site the more places he/she can look for vulnerabilities. So stop them ahead of time by placing a blank index.html file in the root of all folders within the wp-content directory.</p>
<p><strong>Don&#8217;t Wait for Fantastico!<br /></strong>When security is at risk.. manually <a title="Upgrade Wordpress" href="http://searchfriendlywebdesign.com/upgrading-wordpress/">upgrade your Wordpress Installation</a>&#8230; its not as difficult as one might think.. just be sure you <a href="http://searchfriendlywebdesign.com/simple-maintenace/">back up everything before you upgrade</a>. Auto-installers are great to get you started but in all honesty they more of hindrance. Everyone puts so much stock into Fantastico but its a hassle because it always takes so long to for them to get current. So while you&#8217;re waiting for Fantastico you&#8217;re getting owned by some hacker who is injecting bogus links into your posts. Forget about.. get a copy of filezilla and manually upgrade your site as soon as a security update is released.</p>
<p><strong>Usernames and Passwords<br /></strong>I&#8217;ve got a few tips regarding your Wordpress username and passwords.</p>
<ul>
<li>Don&#8217;t ever let your browser save your username and passwords. This information is saved in a cookie which can get hijacked by a hacker.</li>
<li>Always change your admin passwords everytime you upgrade your installation.</li>
<li>Don&#8217;t use admin as your main administrator username.. that only leaves half of the problem to solve for a hacker trying to access your website.</li>
<li>Make your passwords difficult, use both upper and lower case letters, use symbols such as ! $ &amp; # @ and use numbers.</li>
</ul>
<p>There is a great plugin out called <a title="WP Security Scan by Semper Fi Web Design" href="http://semperfiwebdesign.com/programming/wp-security-scan/" target="_blank">WP Security Scan</a> that offers several security tools like password strength and DB Prefix Updater.. to name a few. Aside from what I have detailed above you should check out the plugin and make your Wordpress installation bombproof.</p>
<p>If you have other security tips and tricks for websites, Wordpress Blog or CMS Installations please post your comments below.</p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/284395152" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/wordpress-blog-security-measures/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/wordpress-blog-security-measures/</feedburner:origLink></item>
		<item>
		<title>Wordpress.com Banned by International Judge</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/272602385/</link>
		<comments>http://searchfriendlywebdesign.com/wordpresscom-banned-by-international-judge/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 03:24:17 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Blogging News]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/wordpresscom-banned-by-international-judge/</guid>
		<description><![CDATA[So according to this post by Lorelle from Wordpress, a judge in Brazil is banning / blocking ALL WordPress.com blogs regardless of language because some idiot posted a YouTube video of a couple of having sex.
The material in question violates WordPress.com Terms of Service (if it doesn&#8217;t.. it should.. Im not a wordpress.com user so [...]]]></description>
			<content:encoded><![CDATA[<p>So according to <a title="Wordpress.com Banned" href="http://lorelle.wordpress.com/2008/04/17/wordpresscom-banned-again-why-arent-you-concerned/" target="_blank">this post by Lorelle from Wordpress</a>, a judge in Brazil is banning / blocking ALL WordPress.com blogs regardless of language because some idiot posted a YouTube video of a couple of having sex.</p>
<p>The material in question violates WordPress.com Terms of Service (if it doesn&#8217;t.. it should.. Im not a wordpress.com user so I&#8217;ve never read their TOS).</p>
<p>So Lorelle is asking.. why aren&#8217;t more people talking / blogging about the issue at hand? Why does it seem that no one is concerned?</p>
<p>My first question isn&#8217;t why aren&#8217;t people concerned.. my first question is&#8230; how did YouTube allow this video to go live in the first place? I&#8217;m almost certain adult content is not allowed on YouTube. So what&#8217;s up with that.</p>
<p>So why not ban YouTube instead? Right! Like that would ever happen. If I were the lawyers for WordPress.com.. I&#8217;d be appealing this and drag Google into it because that&#8217;s where the problem started.</p>
<p>To speculate on why more people aren&#8217;t blogging about it, my guess would be that a lot of WordPress.com users are probably saying to themselves.. so what if I can&#8217;t reach Brazil? Or maybe people view it like spam and blacklists.. use a free product and deal with being at the mercey of what others around you do. It&#8217;s guilt by association. </p>
<p>My 2 cents!</p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/272602385" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/wordpresscom-banned-by-international-judge/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/wordpresscom-banned-by-international-judge/</feedburner:origLink></item>
		<item>
		<title>Rafting.com Redesigned and Built in Wordpress</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/259118781/</link>
		<comments>http://searchfriendlywebdesign.com/rafting-dot-com/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 17:32:56 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Why Wordpress?]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/rafting-dot-com/</guid>
		<description><![CDATA[I&#8217;ve been the webmaster for Rafting.com since 2001 when we built the site out for the very first time.  Finally seven years later, our virtual web team devised a plan to redesign the site. We decided to build it using Wordpress as CMS (content management system).

From white site to launch, the project took us [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been the webmaster for <a href="http://www.Rafting.com" target="_blank">Rafting.com</a> since 2001 when we built the site out for the <a href="http://web.archive.org/web/20070101004548/http://rafting.com/" target="_blank">very first time</a>.  Finally seven years later, our virtual web team devised a plan to redesign the site. We decided to build it using Wordpress as CMS (content management system).</p>
<p><span id="more-38"></span><br />
From white site to launch, the project took us 8 months (2 years if you consider the theory process).  The new website went live on February 28, 2008.   We have plans for unveiling the new Rafting.com Blog (1 installation for both the site and the blog) during the first week of April.</p>
<p>With the relaunch of the website we decided that is was only fitting to make Rafting.com &#8220;The Definitive Whitewater Rafting Go To Site.&#8221; To move in that direction we added nearly 160 new pages of content to the rivers and regions directory, making the site over 230 pages and growing.</p>
<p><strong>So Why Wordpress? </strong></p>
<p>We chose Wordpress because 2 years ago we started planning the development of the Rafting.com Blog and we soon realized after WP 2.1 how easy it was to use WP as a CMS.  Secondly, we also chose Wordpress because of all the functionality available to make <a href="http://www.rafting.com" target="_blank">rafting.com</a> a very robust, yet simple website. Third, using a CMS allows the publishing tasks to anyone on our virtual team without having to know a lick of html.  Finall, we used WP because its so dang search engine friendly.</p>
<p><strong>Kudos to the Web Team</strong></p>
<p>Jamie Low - <a href="http://SearchEngineMarketing.com" target="_blank">http://SearchEngineMarketing.com</a>: Search Master<br />
Tessa Sibbet -  <a href="http://www.Rafting.com" target="_blank">http://www.Rafting.com</a>: Content Manager / Editor<br />
Sammy Russo - <a href="http://SearchFriendlyWebDesign.co">http://SearchFriendlyWebDesign.com</a>: Site Admin &amp; Theme Development<br />
Joe David - <a href="http://www.DavidDesign.com" target="_blank">http://www.DavidDesign.com</a>: Maps &amp; Graphic Design<br />
Malina Dunk - <a href="http://Blog.AOrafting.com" target="_blank">http://Blog.AOrafting.com</a>: Writer / Editor<br />
Robyn Suddeth -  <a href="http://Blog.AOrafting.com" target="_blank">http://Blog.AOrafting.com</a>: Writer / Editor</p>
<p>Nice work people. After only a month of being relaunched we have nearly 99%  indexation of all new pages and 100% re-indexation of original content on their new URLS.</p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/259118781" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/rafting-dot-com/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/rafting-dot-com/</feedburner:origLink></item>
		<item>
		<title>Desktop Blogging Software Review: BlogJet</title>
		<link>http://feed.searchfriendlywebdesign.com/~r/SEFWD/~3/247576189/</link>
		<comments>http://searchfriendlywebdesign.com/desktop-blogging-software-review-blogjet/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 06:01:14 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://searchfriendlywebdesign.com/desktop-blogging-software-review-blogjet/</guid>
		<description><![CDATA[This is a review of the BlogJet Software. In reviewing this software I used it to&#160;publish several posts to various blogs.

BlogJet costs about $45 and you can get 30 trial. In the beginning I was having issues connecting to any of my blogs.. it turned out something either happened during install or I had a [...]]]></description>
			<content:encoded><![CDATA[<p>This is a review of the BlogJet Software. In reviewing this software I used it to&nbsp;publish several posts to various blogs.</p>
<p><span id="more-37"></span></p>
<p>BlogJet costs about $45 and you can get 30 trial. In the beginning I was having issues connecting to any of my blogs.. it turned out something either happened during install or I had a bad file but I had to uninstall and try again.. worked fine after second installation. </p>
<p>In the process I attempted to use the support forum and there was support. My post was replied to&hellip; within a few hrs I think. </p>
<p>I pretty much felt attached to&nbsp;this software from&nbsp;the moment I opened it. The interface is very clean, inviting and easy to use.</p>
<p>Some key features that I liked were the ability to set the timestamp, add tags, insert YouTube video and toggle between code and visual view. </p>
<p>One thing I was confused about was being able to split my post.. in WordPress I call it &ldquo;The More&rdquo; link&hellip; Where you have the intro and the post cuts off with a link to read the rest of&nbsp; the post (sorry I never new this had a particular name). In BlogJet it&rsquo;s called Extended Entry and I did find it under the format tab.</p>
<p>All in all&hellip; nicely done&hellip; I give&nbsp;it 4.5 Stars.&nbsp;I&rsquo;m pretty sure I&rsquo;m going to buy a license for this but I still have a some other softwares to review.</p>
<img src="http://feed.searchfriendlywebdesign.com/~r/SEFWD/~4/247576189" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/desktop-blogging-software-review-blogjet/feed/</wfw:commentRss>
		<feedburner:origLink>http://searchfriendlywebdesign.com/desktop-blogging-software-review-blogjet/</feedburner:origLink></item>
	</channel>
</rss>
