<?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>BumbleSoft</title>
	<atom:link href="http://bumblesoft.com/tag/ez-empire-builder/feed" rel="self" type="application/rss+xml" />
	<link>http://bumblesoft.com</link>
	<description></description>
	<lastBuildDate>Wed, 13 Jul 2011 06:33:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Fatal error: Allowed memory size of * bytes exhausted (tried to allocate&#8230;</title>
		<link>http://bumblesoft.com/fatal-error-allowed-memory-size-of-bytes-exhausted-tried-to-allocate-bytes-in-on-line-tried-to-allocate-bytes.html</link>
		<comments>http://bumblesoft.com/fatal-error-allowed-memory-size-of-bytes-exhausted-tried-to-allocate-bytes-in-on-line-tried-to-allocate-bytes.html#comments</comments>
		<pubDate>Sun, 24 Oct 2010 06:46:08 +0000</pubDate>
		<dc:creator>gerry</dc:creator>
				<category><![CDATA[Common Errors]]></category>
		<category><![CDATA[EZ Empire Builder]]></category>
		<category><![CDATA[Allowed memory size]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[memory limit]]></category>

		<guid isPermaLink="false">http://bumblesoft.com/?p=1112</guid>
		<description><![CDATA[This error would indicate that the script needed additional memory than what your PHP settings allowed during the time the script was run. SUGGESTED ACTION Increase your memory limit within your PHP settings, ie., to increase to 64M you could try adding: memory_limit = 64M to your server&#8217;s main php.ini file (best solution if you [...]]]></description>
			<content:encoded><![CDATA[<p>This error would indicate that the script needed additional memory than what your PHP settings allowed during the time the script was run.</p>
<p><strong>SUGGESTED ACTION</strong></p>
<p>Increase your memory limit within your PHP settings, ie., to increase to 64M you could try adding:</p>
<p>memory_limit = 64M to your server&#8217;s main php.ini file (best solution if you have a VPS or better)<br />
memory_limit = 64M to a php.ini file in the root or your WordPress blog<br />
ini_set(&#8216;memory_limit&#8217;, &#8217;64M&#8217;); in the plugin itself<br />
php_value memory_limit 64M in your .htaccess file in WordPress root</p>
<p>On most hosts not all of the above methods will be allowed. Most shared hosts will not allow any modification of your capacity at all but may make the changes for you while others will simply refuse.</p>
<p>Depending on the size of the files you&#8217;re working with, you may need to increase the memory limit even further (64M or even 128M. You may use trial and error to determine what memory value works best for your needs.</p>
<p>If this is an issue you&#8217;re having specifically with EZ Empire Builder and importing and working with a database, please note the size of the database you&#8217;re working with. Clearly, if your error was memory size of 67108864 bytes exhausted (64M), then you are going to have to increase the limit higher than that. We suggest doubling your limit size (2|4|8|16|32|64|128|256|ETC).</p>
<p>A restart of your server may be necessary in order to get your php.ini settings snap into effect.</p>
<p><strong>Note:</strong> Do not just set an arbitrarily high number just to avoid this potential problem &#8211; it may limit your ability to have multiple simultaneous connections run efficiently, and simultaneous connections are important on web servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://bumblesoft.com/fatal-error-allowed-memory-size-of-bytes-exhausted-tried-to-allocate-bytes-in-on-line-tried-to-allocate-bytes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Import a CSV file into MySQL through PHPmyAdmin</title>
		<link>http://bumblesoft.com/how-to-import-a-csv-file-into-mysql-through-phpmyadmin.html</link>
		<comments>http://bumblesoft.com/how-to-import-a-csv-file-into-mysql-through-phpmyadmin.html#comments</comments>
		<pubDate>Fri, 08 Oct 2010 04:52:52 +0000</pubDate>
		<dc:creator>gerry</dc:creator>
				<category><![CDATA[EZ Empire Builder]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://bumblesoft.com/?p=1087</guid>
		<description><![CDATA[Sometimes .sql formatted database files are a little more solid and reliable formats than .txt or .csv files for various reason. In this article I will show you very quickly how to convert a CSV file into a SQL file easily using PHPmyAdmin. phpMyAdmin is an open source tool written in PHP intended to handle [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes .sql formatted database files are a little more solid and reliable formats than .txt or .csv files for various reason. In this article I will show you very quickly how to convert a CSV file into a SQL file easily using PHPmyAdmin.</p>
<p>phpMyAdmin is an open source tool written in PHP intended to handle the administration of MySQL over the Web. It can make performing various tasks easy, such as creating, modifying or deleting databases, tables, fields or rows; executing SQL statements; managing users and permissions, etc. PHPmyAdmin can typically be accessed via your webHosting Control Panel and most users find it simplifies the tasks involved with managing your online SQL databases.</p>
<p>If you use cPanel or many other common hosting control panels on a unix server, you are likely to have run across PHPmyAdmin in the past.</p>
<p>There may be times when you wish to convert a CSV file into a SQL file. When that happens, many people pull out the credit card and start hunting for a program to do this for them.</p>
<p>PHPmyAdmin can help you do this, for free.</p>
<p>Here&#8217;s how&#8230;</p>
<p>1. Create a table with proper fields defined.</p>
<p>2. Import the file as shown in the following screenshot:</p>
<p><a href="http://bumblesoft.com/images/image006.png"><img src="http://bumblesoft.com/wp-content/uploads/2010/10/image006-300x235.png" alt="image006" title="image006" width="300" height="235" class="alignnone size-medium wp-image-1088" /></a></p>
<p style="text-align:center;font-size:small;">Click Above to Enlarge</a></p>
<p>That&#8217;s it!</p>
<p>Now simply export the file as a SQL file.</p>
]]></content:encoded>
			<wfw:commentRss>http://bumblesoft.com/how-to-import-a-csv-file-into-mysql-through-phpmyadmin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ping Tip</title>
		<link>http://bumblesoft.com/ping-tip.html</link>
		<comments>http://bumblesoft.com/ping-tip.html#comments</comments>
		<pubDate>Wed, 07 Jul 2010 05:19:23 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[EZ Empire Builder]]></category>
		<category><![CDATA[WordPress Cloaker Support]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[WP Scraper Support]]></category>
		<category><![CDATA[WP Spinner Support]]></category>
		<category><![CDATA[WP Tube Support]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[smart update pinger]]></category>

		<guid isPermaLink="false">http://bumblesoft.com/?p=965</guid>
		<description><![CDATA[Hi Guys, Just wanted to share a tip with you. Here&#8217;s a plugin I use with EZEmpireBuilder sites to have scheduled posts ping once they change to published status. Smart Update Pinger Normally WordPress pings a post immediately as the post is created, which doesn&#8217;t help us much when we are scheduling posts out months [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>Just wanted to share a tip with you.</p>
<p>Here&#8217;s a plugin I use with EZEmpireBuilder sites to have scheduled posts ping once they change to published status.</p>
<p><strong><a title="Smart Update Pinger" href="http://ultimateplugins.com/smart-update-pinger/" target="_blank">Smart Update Pinger</a></strong></p>
<p>Normally WordPress pings a post immediately as the post is created, which doesn&#8217;t help us much when we are scheduling posts out months in advance.</p>
<p>So give this plugin a try with <a title="Ultimate Ping List" href="http://bumblesoft.com/all-inclusive-ping-list.html" target="_self">a nice ping list</a> and see how it works for you, as well.</p>
<p>Cheers,</p>
<p>Ryan</p>
]]></content:encoded>
			<wfw:commentRss>http://bumblesoft.com/ping-tip.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>EZ Empire Builder — Coming Soon!</title>
		<link>http://bumblesoft.com/ez-empire-builder-coming-soon.html</link>
		<comments>http://bumblesoft.com/ez-empire-builder-coming-soon.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 05:43:32 +0000</pubDate>
		<dc:creator>gerry</dc:creator>
				<category><![CDATA[EZ Empire Builder]]></category>
		<category><![CDATA[New Releases]]></category>
		<category><![CDATA[auto site creation]]></category>

		<guid isPermaLink="false">http://wordpresscloaker.com/blog/?p=770</guid>
		<description><![CDATA[Video Coming Soon&#8230;. UPDATE: EZ Empire Builder is officially launched as of right now! Go check it out right here: Click Here Now! Keep your eyes peeled for EZ Empire Builder coming later this week! I&#8217;m totally excited to share it with you. Its a LOT different than WordPress Cloaker but does carry a few [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-789" title="video-tmb2" src="http://bumblesoft.com/wp-content/uploads/2010/01/video-tmb2.gif" alt="video-tmb2" width="460" height="311" /></p>
<p style="text-align:center;text-size:x-small;color:#0675b2;margin-top:-20px;">Video Coming Soon&#8230;.</p>
<p></p>
<p><b>UPDATE:</b> EZ Empire Builder is officially launched as of right now!</p>
<p>Go check it out right here: <a href="http://ezempirebuilder.com">Click Here Now!</a></p>
<p>Keep your eyes peeled for <strong>EZ Empire Builder</strong> coming later this week! I&#8217;m totally excited to share it with you.</p>
<p>Its a <u>LOT</u> different than WordPress Cloaker but does carry a few of the same features you&#8217;ve grown to appreciate. Its really quite a bad ass tool. </p>
<p>EZ Empire Builder will do all the heavy lifting in creating high-quality, money-making web sites. It has a powerful template system that pumps content from <u>ANY</u> database straight into WordPress posts. You can manipulate the data, rearrange, spin in content, add photos, CPA offers, Adsense, you name it&#8230;</p>
<p><strong>AND</strong> its super user-friendly and easy to use.</p>
<p>Literally, make a 50,000+ page, targeted, high-ranking web site in one sitting — Quick and Easy!</p>
<p>I seriously love this tool, personally and I think you will, too.</p>
<p>Just a couple little tidbits to wet your appetite&#8230;</p>
<ul style="checkmarklist">
<li>EZE is going to change the way you think about building sites, no kidding. There is no other tool like it for sale anywhere!</li>
<li>In the past you&#8217;d have to spend $1,500 to $5,000 and wait for 7+ days to have a professional coder on eLance or a local developer build a site of the quality that you&#8217;ll soon be able to pump out on your own with EZ Empire Builder!</li>
<li>EZ Empire Builder is a Brand New Tool so you&#8217;ll have no competition when you 1st get started and very little for a year or two before it becomes at all saturated.</li>
<li>Because the results are so clean and impressive to look at, EZE sites can be used in ways that most auto-generated sites can&#8217;t. They can be used to help you get accepted to CPA networks, affiliate networks, create partnerships, build your portfolios, gain reputation, etc.</li>
<li>Much less worry about duplicate content than RSS/Scraping articles.</li>
<li>Less competition than RSS/Scraping</li>
<li>All your sites are legitimate, good sites with earning power that are NOT considered throw away sites and will increase in value over time and never get banned by Google.</li>
<li>EZ Empire Builder is sure to be used by web developers to speed up development. Even if you&#8217;re not currently in the business of building sites for clients, if you ever want to, you&#8217;ll have the tools to do it. You can easily create a real, sellable service with EZ Empire Builder doing the work FOR you while you take all the credit. Charge people $1,500 to $5,000 to build sites for them that will only take you hours to build instead of days.</li>
<li>High-quality sites can be sold on flippa and other &#8220;sites for sale&#8221; type forums and ebay auctions for hundreds, even thousands of dollars, day in, day out, especially if you get in early before a lot of others beat you to it.</li>
<li>Slick, sexy drag n drop template creation. I think you&#8217;re going to love how easy and intuitive the building process is.</li>
<li>Sites with xx,000 pages indexed normally pull a PR4 on their own after 4-5 months, thus giving you a great little platform to sell links.</li>
<li>xx,000 pages indexed gives you a ton of VRE to promote/link your other sites.</li>
<li>Ease of niching out &#8211; For example, if you&#8217;re in the casino niche you will discover the power of setting up a network of related sub-niche sites like Basketball Stats, Football stats, Soccer, Tennis, Boxing, Racing stats all built from databases. Then, link these new sites up into your casino site to broaden reach into related niches. This is a uniquely powerful way of increasing your PR and your site rankings as well as claiming additional keyword listings and EZE makes it simple to do.</li>
<li>&#8230;The list goes on but, not here. I&#8217;ll leave that for the launch!</li>
</ul>
<p>Plenty MORE about EZ Empire Builder right around the corner! Hope you&#8217;ll be one of the 1st to try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://bumblesoft.com/ez-empire-builder-coming-soon.html/feed</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
	</channel>
</rss>

