<?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>PHPJavascript</title>
	<atom:link href="http://www.phpjavascript.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpjavascript.com</link>
	<description>Web Development Guide - My Personal Library of Tutorials and Scripts</description>
	<lastBuildDate>Tue, 27 Jul 2010 10:57:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Drupal url current page</title>
		<link>http://www.phpjavascript.com/drupal-url-current-page/</link>
		<comments>http://www.phpjavascript.com/drupal-url-current-page/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 10:57:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=541</guid>
		<description><![CDATA[The function that displays the url of the current page
request_uri();
To use it in if statement; emplor strpos php function
$url = request_uri();
if (strpos($url, &#8220;contact&#8221;)) { print &#8220;this the contact page&#8221;; }
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-url-current-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal upload server database</title>
		<link>http://www.phpjavascript.com/drupal-upload-server-database/</link>
		<comments>http://www.phpjavascript.com/drupal-upload-server-database/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 05:06:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=539</guid>
		<description><![CDATA[I have faced this horrible issue of transferring database from either my localhost to the server or transferring from one hosting server to another.
The even for small drupal sites the database gets so huge that transferring is not possible at times. There is a timeout error and when I tried to upload per table, life [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-upload-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opacity css ie internet explorer issue</title>
		<link>http://www.phpjavascript.com/opacity-css-ie-internet-explorer-issue/</link>
		<comments>http://www.phpjavascript.com/opacity-css-ie-internet-explorer-issue/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 16:46:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Stylesheets]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=535</guid>
		<description><![CDATA[The opacity feature of css does not work on internet explorer IE, to overcome that use filter option.
Eg
.change_opacity {
  opacity: 0.5;
  filter: alpha(opacity = 50);
}

Note: The value of filter is different from opacity

Click here to view the source
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/opacity-css-ie-internet-explorer-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal 404 403 errors theme regions missing</title>
		<link>http://www.phpjavascript.com/drupal-404-403-errors-theme-regions-missing/</link>
		<comments>http://www.phpjavascript.com/drupal-404-403-errors-theme-regions-missing/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 11:36:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=533</guid>
		<description><![CDATA[When using the error reporting feature of drupal I faced my theme getting screwed up, the regions and block of left side went missing. After searching drupal posts etc I found the following solution for drupal 6:
Add the following function in your theme&#8217;s template.php file:
Click here to find a solution for drupal 5
&#60;?php
/**
* Override or [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-404-403-errors-theme-regions-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubercart cart slide down jquery effect elegant look</title>
		<link>http://www.phpjavascript.com/ubercart-cart-slide-down-jquery-effect-elegant-look/</link>
		<comments>http://www.phpjavascript.com/ubercart-cart-slide-down-jquery-effect-elegant-look/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 17:26:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=530</guid>
		<description><![CDATA[I wanted to the shopping cart to look more elegant so I used the sliding effect of jquery, css opacity transparency and reduce the summary to enable a one line heading &#8220;shopping cart&#8221; and when it is clicked a curtain or sliding effect is enabled showing a see through cart.
Sliding Effect:

Open file uc_cart_block.js located in [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/ubercart-cart-slide-down-jquery-effect-elegant-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubercart option image my theme not working</title>
		<link>http://www.phpjavascript.com/ubercart-option-image-my-theme-not-working/</link>
		<comments>http://www.phpjavascript.com/ubercart-option-image-my-theme-not-working/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 13:11:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=527</guid>
		<description><![CDATA[The option_image module which changes image when an attribute option is changed does not work on my theme but is working with garland.
The solution for that lies in the node.tpl file .. copy paste the node.tpl from garland to your theme and start customizing it. My error was because i had skipped id=&#8221;node-&#60;?php print $node-&#62;nid; [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/ubercart-option-image-my-theme-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubercart catalog default image</title>
		<link>http://www.phpjavascript.com/ubercart-catalog-default-image/</link>
		<comments>http://www.phpjavascript.com/ubercart-catalog-default-image/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 14:13:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=525</guid>
		<description><![CDATA[If you are using the grid layout override this function theme_uc_catalog_product_grid($products) and where it says $imagelink=&#8221;; give the path of your image.
Now how it goes is that you open the template.php (if it is not there create it) in your theme folder and enter the above function with your changes. Click here to view the [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/ubercart-catalog-default-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache XAMPP add new website</title>
		<link>http://www.phpjavascript.com/apache-xampp-add-new-site/</link>
		<comments>http://www.phpjavascript.com/apache-xampp-add-new-site/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 17:38:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=522</guid>
		<description><![CDATA[I finally decided to use apache webs server on my local PC instead of IIS (the usual Microsoft gala bala) .. anyways so I got apache XAMPP installed configured and all &#8230; but I realized I did not know how to add a new site, i was googling everywhere but could not find a simple [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/apache-xampp-add-new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubercart migs page not found</title>
		<link>http://www.phpjavascript.com/ubercart-migs-page-not-found/</link>
		<comments>http://www.phpjavascript.com/ubercart-migs-page-not-found/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 14:04:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=520</guid>
		<description><![CDATA[The transaction was all smooth but when i returned after the payment i got a page not found error plus the transaction and order details were not registering in the system.
The solution was very simple just uninstall and install the uc_migs module and it worked like a charm 
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/ubercart-migs-page-not-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MIGS Online Payment Dubai Middle East</title>
		<link>http://www.phpjavascript.com/migs-online-payment-dubai-middle-east/</link>
		<comments>http://www.phpjavascript.com/migs-online-payment-dubai-middle-east/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 13:58:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=517</guid>
		<description><![CDATA[Most online payment gateways have issues running in the middle east like paypal etc. So I found the best solution for online payment in the middle east  and  other countries as well to be MIGS.
When I was building an ecommerce application I used drupal with ubercart and uc_migs module for the online payment [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/migs-online-payment-dubai-middle-east/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
