<?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>Bagesh Singh&#039;s Blog &#187; htaccess</title>
	<atom:link href="http://www.bageshsingh.com/bagesh-blog/tag/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bageshsingh.com/bagesh-blog</link>
	<description>Shortest Distance to  Web Solutions &#38; Software Solutions</description>
	<lastBuildDate>Wed, 22 Feb 2012 18:42:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Uploading large(big) files in PHP using .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/11/uploading-largebig-files-in-php-using-htaccess-2/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/11/uploading-largebig-files-in-php-using-htaccess-2/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 04:03:58 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Interview Question]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[tips and technique]]></category>
		<category><![CDATA[upload large file]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=870</guid>
		<description><![CDATA[I’ve seen that many of my friends are struggling with the uploads of the bigger or larger files in PHP. After looking at their struggle, i’m here to solve the problem of uploading larger or bigger files in PHP. Most of the web servers are configured such a way that a user can only upload [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve seen that many of my friends are struggling with  the uploads of the bigger or larger files in PHP. After looking at  their struggle, i’m here to solve the problem of uploading larger or  bigger   files in PHP.</p>
<p>Most of the web servers are configured such a way  that a user can only upload the maximum file size of 2MB. So there might  be the problem for the people who wants to upload the .pdf file of size  around 15MB. But, you can increse the maximum upload file size limit by  using .htaccess file.</p>
<p>Here is a small tips for you which you can use to  upload such a large file using file field of the form and  move_uploaded_file() function in PHP.</p>
<p><strong>1)</strong> Create a .htaccess file in the root folder of web server.</p>
<p><strong>2)</strong> Put the following code in side the .htaccess file and save it.</p>
<blockquote><p>php_value upload_max_filesize 20M<br />
php_value post_max_size 20M<br />
php_value max_execution_time 200<br />
php_value max_input_time 200</p></blockquote>
<p>Now you can upload the file-size up-to 20MB in a  simple way using file field in your html form and move_uploaded_file()  function available in PHP. In the above .htaccess file, uploading  capability is increased by the four parameter first one is maximum file  size for uploading, second one is maximum size of the post data , third  one is maximum time in seconds a script is allowed to run before it is  terminated by the parser and last one is maximum time in seconds a  script is allowed to parse input data such as like file uploads, POST  and GET data.</p>
<p>You can change the above parameter to upload the bigger file size than 20MB.</p>
<div id="seo_alrp_related"><h2>Posts Related to Uploading large(big) files in PHP using .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/03/how-to-do-file-uploading-using-php-curl/" rel="bookmark">how to do File Uploading Using PHP Curl</a></h3><p>File uploading through PHP Curl is very simple. You just have to append @ in front of path of file name &amp; send it to ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/what-is-maximum-size-of-a-database-in-mysql/" rel="bookmark">What is maximum size of a database in MySQL?</a></h3><p>If the operating system or filesystem places a limit on the number of files in a directory, MySQL is bound by that constraint.The efficiency of ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/05/how-do-you-install-an-extension-in-joomla/" rel="bookmark">How do you install an extension in joomla?</a></h3><p>Before starting it always is wise to read the documentation associated with an extension. Most extensions have homepages and forums, and it is a good ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/05/php-ftp-functions-list/" rel="bookmark">PHP FTP Functions List</a></h3><p>ftp_cdup — Changes to the parent directory ftp_chdir — Changes directories on a FTP server ftp_close — Closes an FTP connection ftp_connect — Opens an ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/php-form-image-upload-store-in-mysql-database-retrieve/" rel="bookmark">PHP form, Image upload. Store in MySQL database. Retrieve.</a></h3><p>USING PHP AND MYSQL TO PROVIDE AN IMAGE LIBRARY I'm often asked if MySQL can be used to store images - in other words as ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/11/uploading-largebig-files-in-php-using-htaccess-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 non-www to www or Permanent Redirect any single file URL to give some other one</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/05/301-non-www-to-www-or-permanent-redirect-any-single-file-url-to-give-some-other-one/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/05/301-non-www-to-www-or-permanent-redirect-any-single-file-url-to-give-some-other-one/#comments</comments>
		<pubDate>Fri, 21 May 2010 13:17:54 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips and technique]]></category>
		<category><![CDATA[Permanent Redirect]]></category>
		<category><![CDATA[url rewriting]]></category>
		<category><![CDATA[www to www]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=564</guid>
		<description><![CDATA[Permanent Redirect your URL from non-www to www by using following code RewriteEngine On RewriteCond %{HTTP_HOST} ^websitedesigning-company.com [NC] RewriteRule ^(.*)$ http://websitedesigning-company.com/$1 [L,R=301] or Permanent Redirect any single file URL to give some other one RewriteCond %{HTTP_HOST} ^websitedesigning-company.com$ [OR] RewriteCond %{HTTP_HOST} ^www.websitedesigning-company.com$ RewriteRule ^mtp\/career_profile\.php$ &#8220;http\:\/\/websitedesigning\-company\.com\/mtp\/career\-advice\-online&#8221; [R=301,L] OR RewriteRule oldfile name$ new file name with full path [...]]]></description>
			<content:encoded><![CDATA[<p>Permanent Redirect your URL from non-www to www by using following code</p>
<p>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^websitedesigning-company.com [NC]<br />
RewriteRule ^(.*)$ http://websitedesigning-company.com/$1 [L,R=301]</p>
<p>or</p>
<p>Permanent Redirect any single file URL to give some other one</p>
<p>RewriteCond %{HTTP_HOST} ^websitedesigning-company.com$ [OR]<br />
RewriteCond %{HTTP_HOST} ^www.websitedesigning-company.com$<br />
RewriteRule ^mtp\/career_profile\.php$  &#8220;http\:\/\/websitedesigning\-company\.com\/mtp\/career\-advice\-online&#8221;  [R=301,L]</p>
<p>OR<br />
RewriteRule oldfile name$ new file name with full path<br />
RewriteRule ^career-advice/interview-coaching$  http://www.mytalentplace.co.uk/interview-skills/interview-coaching  [R=301,L]</p>
<p>for every . and /<br />
we have to use \. or \/</p>
<div id="seo_alrp_related"><h2>Posts Related to 301 non-www to www or Permanent Redirect any single file URL to give some other one </h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/02/301-redirect-in-php-and-htaccess/" rel="bookmark">301 redirect in PHP and .htaccess</a></h3><p>What is 301 redirect ? You have a website and its all pages are ranked in the search engine. And now you</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/how-to-call-exit-after-redirecting-in-cakephp/" rel="bookmark">how to Call exit() after redirecting in cakePHP</a></h3><p>This should be no surprise to anyone who has done any serious web development in the past, but make sure you call exit() after running ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/cakephp-debug-mode-0-problem-in-ie-%e2%80%93-page-redirect-problem-issue/" rel="bookmark">cakePHP Debug Mode 0 Problem in IE – Page Redirect Problem / Issue</a></h3><p>Don’t make debug mode to 0 (zero) because there is a bug in this mode which you run you application in IE 8. Your page ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/fileexistsinpath-cakephp-function-to-check-if-fileimage-exists-in-valid-path/" rel="bookmark">FileExistsInPath CakePHP Function to Check if File/Image Exists in Valid Path</a></h3><p>function deletephotograph($id){ //Get File/Image name $data = $this-&gt;Propphotograph-&gt;find('first', array('conditions' =&gt; array('Propphotograph.id' =&gt; $id), 'fields' =&gt; array('Propphotograph.photograph'))); $image_name = $data['Propphotograph']['photograph']; // Use fileExistsInPath() function to check ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/03/how-to-do-file-uploading-using-php-curl/" rel="bookmark">how to do File Uploading Using PHP Curl</a></h3><p>File uploading through PHP Curl is very simple. You just have to append @ in front of path of file name &amp; send it to ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/05/301-non-www-to-www-or-permanent-redirect-any-single-file-url-to-give-some-other-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 redirect in PHP and .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/301-redirect-in-php-and-htaccess/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/301-redirect-in-php-and-htaccess/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:29:13 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=29</guid>
		<description><![CDATA[What is 301 redirect ? You have a website and its all pages are ranked in the search engine. And now you Posts Related to 301 redirect in PHP and .htaccessBetter Search Engine Positioning With The Help Of Gamit LinksThe Internet is teeming with millions of websites. Some are popular and some are not. Some [...]]]></description>
			<content:encoded><![CDATA[<p>What is 301 redirect ?</p>
<p>You have a website and its all pages are ranked in the search engine. And now you</p>
<div id="seo_alrp_related"><h2>Posts Related to 301 redirect in PHP and .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/07/better-search-engine-positioning-with-the-help-of-gamit-links/" rel="bookmark">Better Search Engine Positioning With The Help Of Gamit Links</a></h3><p>The Internet is teeming with millions of websites. Some are popular and some are not. Some people design websites for personal purposes and some people ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/how-to-call-exit-after-redirecting-in-cakephp/" rel="bookmark">how to Call exit() after redirecting in cakePHP</a></h3><p>This should be no surprise to anyone who has done any serious web development in the past, but make sure you call exit() after running ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/07/seo-faq-google-page-rank-pr/" rel="bookmark">SEO FAQ &#8211; Google Page Rank ( PR )</a></h3><p>1.) I am changing my domain but want to keep my PR, how do I do it? A 301 redirect is the most efficient and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/07/cloaking/" rel="bookmark">Cloaking</a></h3><p>While we gave SEO service to the website we have to intellect many aspects. In Black SEO Cloaking deals a major part. Cloaking is to ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/07/possibly-the-biggest-misconception-about-ranking-well-in-the-search-engines/" rel="bookmark">Possibly The Biggest Misconception About Ranking Well In The Search Engines</a></h3><p>In previous lessons I've taught you different optimization strategies. I've taught you the difference between onpage search engine optimization and offpage search engine optimization. Quick ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/301-redirect-in-php-and-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading large(big) files in PHP using .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/uploading-largebig-files-in-php-using-htaccess/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/uploading-largebig-files-in-php-using-htaccess/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:27:09 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[upload large file]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=25</guid>
		<description><![CDATA[I Posts Related to Uploading large(big) files in PHP using .htaccessUploading large(big) files in PHP using .htaccessI’ve seen that many of my friends are struggling with the uploads of the bigger or larger files in PHP. After looking at their struggle, ...how to do File Uploading Using PHP CurlFile uploading through PHP Curl is very [...]]]></description>
			<content:encoded><![CDATA[<p>I</p>
<div id="seo_alrp_related"><h2>Posts Related to Uploading large(big) files in PHP using .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/uploading-largebig-files-in-php-using-htaccess-2/" rel="bookmark">Uploading large(big) files in PHP using .htaccess</a></h3><p>I’ve seen that many of my friends are struggling with the uploads of the bigger or larger files in PHP. After looking at their struggle, ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/03/how-to-do-file-uploading-using-php-curl/" rel="bookmark">how to do File Uploading Using PHP Curl</a></h3><p>File uploading through PHP Curl is very simple. You just have to append @ in front of path of file name &amp; send it to ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/04/moving-magento-shop-from-development-enviornment-to-production-enviornment-or-production-to-local/" rel="bookmark">Moving Magento Shop from Development Enviornment to Production Enviornment or Production to Local</a></h3><p>Today, I had really a good chance to move Magento Shop from Development Enviournment to Product Enviornment. On that course I faced some big difficulty ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/02/custom-error-page-with-htaccess/" rel="bookmark">Custom Error Page with .htaccess</a></h3><p>In my last post of Hiding .php file extension with .htaccess Michael has mentioned that you can create your own custom page for the the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/08/top-5-ways-to-increase-pagerank-of-website/" rel="bookmark">Top 5 ways to increase PageRank of website</a></h3><p>Top 5 Get lots of backlinks from quality sites. One way to do this is to write articles and submit them to websites accepting author ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/uploading-largebig-files-in-php-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide .php extension with url rewriting using .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/hide-php-extension-with-url-rewriting-using-htaccess/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/hide-php-extension-with-url-rewriting-using-htaccess/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:26:22 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[file extension]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[technique]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=23</guid>
		<description><![CDATA[Last time I Posts Related to Hide .php extension with url rewriting using .htaccess5 useful url rewriting examples using .htaccessIf you are looking for the examples of URL rewriting then this post might be useful for you. In this post, IHiding PHP file extensionDo you want to hide your web siteCustom Error Page with .htaccessIn [...]]]></description>
			<content:encoded><![CDATA[<p>Last time I</p>
<div id="seo_alrp_related"><h2>Posts Related to Hide .php extension with url rewriting using .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/02/5-useful-url-rewriting-examples-using-htaccess/" rel="bookmark">5 useful url rewriting examples using .htaccess</a></h3><p>If you are looking for the examples of URL rewriting then this post might be useful for you. In this post, I</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/02/hiding-php-file-extension/" rel="bookmark">Hiding PHP file extension</a></h3><p>Do you want to hide your web site</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/02/custom-error-page-with-htaccess/" rel="bookmark">Custom Error Page with .htaccess</a></h3><p>In my last post of Hiding .php file extension with .htaccess Michael has mentioned that you can create your own custom page for the the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/check-enable-mod_rewrite-apache/" rel="bookmark">How to check and enable mod_rewrite module in apache</a></h3><p>I’ve got around 15 emails asking from readers, how to check the mod_rewrite module in apache and enable mod_rewrite module in apache after reading two ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/please-explain-frm-myd-myi-in-mysql/" rel="bookmark">Please explain .frm .myd .myi in mysql?</a></h3><p>Each MyISAM table is stored on disk in three files. The files have names that begin with the table name and have an extension to ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/hide-php-extension-with-url-rewriting-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Error Page with .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/custom-error-page-with-htaccess/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/custom-error-page-with-htaccess/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:24:50 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[cutom error page]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=21</guid>
		<description><![CDATA[In my last post of Hiding .php file extension with .htaccess Michael has mentioned that you can create your own custom page for the the 404(not found) error in server. And alex wanted to know that tip as well.Alex here is the post for you rather than replying your comment. When you mistype the URL [...]]]></description>
			<content:encoded><![CDATA[<p>In my last post of Hiding .php file extension with .htaccess Michael has mentioned that you can create your own custom page for the the 404(not found) error in server. And alex wanted to know that tip as well.Alex here is the post for you rather than replying your comment.</p>
<p>When you mistype the URL in a address bar for any website then you usually get the following error with the message.</p>
<h1>404 Not Found</h1>
<p>The requested URL /file_name.php does not exist.</p>
<p>Well 404 is error code in http which represents that </p>
<div id="seo_alrp_related"><h2>Posts Related to Custom Error Page with .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/05/custom-404-error-page-with-cakephp/" rel="bookmark">Custom 404 error page with CakePHP</a></h3><p>1. Create your error layout in app/view/layouts/ (with name error.ctp) 2. Create your 404 error view in app/view/errors/ (with name error404.ctp) In /cake/libs/view/errors you will ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/02/generic-error-message-in-an-ajax-call-using-jquery/" rel="bookmark">Generic Error Message in an Ajax call using jQuery</a></h3><p>The jquery $.ajaxSetup() allows you to set default values for future Ajax requests. Here’s how to use this function to set a default generic error ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/how-to-create-a-custom-404-error-page-in-cakephp/" rel="bookmark">how to Create a custom 404 error page in cakePHP</a></h3><p>If you need to change the page that users see when a document is not found, create: 1 /app/views/errors/error404.thtml</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/02/customize-the-display-of-error-messages-while-using-the-jquery-validation-plugin/" rel="bookmark">Customize the Display of Error Messages while using the jQuery Validation Plugin</a></h3><p>Here’s a simple way to customize the placement of the error labels while using the jQuery Validation Plugin. We will display the error message in ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/fatal-error-call-to-undefined-function-curl_init-in-ewampwwwmytestindex-php-on-line-10/" rel="bookmark">Fatal Error: Call to Undefined Function Curl_init() in E:\wamp\www\mytest\index.php on Line 10</a></h3><p>If you see this error then you have not installed / enabled CURL Library. It’s very simple to install it. Just go to your php.ini ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/custom-error-page-with-htaccess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Prevent Directory Listing using .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/prevent-directory-listing-using-htaccess/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/prevent-directory-listing-using-htaccess/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:23:26 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[directory listing]]></category>
		<category><![CDATA[prevetion]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=19</guid>
		<description><![CDATA[What is directory listing ? As we know, most of the website contains Posts Related to Prevent Directory Listing using .htaccessBihar got new business listing website www.bigbihar.comHello, all   bihari people I am proud to announce Bihar got new business listing free  website www.bigbihar.com so why are you waiting just open ...Kolkata got new business [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is directory listing ?</strong></p>
<p>As we know, most of the website contains </p>
<div id="seo_alrp_related"><h2>Posts Related to Prevent Directory Listing using .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/bihar-got-new-business-listing-website-www-bigbihar-com/" rel="bookmark">Bihar got new business listing website www.bigbihar.com</a></h3><p>Hello, all   bihari people I am proud to announce Bihar got new business listing free  website www.bigbihar.com so why are you waiting just open ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/kolkata-got-new-business-listing-website-www-bigkolkata-com/" rel="bookmark">Kolkata got new business listing website www.bigkolkata.com</a></h3><p>Hello, all   kolkata people I am proud to announce kolkata got new business listing free  website www.bigkolkata.com so why are you waiting just open ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/patna-got-new-business-listing-website-www-bigpatna-com/" rel="bookmark">Patna got new business listing website www.bigpatna.com</a></h3><p>Hello, all patna and bihari people I am proud to announce patna got new business listing free  website www.bigpatna.com so why are you waiting just ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/12/www-ab-directory-com-free-directory-submission-website/" rel="bookmark">www.ab-directory.com  free directory submission website</a></h3><p>New Web Directory: The New Web Site Directory A new internet directory of professionally reviewed web sites offering basic and express site submission.  www.ab-directory.com Local ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/08/indian-business-guide-your-business-make-easier-small-business-directory-indian-business-directory/" rel="bookmark">Indian Business Guide:: Your Business Make Easier &#8211; Small Business Directory | Indian Business Directory</a></h3><p>Site Map IndianBusinessGuides Indian Business Guide Indias No.1 local search engine provides comprehensive updated information on all B2B and B2C Products and Services. Services available ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/prevent-directory-listing-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 useful url rewriting examples using .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/5-useful-url-rewriting-examples-using-htaccess/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/5-useful-url-rewriting-examples-using-htaccess/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:22:26 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[url rewriting]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=17</guid>
		<description><![CDATA[If you are looking for the examples of URL rewriting then this post might be useful for you. In this post, I Posts Related to 5 useful url rewriting examples using .htaccessHide .php extension with url rewriting using .htaccessLast time IHow to check and enable mod_rewrite module in apacheI’ve got around 15 emails asking from [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for the examples of URL rewriting then this post might be useful for you. In this post, I</p>
<div id="seo_alrp_related"><h2>Posts Related to 5 useful url rewriting examples using .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/02/hide-php-extension-with-url-rewriting-using-htaccess/" rel="bookmark">Hide .php extension with url rewriting using .htaccess</a></h3><p>Last time I</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/check-enable-mod_rewrite-apache/" rel="bookmark">How to check and enable mod_rewrite module in apache</a></h3><p>I’ve got around 15 emails asking from readers, how to check the mod_rewrite module in apache and enable mod_rewrite module in apache after reading two ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/02/custom-error-page-with-htaccess/" rel="bookmark">Custom Error Page with .htaccess</a></h3><p>In my last post of Hiding .php file extension with .htaccess Michael has mentioned that you can create your own custom page for the the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/uploading-largebig-files-in-php-using-htaccess-2/" rel="bookmark">Uploading large(big) files in PHP using .htaccess</a></h3><p>I’ve seen that many of my friends are struggling with the uploads of the bigger or larger files in PHP. After looking at their struggle, ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/08/how-to-connect-to-ms-sql-server-database/" rel="bookmark">How to connect to MS SQL Server database</a></h3><p>Below is the code for connecting to a MSSQL Server database. &lt;?php $myServer = "localhost"; $myUser = "your_name"; $myPass = "your_password"; $myDB = "examples"; //connection ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/5-useful-url-rewriting-examples-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change default directory page using .htaccess</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/change-default-directory-page-using-htaccess/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/change-default-directory-page-using-htaccess/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:19:51 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=12</guid>
		<description><![CDATA[I know you guzy all know about index file. This is the default file which is executed in the web server. For example, if you type Posts Related to Change default directory page using .htaccessPHP FTP Functions Listftp_cdup — Changes to the parent directory ftp_chdir — Changes directories on a FTP server ftp_close — Closes [...]]]></description>
			<content:encoded><![CDATA[<p>I know you guzy all know about index file. This is the default file which is executed in the web server. For example, if you type</p>
<div id="seo_alrp_related"><h2>Posts Related to Change default directory page using .htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2011/05/php-ftp-functions-list/" rel="bookmark">PHP FTP Functions List</a></h3><p>ftp_cdup — Changes to the parent directory ftp_chdir — Changes directories on a FTP server ftp_close — Closes an FTP connection ftp_connect — Opens an ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/05/how-do-i-change-the-favicon-in-joomla-website/" rel="bookmark">How do I change the favicon in joomla website?</a></h3><p>The joomla favicon is stored in the /images folder. The file is called favicon.ico. By definition a favicon must be 16x16 pixels. If you wish ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/11/uploading-largebig-files-in-php-using-htaccess-2/" rel="bookmark">Uploading large(big) files in PHP using .htaccess</a></h3><p>I’ve seen that many of my friends are struggling with the uploads of the bigger or larger files in PHP. After looking at their struggle, ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/07/seo-faq-google-page-rank-pr/" rel="bookmark">SEO FAQ &#8211; Google Page Rank ( PR )</a></h3><p>1.) I am changing my domain but want to keep my PR, how do I do it? A 301 redirect is the most efficient and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/05/cake-php-interview-questions-and-answers/" rel="bookmark">Cake php interview questions and answers</a></h3><p>What is meant by MVC? model view controller, it is a software architecture, used to isolates business logic from presentation logic. cakephp is based on ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/change-default-directory-page-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to redirect browser to https (ssl) in php</title>
		<link>http://www.bageshsingh.com/bagesh-blog/2010/02/how-to-redirect-browser-to-https-ssl-in-php/</link>
		<comments>http://www.bageshsingh.com/bagesh-blog/2010/02/how-to-redirect-browser-to-https-ssl-in-php/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:17:03 +0000</pubDate>
		<dc:creator>Bagesh Singh</dc:creator>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.bageshsingh.com/bagesh-blog/?p=9</guid>
		<description><![CDATA[Most of the e-commerce website uses payment gateway for online payment. And, those sites uses SSL (secure socket layer) connection to transfer data to and from the payment gateway. In the common scenario, most of the sites uses Posts Related to How to redirect browser to https (ssl) in phpAdvanced Integration Method (AIM)AIM is Authorize.Net's [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the e-commerce website uses payment gateway for online payment. And, those sites uses SSL (secure socket layer) connection to transfer data to and from the payment gateway.</p>
<p>In the common scenario, most of the sites uses </p>
<div id="seo_alrp_related"><h2>Posts Related to How to redirect browser to https (ssl) in php</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/03/advanced-integration-method-aim/" rel="bookmark">Advanced Integration Method (AIM)</a></h3><p>AIM is Authorize.Net's recommended connection method and offers the most secure and flexible integration. AIM allows merchants to host their own secure payment form and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/03/authorize-net-developer-faqs-payment-gateway-faq/" rel="bookmark">Authorize.net Developer FAQs : Payment Gateway FAQ</a></h3><p>Where can I find documentation for the Authorize.Net application programming interface (API)? Please visit our documentation for more information on how to integrate e-commerce, mail ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/03/server-integration-method-sim-more-details-visit-authorize-net/" rel="bookmark">Server Integration Method (SIM)  (more details visit authorize.net)</a></h3><p>SIM uses scripting techniques to authenticate transactions with a unique transaction fingerprint. SIM provides a customizable, secure hosted payment form to make integration easy for ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/03/how-to-get-a-dedicated-hdfc-payment-gateway/" rel="bookmark">How to get a Dedicated HDFC Payment Gateway ?</a></h3><p>How to get a Dedicated HDFC Payment Gateway ? Check Before You Apply : The Pre-requisites The following are the general pre-requisites to apply for ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.bageshsingh.com/bagesh-blog/2010/07/the-five-steps-of-e-commerce/" rel="bookmark">The Five Steps of E-Commerce</a></h3><p>You set up a retail business, you advertise in your local newspaper, you get customers coming into your store, and you receive payment at the ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bageshsingh.com/bagesh-blog/2010/02/how-to-redirect-browser-to-https-ssl-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

