<?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</title>
	<atom:link href="http://fundaa.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fundaa.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 06:49:10 +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>Browser Detect Using PHP Script</title>
		<link>http://fundaa.com/1/browser-detect-using-php-script/</link>
		<comments>http://fundaa.com/1/browser-detect-using-php-script/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 13:14:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=209</guid>
		<description><![CDATA[<br/>
&#60;?php
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);

        // Identify the browser. Check Opera and Safari first in case of spoof. Let Google Chrome be identified as Safari.
        if (preg_match('/opera/', $userAgent)) {
            $name = 'opera';
        }
        elseif (preg_match('/webkit/', $userAgent)) {
            $name = 'safari';
   ...]]></description>
			<content:encoded><![CDATA[<br/><pre class="brush: php;">
&lt;?php
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);

        // Identify the browser. Check Opera and Safari first in case of spoof. Let Google Chrome be identified as Safari.
        if (preg_match('/opera/', $userAgent)) {
            $name = 'opera';
        }
        elseif (preg_match('/webkit/', $userAgent)) {
            $name = 'safari';
        }
        elseif (preg_match('/msie/', $userAgent)) {
            $name = 'msie';
        }
        elseif (preg_match('/mozilla/', $userAgent) &amp;&amp; !preg_match('/compatible/', $userAgent)) {
            $name = 'mozilla';
        }
		else {
            $name = 'unrecognized';
        }

        // What version?
        if (preg_match('/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/', $userAgent, $matches)) {
            $version = $matches[1];
        }
        else {
            $version = 'unknown';
        }
		//echo $name;
		//echo $version;
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/1/browser-detect-using-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>script to remove extra white spaces from each and every fields of whole database table</title>
		<link>http://fundaa.com/solved-issues/script-to-remove-extra-white-spaces-from-each-and-every-fields-of-whole-database-table/</link>
		<comments>http://fundaa.com/solved-issues/script-to-remove-extra-white-spaces-from-each-and-every-fields-of-whole-database-table/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:28:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Solved Issues]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=192</guid>
		<description><![CDATA[<br/>here is simple script to remove extra white spaces from each field of database table and get log record of how many fields age getting affected ! !]]></description>
			<content:encoded><![CDATA[<br/><p>here is simple script to remove extra white spaces from each field of database table and get log record of how many fields age getting affected ! !</p>
<pre class="brush: php;">
&lt;?php
mysql_connect(&quot;localhost&quot;,&quot;root&quot;,&quot;&quot;);
mysql_select_db(&quot;temp&quot;);
if(isset($_GET['table']))
{
define(&quot;TABLE_NAME&quot;,$_GET['table']);
$sql = &quot;select * from &quot;.TABLE_NAME.&quot; &quot;;
$rs = mysql_query($sql);
while($row = mysql_fetch_array($rs))
{
$flag = 0;
$i = 0;
foreach($row as $key =&gt; $value) {
if($flag == 0) {
$flag = 1;
} else {
$flag = 0;
$trimed = trim($value);
$temp = &quot;update &quot;.TABLE_NAME.&quot; set &quot;.$key.&quot; = '&quot;.$trimed.&quot;' where id = '&quot;.$row[0].&quot;' &quot;;
mysql_query($temp);
if(mysql_affected_rows() == &quot;1&quot;)
{
$i++;
echo &quot;field trimed at id = &quot;.$row[0].&quot; and field = &quot;.$key.&quot;&quot;;
}
} } }
if($i == &quot;0&quot;) {
echo &quot;no rows affected&quot;;
}
echo &quot;DATABASE table trimed successfully&quot;;
}
else {
echo &quot;no table defined&quot;;
}
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/solved-issues/script-to-remove-extra-white-spaces-from-each-and-every-fields-of-whole-database-table/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tiny MCE Editor problem in CMS</title>
		<link>http://fundaa.com/solved-issues/tiny-mce-editor-problem-in-cms/</link>
		<comments>http://fundaa.com/solved-issues/tiny-mce-editor-problem-in-cms/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 11:42:32 +0000</pubDate>
		<dc:creator>nehalv</dc:creator>
				<category><![CDATA[Solved Issues]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=189</guid>
		<description><![CDATA[<br/>Often when one installs the CMS Made Simple  on an active server online; they face a problem with the Tiny MCE editor in the pages section and hence the content cannot be modified via the editor.
I have provided three known solutions to this problem:
 1) Change the permission on the modules directory to 755 if it already isn&#8217;t.
 2) Try uninstalling the Tiny MCE and reinstalling it.
 3) Try uninstalling the Tiny MCE and replacing it with an older version.
]]></description>
			<content:encoded><![CDATA[<br/><p>Often when one installs the CMS Made Simple  on an active server online; they face a problem with the Tiny MCE editor in the pages section and hence the content cannot be modified via the editor.</p>
<p>I have provided three known solutions to this problem:<br />
 1) Change the permission on the modules directory to 755 if it already isn&#8217;t.<br />
 2) Try uninstalling the Tiny MCE and reinstalling it.<br />
 3) Try uninstalling the Tiny MCE and replacing it with an older version.</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/solved-issues/tiny-mce-editor-problem-in-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zencart : How to add banners in the zencart</title>
		<link>http://fundaa.com/zen-cart/zencart-how-to-add-banners-in-the-zencart/</link>
		<comments>http://fundaa.com/zen-cart/zencart-how-to-add-banners-in-the-zencart/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 10:24:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=179</guid>
		<description><![CDATA[<br/>To add the banners in the zencart just follow the three steps.
1. Open the zencart database and insert one record in the &#8220;Configurations&#8221; table.

Keep the configuration_id null(it will update automatically)
Write the title for e.g.&#8217;Banner Display Group All pages left&#8216; in configuration_title.Layout Settings on the Admin side.
In configuration_key write the tag &#8216;SHOW_BANNERS_GROUP_SET10&#8216;
Note: SET10 is the id of sets of banner. Upto SET9 all are the default banners of zencart.Update the SET no. everytime you want to add banners such as SHOW_BANNERS_GROUP_SET11,SHOW_BANNERS_GROUP_SET12 and so on&#8230;.
In the configuration_value write any value such as&#8217;left_banner2&#8216;
Note ...]]></description>
			<content:encoded><![CDATA[<br/><p><strong>To add the banners in the zencart just follow the three steps.</strong></p>
<p>1. Open the zencart database and insert one record in the &#8220;<strong>Configurations</strong>&#8221; table.</p>
<ol>
<li>Keep the configuration_id null(it will update automatically)</li>
<li>Write the title for e.g.&#8217;<strong>Banner Display Group All pages left</strong>&#8216; in configuration_title.</ Note : This title will be displayed in the Configuration->Layout Settings on the Admin side.</li>
<li>In configuration_key write the tag &#8216;<strong>SHOW_BANNERS_GROUP_SET10</strong>&#8216;
<p>Note: SET10 is the id of sets of banner. Upto SET9 all are the default banners of zencart.Update the SET no. everytime you want to add banners such as SHOW_BANNERS_GROUP_SET11,SHOW_BANNERS_GROUP_SET12 and so on&#8230;.</li>
<li>In the configuration_value write any value such as&#8217;<strong>left_banner2</strong>&#8216;
<p>Note : This value will be the group name of your banner and it will be added in the dropdown list of the banner groups when you will add the new banner from admin.</li>
<li>Add any description in &#8220;<strong>configuration_description</strong>&#8221; field.</li>
<li>Just write &#8216;<strong>19</strong>&#8216; in the &#8220;<strong>configuration_group_id</strong>&#8221; as 19 is the id for the banners.</li>
<li>Just give the unique id for the &#8220;<strong>sort_order field</strong>&#8221; for the group_id 19.Generally start after id <strong>75</strong>.The value must increment every time you add the new banners.</li>
<li>Keep all other fields as it as and save the record.</li>
</ol>
<p>2. On the admin side click on <strong>new banner</strong> button in the Banner Manager.</p>
<ol>
<li>Give the title for the banner such as <strong>New Banner</strong>.</li>
<li>Give the url in url box if you want to add such as <strong>http://www.google.com</strong></li>
<li>Now select the group from the dropdown box.Your newly created group will be added there. Select it.</li>
<li>Upload the image you want to display as banner and click on insert.</li>
</ol>
<p>Your banner has been created now.</p>
<p>3. To display the banner in the site just copy the following code and paste it where you want to display the banner.</p>
<p><pre class="brush: php;">
 &lt;?php
  if (SHOW_BANNERS_GROUP_SET10 != '' &amp;&amp; $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET10)) {
if ($banner-&gt;RecordCount() &gt; 0) {
echo zen_display_banner('static', $banner);
    }
  }
?&gt;</pre>
</p>
<p>That&#8217;s it.You can see the banner now. I hope it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/zen-cart/zencart-how-to-add-banners-in-the-zencart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento language pack installation tip</title>
		<link>http://fundaa.com/magento/magento-language-pack-installation-tip/</link>
		<comments>http://fundaa.com/magento/magento-language-pack-installation-tip/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 10:28:24 +0000</pubDate>
		<dc:creator>nehalv</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=174</guid>
		<description><![CDATA[<br/>Installing a language pack in magento can be done by selecting the key from the magento commerce or downloading it from a site.
Spanish language key given may be wrong]]></description>
			<content:encoded><![CDATA[<br/><p>If you ever feel the need to install a language pack in magento it can be done by selecting the key from the magento commerce site(extensions) for the respective language pack. However the Spanish language key given (magento-community/Locale_Mage_community_es_MX) may not work hence you can use an alternative mentioned below:<br />
magento-community/Locale_Mage_community_es_MX-1.0.19870.4.5</p>
<p>If the above method of installing a language pack fails then browse to the site mentioned below and download the language pack:</p>
<p>http://www.magentocommerce.com/langs</p>
<p>You will need to install it manually however.</p>
<p>The language can be configured from the configuration menu in the admin by setting the locale.</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/magento/magento-language-pack-installation-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pluggable.php on line 868 wordpress issue &#8211; SOLVED</title>
		<link>http://fundaa.com/solved-issues/pluggable-php-on-line-868-wordpress-issue-solved/</link>
		<comments>http://fundaa.com/solved-issues/pluggable-php-on-line-868-wordpress-issue-solved/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 12:23:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Solved Issues]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=153</guid>
		<description><![CDATA[<br/>Recently I have face strange issue on wordpress which is &#8220;public_html/wp-includes/pluggable.php on line 868 wordpress issue&#8221; error at the time of login on wordpress website. 
Issue: public_html/wp-includes/pluggable.php on line 868 
Solution: This kind of error is normal for wordpress. This can occur due to some spaces after ?> ( end of php code )  in your php code files. So, you need to check your last accessed files and removed spaces if there and try again accessing that page. Hope it helps for wordpress developers.
- Tejas 
]]></description>
			<content:encoded><![CDATA[<br/><p>Recently I have face strange issue on wordpress which is &#8220;public_html/wp-includes/pluggable.php on line 868 wordpress issue&#8221; error at the time of login on wordpress website. </p>
<p>Issue: public_html/wp-includes/pluggable.php on line 868 </p>
<p>Solution: This kind of error is normal for wordpress. This can occur due to some spaces after ?> ( end of php code )  in your php code files. So, you need to check your last accessed files and removed spaces if there and try again accessing that page. Hope it helps for wordpress developers.</p>
<p>- Tejas </p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/solved-issues/pluggable-php-on-line-868-wordpress-issue-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merge pdf files into one file in ubuntu</title>
		<link>http://fundaa.com/ubuntu/merge-pdf-files-into-one-file-in-ubuntu/</link>
		<comments>http://fundaa.com/ubuntu/merge-pdf-files-into-one-file-in-ubuntu/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 12:20:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=152</guid>
		<description><![CDATA[<br/>Preparing Your system
sudo apt-get install gs pdftk
Now we will see one example how to combine pdf files
let us assume we have 1.pdf,2.pdf,3.pdf files and now we need to cobmine this files using the following command
gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combinedpdf.pdf -dBATCH 1.pdf 2.pdf 3.pdf
the output file will be combinedpdf.pdf
Rename “1.pdf 2.pdf 3.pdf” to whatever your file names are (separate your file names with a space).
If you want to know more options available for gs command check main page
]]></description>
			<content:encoded><![CDATA[<br/><p>Preparing Your system</p>
<p>sudo apt-get install gs pdftk</p>
<p>Now we will see one example how to combine pdf files</p>
<p>let us assume we have 1.pdf,2.pdf,3.pdf files and now we need to cobmine this files using the following command</p>
<p>gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combinedpdf.pdf -dBATCH 1.pdf 2.pdf 3.pdf</p>
<p>the output file will be combinedpdf.pdf</p>
<p>Rename “1.pdf 2.pdf 3.pdf” to whatever your file names are (separate your file names with a space).</p>
<p>If you want to know more options available for gs command check <a href="http://www.ubuntugeek.com/manpages/gsmanpage.txt" target="_blank">main page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/ubuntu/merge-pdf-files-into-one-file-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
