<?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>Best Web Design Studio</title>
	<atom:link href="http://www.bestwebdesignstudio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bestwebdesignstudio.com</link>
	<description>Affordable modern web design since 2005.</description>
	<lastBuildDate>Wed, 16 May 2012 09:55:38 +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>WordPress security tips that could save your site</title>
		<link>http://www.bestwebdesignstudio.com/wordpress-security-tips-save-site/</link>
		<comments>http://www.bestwebdesignstudio.com/wordpress-security-tips-save-site/#comments</comments>
		<pubDate>Wed, 16 May 2012 09:54:01 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress security]]></category>

		<guid isPermaLink="false">http://www.bestwebdesignstudio.com/?p=1229</guid>
		<description><![CDATA[WordPress is very popular platform these days (around 8.5% of all world’s websites are powered by WordPress!). As it is Open Source, everybody has access to its Source Code and can experiment with new cracking/hacking methods easily. Don’t get me wrong, WordPress is secure piece of software. With little effort you can protect your WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is very popular platform these days (around 8.5% of all world’s websites are powered by WordPress!). As it is Open Source, everybody has access to its Source Code and can experiment with new cracking/hacking methods easily. Don’t get me wrong, WordPress is secure piece of software.</p>
<p>With little effort you can protect your WordPress site following this few easy steps to harden the security of your WordPress installation.</p>
<p><strong>1. Don’t use ‘admin’ username</strong></p>
<p>As of version 3.0, WordPress have the option to change your admin username into whatever you like. I encourage you to do so. Anybody who tries to get into your WordPress admin section will try with ‘admin’ as a username. If you change it, potential hacker has to hack both username and password.</p>
<p><strong>2. Install Login LockDown Plugin</strong></p>
<p>Potential hacker will try to break your username/password combination using brute force or dictionary attack on your WordPress Login screen. Login LockDown Plugin will prevent that.</p>
<p>Login LockDown records the IP address and timestamp of every failed login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, then the login function is disabled for all requests from that range. This helps to prevent brute force password discovery.</p>
<p>Currently the plugin defaults to a 1 hour lock out of an IP block after 3 failed login attempts within 5 minutes. This can be modified via the Options panel. Administrators can release locked out IP ranges manually from the panel.</p>
<p>You can download Login LockDown plugin from <a href="http://wordpress.org/extend/plugins/login-lockdown/" target="_blank">here.</a></p>
<p><strong>3. Install Secure WordPress plugin</strong></p>
<p>There are many places inside your WordPress site that is telling a potential hacker a version of your WordPress installation, as well as other dangerous information.</p>
<p>Secure WordPress beefs up the security of your WordPress installation by removing error information on login pages, adds index.html to plugin directories, hides the WordPress version and much more.</p>
<ul>
<li>Removes error-information on login-page</li>
<li>Adds index.php plugin-directory (virtual)</li>
<li>Removes the wp-version, except in admin-area</li>
<li>Removes Really Simple Discovery</li>
<li>Removes Windows Live Writer</li>
<li>Removes core update information for non-admins</li>
<li>Removes plugin-update information for non-admins</li>
<li>Removes theme-update information for non-admins (only WP 2.8 and higher)</li>
<li>Hides wp-version in backend-dashboard for non-admins</li>
<li>Removes version on URLs from scripts and stylesheets only on frontend</li>
<li>Blocks any bad queries that could be harmful to your WordPress website</li>
</ul>
<p>You can download this plugin from <a href="http://wordpress.org/extend/plugins/secure-wordpress/" target="_blank">here.</a></p>
<p><strong>4. Move your wp-config.php file</strong></p>
<p>In your wp-config.php file there is database connection info as well as other data that should be kept from anybody to access. From WordPress 2.6 you can easily move this file from root folder location.</p>
<p>To do this simply move your wp-config.php file up one directory from your WordPress root. WordPress will automatically look for your config file there if it can’t find it in your root directory.</p>
<p>This way, nobody except a user with FTP or SSH access to your server will not be able to read this file.</p>
<p><strong>5. Change database table prefixes</strong></p>
<p>By default, WordPress table prefix is wp_. As WordPress is Open Source, if you leave your table prefixes intact, everybody know the exact names of the database tables.</p>
<p>You can change your table prefix during installation by entering new prefix in your wp-config.php file. For changing the prefix after install, use <a href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">WP Secure Scan plugin.</a></p>
<p><strong>6. Change default secret keys</strong></p>
<p>When you open your wp-config.php file, you will see 4 secret keys:<br />
1 define(&#8216;AUTH_KEY&#8217;, &#8221;);<br />
2 define(&#8216;SECURE_AUTH_KEY&#8217;, &#8221;);<br />
3 define(&#8216;LOGGED_IN_KEY&#8217;, &#8221;);<br />
4 define(&#8216;NONCE_KEY&#8217;, &#8221;);</p>
<p>I am amazed how many people, even experienced ones, do not change this keys. A secret key is a hashing salt that is used against your password to make it even stronger.</p>
<p>Simply visit <a href="https://api.wordpress.org/secret-key/1.1" target="_blank">https://api.wordpress.org/secret-key/1.1</a> and copy the 4 generated keys into your <em>wp-config.php</em> file. It’s that simple.</p>
<p><strong>7. Update</strong></p>
<p>Always update to the latest version of the WordPress, as it is the most secure one. Don’t forget to update your plugins and themes.</p>
<p>Updating your WordPress installation, plugins and Themes is really easy to do from your admin, so do it as soon as possible. WordPress is terrific piece of software and y updating you will rarely or never brake some site functionality.</p>
<p><strong>8. Protect your <em>wp-admin</em></strong></p>
<p><a href="http://www.askapache.com/wordpress/htaccess-password-protect.html" target="_blank">AskApache Password Protect Plugin</a> adds some serious password protection to your WordPress Blog. Not only does it protect your <em>wp-admin</em> directory, but also your <em>wp-includes, wp-content, plugins</em>, etc. as well.</p>
<p><strong>9. Use strong password</strong></p>
<p>This is the most trivial task to do to protect your WordPress installation. But, many people use weak passwords which are easy to break to modern brute force attack programs used.</p>
<p>There are many tips how to make a strong password, I personally like this <a href="http://strongpasswordgenerator.com/" target="_blank">Strong Password Generator.</a> Read some tips over there to help you understand what a strong password is.</p>
<p><strong>10. Backup your data regularly</strong></p>
<p>This is not a security tip, but is related. If someone hacks your site and you don’t have a backup, it will be very difficult to return the site back to its previous state.</p>
<p>Regular backup is a must. There is a great list of WordPress Backup Plugins available <a href="http://wordpress.org/extend/plugins/tags/backup" target="_blank">here.</a></p>
<p>A few more general tips for securing WordPress installation:</p>
<ul>
<li>Remove unused users from WordPress.</li>
<li>Remove unused WordPress themes.</li>
<li>Remove all unused WordPress plugins.</li>
</ul>
<p>If you don’t have time to follow all of the above tips, please follow at least two of them. It will help you to enjoy the effort you invested in your WordPress site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/wordpress-security-tips-save-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where to find tracking code for Google Analytics?</title>
		<link>http://www.bestwebdesignstudio.com/find-tracking-code-google-analytics/</link>
		<comments>http://www.bestwebdesignstudio.com/find-tracking-code-google-analytics/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 11:25:00 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.bestwebdesignstudio.com/?p=1049</guid>
		<description><![CDATA[To access your tracking code from within your Google Analytics account: Log in to Google Analytics at http://www.google.com/analytics From the Overview page, select the account that has the profile for the tracking code you&#8217;re looking for, as the code is profile-specific. Select the profile from the accounts Overview page. From that profile&#8217;s Actions column, click [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;">To access your tracking code from within your Google Analytics account:</span></p>
<ol>
<li>Log in to Google Analytics at <a href="http://www.google.com/analytics" target="_blank">http://www.google.com/analytics</a></li>
<li>From the <strong>Overview</strong> page, select the account that has the profile for the tracking code you&#8217;re looking for, as the code is profile-specific.</li>
<li>Select the profile from the accounts <strong>Overview</strong> page.</li>
<li>From that profile&#8217;s <strong>Actions</strong> column, click <strong>Edit</strong></li>
<li>At the top right of the &#8216;Main Website Profile Information&#8217; box, click <strong>Check Status</strong></li>
<li>Your tracking code can be copied and pasted from the text box in the <strong>Instructions for adding tracking</strong> section</li>
</ol>
<p>When adding your tracking code to your web pages, make sure to paste it into the body section of your HTML code, immediately preceding the &lt;/body&gt; tag if you use the ga,js code. If you use the asynchronous code, you should add it immediately preceding the &lt;/head&gt; tag.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/find-tracking-code-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to redirect error 404 to home page in WordPress</title>
		<link>http://www.bestwebdesignstudio.com/redirect-error-404-home-page-wordpress/</link>
		<comments>http://www.bestwebdesignstudio.com/redirect-error-404-home-page-wordpress/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 04:45:30 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.bestwebdesignstudio.com/?p=1041</guid>
		<description><![CDATA[If you don&#8217;t have a 404.php INSIDE your theme folder &#8211; WP displays the main (index) page when page not found, without you messing with the htaccess. If this doesn&#8217;t work, put this code into a file named 404.php : &#60;?php header("Status: 301 Moved Permanently"); header("Location:http://www.xxxxxx.xxx"); ?&#62; (xxxxxx.xxx is your domain name) Upload 404.php into [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t have a 404.php INSIDE your theme folder &#8211; WP displays the main (index) page when page not found, without you messing with the htaccess.</p>
<p>If this doesn&#8217;t work, put this code into a file named 404.php :</p>
<pre><code>&lt;?php header("Status: 301 Moved Permanently"); header("Location:http://www.xxxxxx.xxx"); ?&gt;</code></pre>
<p><em>(xxxxxx.xxx is your domain name)</em></p>
<p>Upload 404.php into /wp-content/themes/classic/    &#8211; change <em>&#8220;clasic&#8221;</em> to your theme name</p>
<p>&nbsp;</p>
<h2>WordPress Not Found Error after this?</h2>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;"><strong>The Cause of a WordPress Not Found Error.Why did this happen in the first place?</strong></span></p>
<p>This error is most likely due to the fact that you&#8217;ve changed your WordPress permalink structure. The settings for your permalink structure are found in your Admin panel, under Settings » Permalinks. Basically, it lets you choose how the URLs of your WordPress site will look.</p>
<p>The default is always the first radio button, which says &#8220;http://www.mysite.com/?p=123&#8243;. However, if you&#8217;re like me &#8211; you&#8217;d rather have something more search engine friendly like &#8220;http://www.mysite.com/category/page&#8221; &#8212; and you probably selected the last option which says &#8220;Custom Structure,&#8221; then saved the change. This is where the error occurs.</p>
<p>Here&#8217;s the reason why: by default, your .htaccess file is CHMODded to 644: disallowing WordPress to successfully edit it. You&#8217;ll even see the message in your admin panel under &#8220;Permalinks&#8221; that says this:</p>
<p><em><strong>If your .htaccess file were writable, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all.</strong></em></p>
<p>It is very easy to look past this message due to the fact that it&#8217;s at the bottom of the screen, appearing in italics, and nearly blending in with the box above it. Anyway &#8211; in order to successfully change your permalink structure, you would have had to make the permission settings of your .htaccess file more lenient, so that WordPress can be able to write changes within it.</p>
<p>&nbsp;</p>
<h2>How to Fix the Error ?</h2>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;"><strong>Don&#8217;t worry, it&#8217;s super easy&#8230;and quick</strong></span></p>
<div>
<p>To remedy this problem, simply FTP into your website space and right click your .htaccess file. Change the settings or &#8220;file attributes&#8221; to 666. Go back to your Permalinks page, choose the link structure you want, and save it. Now, it works!</p>
<p>Don&#8217;t forget to go back to your FTP space and CHMOD your .htaccess file back to 644 &#8211; otherwise, it&#8217;s a major security risk!</p>
</div>
<ol>
<li>Get into your website&#8217;s FTP space, and look for the .htaccess file</li>
<li>Highlight the .htaccess file in your FTP program, and open its CHMOD settings. It&#8217;s probably set to 644. Change it to 666.</li>
<li>Go back into your WordPress site&#8217;s admin section, and navigate to Settings » Permalinks.</li>
<li>Edit the link structure to whatever you originally wanted (I recommend that you use /%category%/%postname%), and then save it. You should no longer see a &#8220;grayed out&#8221; .htaccess box on this page, saying that the file is not writable.</li>
<li>Visit any page of your site and confirm that the error no longer happens. If not, congrats!</li>
<li>Finally, as a security measure, go back to your FTP space and change your .htaccess file back to 644, since you probably will never have to edit it through the WordPress admin panel ever again.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/redirect-error-404-home-page-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems with Moving Virtuemart?</title>
		<link>http://www.bestwebdesignstudio.com/problems-moving-virtuemart/</link>
		<comments>http://www.bestwebdesignstudio.com/problems-moving-virtuemart/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 00:05:54 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.bestwebdesignstudio.com/?p=1038</guid>
		<description><![CDATA[When you move virtuemart from one URL to another, you have to update the URL settings in your virtuemart configuration. This also applies to moving from or to a subdomain or folder. To update this file after moving your shop, FTP to your host. Download    virtuemart.cfg.php Path to File Here administrator/components/com_virtuemart/virtuemart.cfg.php Change your shop URL, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>When you move virtuemart from one URL to another, you have to update the URL settings in your virtuemart configuration. This also applies to moving from or to a subdomain or folder.</strong></p>
<p>To update this file after moving your shop, FTP to your host.<br />
Download    <strong><em>virtuemart.cfg.php</em></strong><br />
Path to File Here<br />
<em>administrator/components/com_virtuemart/virtuemart.cfg.php</em></p>
<p>Change your shop URL, and your Secure URL to your new shop address.Both must have either the www. or non-www. They must match UNLESS one is https but it styill must contain the www or non-www like the other one.</p>
<p>If you moved from one host to another, and your thumbnails are not showing<br />
Most of the time you need to re-create the thumbnails. This is done by</p>
<p>Go into your virtuemart administrator. Then to configuration, and then the &#8220;site tab&#8221;.</p>
<p>Disable &#8220;Enable Dynamic Thumbnail Resizing?&#8221; Save Your Changes<br />
Then Re-enable &#8220;Enable Dynamic Thumbnail Resizing?&#8221; Again, and Save.</p>
<p>Also Make Sure The Image Directory is 755</p>
<p>This can cause missing thumbnails</p>
<p>ADDITIONAL IMAGES USUALLY IF CREATED VIA THE MEDI MANAGER HAVE ABSOLUTE URLS. SO, after moving from one domain to another, you need to use csv improved to remove the domain from the url. Or you may use myphpadmin to update the product_files list without the absolute url.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/problems-moving-virtuemart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set more Google Analytics accounts to watch one site?</title>
		<link>http://www.bestwebdesignstudio.com/set-google-analytics-accounts-watch-site/</link>
		<comments>http://www.bestwebdesignstudio.com/set-google-analytics-accounts-watch-site/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 21:06:33 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.bestwebdesignstudio.com/?p=1033</guid>
		<description><![CDATA[Do you need to watch Google Analytics website&#8217;s statistics on more accounts? One account for administrator and another for website owner? You cannot just put two codes at the end of webpage &#8211; it doesn&#8217;t work. Here is the code which works: &#60;script type=&#8221;text/javascript&#8221;&#62;   var _gaq = _gaq &#124;&#124; []; _gaq.push(['_setAccount', 'UA-XXXXXXX-X']); _gaq.push(['_trackPageview']); _gaq.push(['t2._setAccount', [...]]]></description>
			<content:encoded><![CDATA[<p>Do you need to watch Google Analytics website&#8217;s statistics on more accounts? One account for administrator and another for website owner?</p>
<p>You cannot just put two codes at the end of webpage &#8211; it doesn&#8217;t work. Here is the code which works:</p>
<p><em>&lt;script type=&#8221;text/javascript&#8221;&gt;</em><br />
<em>  var _gaq = _gaq || [];</em><br />
<em>_gaq.push(['_setAccount', 'UA-XXXXXXX-X']);</em><br />
<em>_gaq.push(['_trackPageview']);</em><br />
<em>_gaq.push(['t2._setAccount', 'UA-XXXXXXXX-X']);</em><br />
<em>_gaq.push(['t2._trackPageview']);</em></p>
<p><em>  (function() {</em><br />
<em>    var ga = document.createElement(&#8216;script&#8217;); ga.type = &#8216;text/javascript&#8217;; ga.async = true;</em><br />
<em>    ga.src = (&#8216;https:&#8217; == document.location.protocol ? &#8216;https://ssl&#8217; : &#8216;http://www&#8217;) + &#8216;.google-analytics.com/ga.js&#8217;;</em><br />
<em>    var s = document.getElementsByTagName(&#8216;script&#8217;)[0]; s.parentNode.insertBefore(ga, s);</em><br />
<em>  })();</em><br />
<em>&lt;/script&gt;</em></p>
<p>Copy this text and change 2 Google Analytics account numbers in it and then place it to the end of your web page, just before <em>&lt;/head&gt;</em> tag.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/set-google-analytics-accounts-watch-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change admin password in Joomla?</title>
		<link>http://www.bestwebdesignstudio.com/change-admin-password-joomla/</link>
		<comments>http://www.bestwebdesignstudio.com/change-admin-password-joomla/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 23:03:54 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bestwebdesignstudio.com/?p=1024</guid>
		<description><![CDATA[Did you move your Joomla installation and password doesn&#8217;t work or did you forget your Joomla admin password? Change the Password in the Database. If the admin user is still defined, the simplest option is to change the password in the database to a known value. This requires that you have access to the MySQL [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Did you <a title="How to move your Joomla! 1.5 site to a new server" href="http://www.bestwebdesignstudio.com/how-to-move-your-joomla-1-5-site-to-a-new-server">move your Joomla installation</a> and password doesn&#8217;t work or did you forget your Joomla admin password?</strong></p>
<p><strong>Change the Password in the Database.</strong></p>
<p>If the admin user is still defined, the simplest option is to change the password in the database to a known value. This requires that you have access to the MySQL database using phpMyAdmin.</p>
<ul>
<li>Navigate to phpMyAdmin and select the database for the Joomla! site in the left-hand drop-down list box. This will show the database tables on the left side of the screen.</li>
<li>Click on the table &#8220;jos_users&#8221; in the list of tables.</li>
<li>Click on the &#8220;Browse&#8221; button in the top toolbar. This will show all of the users that are set up for this site.</li>
<li>Find the user whose password you want to change and press the Edit icon for this row.</li>
<li>A form will display that allows you to edit the password field. Copy the value:</li>
</ul>
<p style="padding-left: 60px;">d2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199</p>
<p>into the password field and press the Go button. phpMyAdmin should display the message &#8220;Affected rows: 1&#8243;. At this point, the password should be changed to &#8220;<strong>secret</strong>&#8220;.</p>
<ul>
<li>Log in with this user and password (<strong>secret</strong>) and change the password of this user to a secure value. Check all of the users using the User Manager to make sure they are legitimate. If you have been hacked, you may want to change all of the passwords on the site.</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/change-admin-password-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to move your Joomla! 1.5 site to a new server?</title>
		<link>http://www.bestwebdesignstudio.com/how-to-move-your-joomla-1-5-site-to-a-new-server/</link>
		<comments>http://www.bestwebdesignstudio.com/how-to-move-your-joomla-1-5-site-to-a-new-server/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 23:33:26 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bestwebdesignstudio.com/?p=932</guid>
		<description><![CDATA[If you&#8217;ve been running a website for a while, you have probably already accumulated quite a bit of content and several 3rd party components and/or modules, and you do not want to start fresh with a new Joomla! installation. This article explains what I did to move HowToJoomla from my test server to the server [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been running a website for a while, you have probably already accumulated quite a bit of content and several 3rd party components and/or modules, and you do not want to start fresh with a new Joomla! installation. <strong>This article explains what I did to move HowToJoomla from my test server to the server that it is on now.</strong></p>
<p>You will want to move your Joomla! installation rather than re-install if you fit one or all of the following parameters:</p>
<p>* Your site has accumulated a large amount of data in the database over time (sections, categories, content items, contacts, newsfeeds, etc.).<br />
* Your site uses multiple 3rd-part extensions already configured and/or customized for your site.</p>
<p><strong>Step 1: Backup everything!</strong></p>
<p>The first thing you want to do is backup all files within your Joomla! installation. Create a folder on your local system, and download all files to that folder using your ftp client application. I used FileZilla as my ftp client application to download all of my files to a folder on my desktop I named &#8220;howtojoomla&#8221;.</p>
<p><strong>Step 2: Export your database</strong></p>
<p>Note: For this step, it really helps if you have phpMyAdmin installed on your server. Most hosting companies have phpMyAdmin already installed. If you are unsure, ask your hosting provider.</p>
<p>The second thing you need to do is export your Joomla! database. The best thing to do is to export it into an SQL file, which makes importing it easier in a later step. An SQL file will contain all of the necessary SQL commands for creating your database tables and filling them with your data. Be sure you export the entire database.</p>
<p><strong>Step 3: Modify configuration.php</strong></p>
<p>This step is very important. Go to the folder on your local system to which you downloaded all of your Joomla! files. In the first level folder, you will find the file named &#8220;configuration.php&#8221;. Open this file with a text editor and make the necessary changes. At the very least, you will probably need to change the following parameters:</p>
<p>* $mosConfig_absolute_path: This is the absolute server path to your new Joomla! installation. It will probably look something like &#8220;/path/to/joomla/installation&#8221;.<br />
* $mosConfig_cachepath: This is the absolute server path to the cache for your Joomla! installation. It will probably look something like &#8220;/path/to/joomla/installation/cache&#8221;.<br />
* $mosConfig_live_site: This is your website&#8217;s url. It will be something like &#8220;http://www.yoursite.com&#8221;.<br />
* $mosConfig_host: This is the location of the server that hosts your MySQL database. For most instances, this value will be &#8220;localhost&#8221;. If you are unsure, ask your hosting provider.<br />
* $mosConfig_db: This is the name of your MySQL database.<br />
* $mosConfig_user: This is the database user name. Make sure this user has all privileges on your database.<br />
* $mosConfig_password: This is the password for your MySQL database user.</p>
<p><strong>Step 4: Upload all of your files to your new server</strong></p>
<p>Using an ftp client application (like FileZilla), upload all of your files to the location on your new server where you want to install Joomla!.</p>
<p><strong>Step 5: Import your database to your new MySQL server</strong></p>
<p>Using phpMyAdmin (or console commands if you are an advanced database administrator) and the SQL file you generated in step 2, import your old database into your new database.</p>
<p><strong>Step 6: Test your new installation</strong></p>
<p>Your move should now be complete, but please don&#8217;t take my word for it. Test your site to make sure that everything is in it&#8217;s proper place and working the way you expect it to. For example, if you did not use relative url&#8217;s for your links on your old site, they will not work properly on your new site.</p>
<p>If you are uneasy or uncomfortable with this process, we strongly recommend that you <a title="CONTACT Best Web Design Studio" href="http://www.bestwebdesignstudio.com/contact-webdesign-studio">hire a professional</a> to do this for you.</p>
<p><a title="How to change admin password in Joomla?" href="http://www.bestwebdesignstudio.com/change-admin-password-joomla">How to change admin password in Joomla?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/how-to-move-your-joomla-1-5-site-to-a-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send big file on internet? Need to email large file?</title>
		<link>http://www.bestwebdesignstudio.com/how-to-send-big-file-on-internet-need-to-email-large-file/</link>
		<comments>http://www.bestwebdesignstudio.com/how-to-send-big-file-on-internet-need-to-email-large-file/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 13:50:00 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[email large file]]></category>

		<guid isPermaLink="false">http://bestwebdesignstudio/?p=912</guid>
		<description><![CDATA[Do you need to send big file over internet and email is not the best solution, just because file is too big? Use one of these free big file sending services: &#160; 1. DropSend &#8211; Free Large File Sending Service File too big for email? Send large files of up to 2GB. Paid accounts offer [...]]]></description>
			<content:encoded><![CDATA[<p>Do you need to send big file over internet and email is not the best solution, just because file is too big? Use one of these free big file sending services:</p>
<p>&nbsp;</p>
<p><strong>1. <a title="DropSend" href="http://www.dropsend.com/" target="_blank">DropSend</a> &#8211; Free Large File Sending Service</strong><br />
File too big for email? Send large files of up to 2GB. Paid accounts offer many amenities and can be used to send and receive large files<br />
<strong><br />
2. <a title="YouSendIt" href="https://www.yousendit.com/" target="_blank">YouSendIt</a> &#8211; Free Big File Sending Service</strong><br />
YouSendIt makes it really easy to deliver files larger than what your email service may allow. Various subscription levels cover just about every file delivery need, and desktop applications as well as plug-ins make YouSendIt particularly convenient.<br />
Free YouSendIt accounts offer enough bandwidth only for occasional file sending, however.</p>
<p><strong>3. <a title="Pando" href="http://www.pando.com/" target="_blank">Pando</a> &#8211; Free Large File Sending Service</strong><br />
Pando combines secure P2P file transfers with email attachments so you can send any file to any email address with speed, ease and flexibility. Unfortunately, Pando requires you to use a little Windows or Mac app for the actual file transfers and is not available if you or your recipient uses a different platform.</p>
<p><strong>4. <a title="SendThisFile" href="http://www.sendthisfile.com/" target="_blank">SendThisFile</a> &#8211; Free Big File Sending Service</strong><br />
SendThisFile lets you send files with no size limit via email for free, while paid accounts offer many amenities and can be used to send and receive large files in a branded manner through a web site, for example. All accounts do have a six day pick-up time limit, though, and SendThisFile does incorporate secure transfer and storage, but no virus scanning.<br />
<strong><br />
5. <a title="TransferBigFiles" href="https://www.transferbigfiles.com/" target="_blank">TransferBigFiles</a> &#8211; Free Large File Sending Service</strong><br />
TransferBigFiles makes it easy to deliver larger files (up to 1000 MB) to email recipients, and the files can even be protected with a password. Unfortunately, files sent through TransferBigFiles are available to be downloaded by the recipient for a mere five days. Amenities like an address book, distribution lists and email program integration would be nice.</p>
<p><strong>6. <a title="MailBigFile" href="http://www.mailbigfile.com/" target="_blank">MailBigFile </a>- Free Big File Sending Service</strong><br />
MailBigFile is a fast and simple way to send moderately large files (up to 512 MB) to a single email recipient. A pro version allows for larger files and more downloads as well as secure connections, but you still cannot password-protect your files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/how-to-send-big-file-on-internet-need-to-email-large-file/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Favicon &#8211; what is favicon? Do I need favicon on my site?</title>
		<link>http://www.bestwebdesignstudio.com/favicon-what-is-favicon-do-i-need-favicon-on-my-site/</link>
		<comments>http://www.bestwebdesignstudio.com/favicon-what-is-favicon-do-i-need-favicon-on-my-site/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 13:49:26 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[favicon]]></category>

		<guid isPermaLink="false">http://bestwebdesignstudio/?p=910</guid>
		<description><![CDATA[What is favicon? A favicon , also known as a favorites icon, shortcut icon, website icon, URL icon, or bookmark icon is a 16×16 or 32×32 pixel square icon associated with a particular website or webpage.Web designer can create such an icon and install it into a website by several means, and most graphical web [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><strong>What is favicon?</strong></p>
<p>A favicon , also known as a favorites icon, shortcut icon, website icon, URL icon, or bookmark icon is a 16×16 or 32×32 pixel square icon associated with a particular website or webpage.Web designer can create such an icon and install it into a website by several means, and most graphical web browsers will then make use of it. Browsers that provide favicon support typically display a page&#8217;s favicon in the browser&#8217;s address bar and next to the page&#8217;s name in a list of bookmarks. Browsers that support a tabbed document interface typically show a page&#8217;s favicon next to the page&#8217;s title on the tab.</p>
<p><strong>Creating a favicon</strong></p>
<p>A favicon should be 16 X 16 pixels with 16 colors and the file name should be favicon.ico. Simply upload the file, favicon.ico to the root web directory of your hosted website with your favorite FTP program, Microsoft FrontPage, Dreamweaver MX or whatever. Make sure your favicon file is named “favicon.ico.” When someone bookmarks your site with a browser that supports favicons, your favicon will appear.</p>
<p><strong>Is it good to have a favicon on my website?</strong></p>
<p>If a website does use a favicon, it makes it all the more easier and quicker to look through a list of bookmarks and find then one that you’re looking for, because your eye will notice the colorful favicons before it does the text of each bookmark’s name and the blank icons surrounding it.</p>
<p><strong>How to set favicon in WordPress?</strong></p>
<ol>
<li>You will now need to edit your header.php of your wordpress blog. Depending on the theme you use, locate the header.php folder and edit the file by adding the following code:<br />
<blockquote><p><img class="alignnone size-full wp-image-1095" title="link-code" src="http://www.bestwebdesignstudio.com/wp-content/uploads/2011/07/link-code.gif" alt="link-code" width="311" height="16" /></p></blockquote>
</li>
<li>Save your header.php file</li>
<li>Hard refresh your browser by pressing the Ctrl+F5 keys. You should now be able to see your favicon next to your URL.</li>
</ol>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/favicon-what-is-favicon-do-i-need-favicon-on-my-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Google PR? Why is Page Rank important for me? Google PageRank answers.</title>
		<link>http://www.bestwebdesignstudio.com/what-is-google-pr-why-is-page-rank-important-for-me-google-pagerank-answers/</link>
		<comments>http://www.bestwebdesignstudio.com/what-is-google-pr-why-is-page-rank-important-for-me-google-pagerank-answers/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 13:48:57 +0000</pubDate>
		<dc:creator>BWD Studio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://bestwebdesignstudio/?p=908</guid>
		<description><![CDATA[Here are some questions and answers regarding search engine optimization (SEO), the &#8220;science&#8221; of achieving high search engine rankings! Does Google AdWords Help My Ranking? No, (un)fortunately it does not. Google has a very strict policy on separating their search engine index and their pay-per-click service Google AdWords. The only way to improve your ranking [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Here are some questions and answers regarding search engine optimization (SEO), the &#8220;science&#8221; of achieving high search engine rankings!</strong></p>
<p><strong><br />
</strong></p>
<p><strong>Does Google AdWords Help My Ranking?</strong><br />
No, (un)fortunately it does not. Google has a very strict policy on separating their search engine index and their pay-per-click service Google AdWords. The only way to improve your ranking is to optimize your site and to increase your Google PageRank by doing link exchange.</p>
<p>&nbsp;</p>
<p><strong>My web site&#8217;s been listed in Google for several months now, but is nowhere near the top rankings for the search queries that I&#8217;m targeting. What did I do wrong?</strong><br />
Apparently, Google places new web sites in a so-called &#8220;sandbox&#8221;, not allowing them to achieve top rankings for competitive keywords right away. This contraversial policy is apparently intended to discourage fly-by-night sites that hope to make a quick buck by exploiting Google&#8217;s ranking system. The only way to get out of this sandbox is to wait it out &#8211; sometimes the wait is several months, even a year. The good news is that once your site is let out of the sandbox it will immediately get the high rankings it deserves.</p>
<p>&nbsp;</p>
<p><strong>How can I tell whether my site is stuck in Google&#8217;s sandbox?</strong><br />
One clue is if your site ranks well in other search engines such as Yahoo! and MSN Search, but ranks in the hundreds (or not at all) for the same query on Google. Another way is to use Google&#8217;s allinanchor: type search with the same query. If your site ranks well for allinanchor but poorly for the straight query search, it&#8217;s likely that your site is in the sandbox.</p>
<p><strong><br />
</strong></p>
<p><strong>Does the anchor text of the links to my page influence the position of the page in search results?</strong><br />
Yes, it is one of the most important factors. Do a Google search for the query that you want your page to rank well with, for example &#8220;fine wine&#8221; (without the quotes). Now use Google&#8217;s allinanchor search to find the most popular pages that have the words &#8220;fine&#8221; and &#8220;wine&#8221; in the anchor text of their incoming links, like this: &#8220;allinanchor:fine wine&#8221; (again, without the quotes). Usually, you&#8217;ll find that the top 30 results in the straight query search will be almost exactly the same as the top 30 in the allinanchor search. The order may differ, but this shows how great an influence Google gives to the anchor text of incoming links.</p>
<p>&nbsp;</p>
<p><strong>When I ask Google, which other sites link to my site, Google does not list any sites. But I know that other sites link to me. Am I doing something wrong?</strong><br />
If you have a web site www.xzy.com, you can find out which other sites link to your site by asking Google for link:www.xyz.com. Other search engines, such as MSN or Yahoo!, have similar features. If Google (or MSN, or Yahoo!) does not list all the links, this might have to do with any of the following reasons:<br />
1.) Google does not list all of the links that it knows about. It tends to list links from pages with higher PageRank.<br />
2.) The link might have been added within the last days, so that Google has not yet spidered the page that links to you.<br />
3.) The web page that links to your site might not be in the Google index at all.</p>
<p><strong><br />
</strong></p>
<p><strong>When my friend in New York and I in California both search Google for the same query, we get different results. Does Google provide different results for every region?</strong><br />
No, it does not. Different results are related to the regular updates of the Google index. Google has several data centers around the US and the rest of the world. If you visit www.google.com, it is not guaranteed that your query is sent to the same data center every time. Usually your query should end up at the nearest data center, so that your Google search should be answered by the same data center every time. Thus, if you and your buddy get different Google results, this is because your query has been answered by different data centers.</p>
<p><strong><br />
</strong></p>
<p><strong>I tried the Google Toolbar and found out that my Google PageRank is 4. Is that good or bad? How can I improve my Google PageRank?</strong><br />
Most pages with a decent number of links have a Google PageRank of 4. Thus, your PageRank is OK, but of course you can always improve your link popularity and thereby improve your PageRank. If you want to learn more about the PageRank algorithm, please visit the following site (you have been warned: it might get technical): http://pr.efactory.de/</p>
<p><strong><br />
</strong></p>
<p><strong>I recently tried out the Google Toolbar. What is the Google PageRank and why does it change from time to time?</strong><br />
The Google PageRank is a web page&#8217;s score, based on link popularity, i.e. the number and quality of links from other sites. The Google Toolbar displays the PageRank in a very simplified and sometimes inaccurate way. Even some pages that are not in the Google index, will show a Google PageRank. Thus, don&#8217;t worry to much about a low or changing value. Of course, this does not mean, that the Google PageRank itself is unimportant &#8211; on the contrary. It still is important for you to have other sites link to you. But for some reason the Google Toolbar does not really reflect the PageRank in a consistent and proper manner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bestwebdesignstudio.com/what-is-google-pr-why-is-page-rank-important-for-me-google-pagerank-answers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 16/32 queries in 0.036 seconds using disk: basic

Served from: www.bestwebdesignstudio.com @ 2012-05-19 12:18:38 -->
