<?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>Fundaa.com &#187; Featured</title>
	<atom:link href="http://fundaa.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://fundaa.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 12:44:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL Search &amp; Replace Tool</title>
		<link>http://fundaa.com/featured/mysql-search-replace-tool/</link>
		<comments>http://fundaa.com/featured/mysql-search-replace-tool/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 12:31:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=251</guid>
		<description><![CDATA[<br/>This web-based tool written in PHP makes it easy to search and replace text strings in a MySQL database.
Usually, I develop WordPress sites on a local development server and, when they are ready to launch, I move them to a live web server.
MySQL Search &#038; Replace
For database-driven sites created with content management systems like WordPress, Drupal, and Joomla, this means moving any custom themes and plugins, and it often entails exporting data from the development server’s database and copying it to the live web server.
With small databases, your content management ...]]></description>
			<content:encoded><![CDATA[<br/><p>This web-based tool written in PHP makes it easy to search and replace text strings in a MySQL database.</p>
<p>Usually, I develop WordPress sites on a local development server and, when they are ready to launch, I move them to a live web server.</p>
<p>MySQL Search &#038; Replace</p>
<p>For database-driven sites created with content management systems like WordPress, Drupal, and Joomla, this means moving any custom themes and plugins, and it often entails exporting data from the development server’s database and copying it to the live web server.</p>
<p>With small databases, your content management system’s built-in import/export functions might work, or you can even search and replace an exported .sql file using a simple text editor or IDE.</p>
<p>Unfortunately, this doesn’t always work with larger databases, which can often be unruly and cause programs to hang, crash, spit, choke, and curse.</p>
<p>I searched around and found this PHP script by Mark Jackson which makes it much faster and easier to search and replace data across an entire MySQL database.</p>
<p>MySQL Search &#038; Replace Project is Born</p>
<p>I created a quick little front end for Mark’s script using a little XHTML markup and CSS, tweaked a little PHP, and Mark and I decided to package up this tool and release it to the community under the GPL in hopes that it might help some other folks.</p>
<p>The MySQL Search &#038; Replace project is hosted on LaunchPad, where you can report bugs, request features, checkout the latest version, read FAQs, contribute, and collaborate.</p>
<p>Using MySQL Search &#038; Replace with WordPress</p>
<p>Before attempting to search and replace, please make sure to backup your database.</p>
<p>While this tool is easy to use, it’s also quite powerful and could easily cause harm to your database, if you’re not careful. Please make sure to read the included readme.txt file for more detailed instructions.</p>
<p>Since I develop WordPress sites on my local Ubuntu machines using a local LAMP install, the URLs of my work-in-progress sites usually look like:</p>
<p>http://localhost/projects/sewmyheadon</p>
<p>Of course, once I move the site to the web, it’ll probably have an address more like:</p>
<p>http://sewmyheadon.com</p>
<p>Since these URLs usually occur many times in a WordPress database, search and replace can be an invaluable tool in making sure they’re all corrected before moving the database.</p>
<p>Prepare a WordPress Database for a Move:</p>
<p>NOTE: Before running an actual replace, you can simply search to see how many times, and where, the string occurs in the database.</p>
<p>Backup, backup, backup.  Use phpMyAdmin or a WordPress plugin, but make sure you have a backup. You can’t say I didn’t tell you.</p>
<p>Download or checkout the latest version of MySQL Search &#038; Replace</p>
<p>Unzip the files, if necessary, and place the mysql-replace folder on your server.</p>
<p>Double-check that you covered Step #1</p>
<p>Visit the URL for the MySQL Search &#038; Replace Tool in your browser.  The URL might look something like: http://localhost/mysql-replace/</p>
<p>Fill in the necessary fields and click Start.</p>
<p>Get MySQL Search &#038; Replace</p>
<p><a href="http://sewmyheadon.com/wp-content/uploads/2009/11/mysql-replace.zip" >Download</a> MySQL Search &#038; Replace Tool</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/featured/mysql-search-replace-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preventing Browser Cache in php</title>
		<link>http://fundaa.com/featured/preventing-browser-cache-in-php/</link>
		<comments>http://fundaa.com/featured/preventing-browser-cache-in-php/#comments</comments>
		<pubDate>Mon, 09 May 2011 06:47:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=242</guid>
		<description><![CDATA[<br/>If you dont want that browser dont cache your web page just add the following code in header.


&#60;?php
  header("Cache-Control: no-cache, must-revalidate");           // HTTP/1.1
  header("Pragma: no-cache");                                   // HTTP/1.0
 ?&#62;


this will set server to not cache web content of this perticuler page.
]]></description>
			<content:encoded><![CDATA[<br/><p>If you dont want that browser dont cache your web page just add the following code in header.<br />
<br />
<code><br />
&lt;?php<br />
  header("Cache-Control: no-cache, must-revalidate");           // HTTP/1.1<br />
  header("Pragma: no-cache");                                   // HTTP/1.0<br />
 ?&gt;<br />
</code><br />
<br />
this will set server to not cache web content of this perticuler page.</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/featured/preventing-browser-cache-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

