<?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>JDAMWEB3 - Jdam of WWW - My Official Website &#187; Joomla!</title>
	<atom:link href="http://www.jdam.us/cats/ka-joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jdam.us</link>
	<description>Web identity solutions bridge humanities and technologies for a better future!</description>
	<lastBuildDate>Wed, 07 Jul 2010 08:22:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Ubuntu Lucid, Reverting PHP to 5.2</title>
		<link>http://www.jdam.us/2010/05/19/ubuntu-lucid-reverting-php-to-5-2/</link>
		<comments>http://www.jdam.us/2010/05/19/ubuntu-lucid-reverting-php-to-5-2/#comments</comments>
		<pubDate>Wed, 19 May 2010 05:33:01 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jdam.us/?p=171</guid>
		<description><![CDATA[I recently got an issue on PHP 5.3.2 via Ubuntu Lucid, after upgrading from Ubuntu 9.10 to Ubuntu 10.04, On one of the old Joomla! source I&#8217;m working on I keep getting this warning &#8220;Warning: Parameter 3 to showItem() expected to be a reference, value given in&#8230;. &#8220;. The solution is downgrade your PHP 5.3.2 [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_174" class="wp-caption alignright" style="width: 220px"><a href="http://www.jdam.us/wp-content/uploads/2010/05/lucid_0.png"><img class="size-medium wp-image-174  " title="Ubuntu Lucid 10.04" src="http://www.jdam.us/wp-content/uploads/2010/05/lucid_0-300x300.png" alt="" width="210" height="210" /></a><p class="wp-caption-text">Ubuntu Lucid 10.04</p></div>
<p>I recently got an issue on PHP 5.3.2 via Ubuntu Lucid, after upgrading from Ubuntu 9.10 to Ubuntu 10.04, On one of the old Joomla! source I&#8217;m working on I keep getting this warning <strong>&#8220;Warning: Parameter 3 to showItem() expected to be a reference, value given in&#8230;. &#8220;</strong>.</p>
<p>The solution is downgrade your PHP 5.3.2 to PHP 5.2, here are the steps to follow.</p>
<p>1. On your /usr/local/sbin/, create php5_2-downgrade.sh, copy paste this source.</p>
<p><code>#!/bin/bash<br />
# by Ruben Barkow (rubo77) http://www.entikey.z11.de/</code></p>
<p><code># Originally Posted by Bachstelze http://ubuntuforums.org/showthread.php?p=9080474#post9080474<br />
# OK, here's how to do the Apt magic to get PHP packages from the karmic repositories:</code></p>
<p><code>echo "Am I root?  "<br />
if [ "$(whoami &amp;2&gt;/dev/null)" != "root" ] &amp;&amp; [ "$(id -un &amp;2&gt;/dev/null)" != "root" ] ; then<br />
echo "  NO!</p>
<p>Error: You must be root to run this script.<br />
Enter<br />
sudo su<br />
"<br />
exit 1<br />
fi<br />
echo "  OK";</p>
<p># finish all apt-problems:<br />
apt-get -f install</p>
<p># remove all your existing PHP packages. You can list them with dpkg -l| grep php<br />
PHPLIST=$(for i in $(dpkg -l | grep php|awk '{ print $2 }' ); do echo $i; done)<br />
echo these pachets will be removed: $PHPLIST<br />
# you need not to purge, if you have upgraded from karmic:<br />
aptitude remove $PHPLIST<br />
# on a fresh install, you need purge:<br />
# aptitude remove --purge $PHPLIST</p>
<p>#Create a file each in /etc/apt/preferences.d like this (call it for example /etc/apt/preferences.d/php5_2);<br />
#<br />
#Package: php5<br />
#Pin: release a=karmic<br />
#Pin-Priority: 991<br />
#<br />
#The big problem is that wildcards don't work, so you will need one such stanza for each PHP package you want to pull from karmic:</p>
<p>echo ''&gt;/etc/apt/preferences.d/php5_2<br />
for i in $PHPLIST ; do echo "Package: $i<br />
Pin: release a=karmic<br />
Pin-Priority: 991<br />
"&gt;&gt;/etc/apt/preferences.d/php5_2; done</p>
<p># duplicate your existing sources.list replacing lucid with karmic and save it in sources.list.d:<br />
#sed s/lucid/karmic/g /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/karmic.list</p>
<p># better exactly only the needed sources, cause otherwise you can get a cachsize problem:<br />
echo "# needed sources vor php5.2:<br />
deb http://de.archive.ubuntu.com/ubuntu/ karmic main restricted<br />
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic main restricted</p>
<p>deb http://de.archive.ubuntu.com/ubuntu/ karmic-updates main restricted<br />
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic-updates main restricted</p>
<p>deb http://de.archive.ubuntu.com/ubuntu/ karmic universe<br />
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic universe<br />
deb http://de.archive.ubuntu.com/ubuntu/ karmic-updates universe<br />
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic-updates universe</p>
<p>deb http://de.archive.ubuntu.com/ubuntu/ karmic multiverse<br />
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic multiverse<br />
deb http://de.archive.ubuntu.com/ubuntu/ karmic-updates multiverse<br />
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic-updates multiverse</p>
<p>deb http://security.ubuntu.com/ubuntu karmic-security main restricted<br />
deb-src http://security.ubuntu.com/ubuntu karmic-security main restricted<br />
deb http://security.ubuntu.com/ubuntu karmic-security universe<br />
deb-src http://security.ubuntu.com/ubuntu karmic-security universe<br />
deb http://security.ubuntu.com/ubuntu karmic-security multiverse<br />
deb-src http://security.ubuntu.com/ubuntu karmic-security multiverse<br />
" &gt;&gt; /etc/apt/sources.list.d/karmic.list</p>
<p>aptitude update</p>
<p>apache2ctl restart</p>
<p>echo install new from karmic:<br />
aptitude -t karmic install $PHPLIST</p>
<p># at the end retry the modul libapache2-mod-php5 in case it didn't work the first time:<br />
aptitude -t karmic install libapache2-mod-php5</p>
<p></code></p>
<p><code>apache2ctl restart<br />
</code></p>
<p>2. Open your terminal, chmod +x /usr/local/sbin/php5.2-downgrade<br />
3. On your terminal, ./php5_2-downgrade.sh<br />
4. Just follow the steps, everything is very straight forward.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2010%2F05%2F19%2Fubuntu-lucid-reverting-php-to-5-2%2F&amp;linkname=Ubuntu%20Lucid%2C%20Reverting%20PHP%20to%205.2" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2010/05/19/ubuntu-lucid-reverting-php-to-5-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;The 5th Software Freedom Day by CP Union in University of Santo Tomas. Another history in the making&#8221;</title>
		<link>http://www.jdam.us/2009/09/19/the-5th-software-freedom-day-by-cp-union-in-university-of-santo-tomas-another-history-in-the-making/</link>
		<comments>http://www.jdam.us/2009/09/19/the-5th-software-freedom-day-by-cp-union-in-university-of-santo-tomas-another-history-in-the-making/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 16:43:09 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Opensource Communities]]></category>
		<category><![CDATA[Pinoy Blender]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.jdam.us/?p=108</guid>
		<description><![CDATA[This year SFD 2009 is another history in the making. 3D Blender was formally introduced to students by the core member team of Pinoy Blender User Group. A demo was conducted and students were excited to discover what they can do using Blender. A Blender is a 3D graphics application released as free software under [...]]]></description>
			<content:encoded><![CDATA[<p>This year SFD 2009 is another history in the making. 3D Blender was formally introduced to students by the core member team of Pinoy Blender User Group. A demo was conducted and students were excited to discover what they can do using Blender. A Blender is a 3D graphics application released as free software under the GNU General Public License. An addition to the list of Open Source Software joining the yearly celebration of Software Freedom Day.</p>
<p>Last 4 years ago 2nd Software Freedom Day was held in Polytechnic University of the Philippines. I was also there to support the birth of Joomla! CMS. Back then opensource is never been so colorful, unlike today there are a lot of famous variaties of opensource application such as Content Management System, Graphic Software, LAMP easy setup, famous IDE &amp; etc. On one part of my session during afternoon session of Dynamic/ Static CMS (Joomla!), I say to all students &amp; professionals &#8220;You should be proud that you are here today. Opensource is more colorful than ever, more knowledge &amp; oportunity for everyone&#8221;</p>
<p>See you in the next more event to come&#8230;</p>
<p>Some links:</p>
<p>http://www.cp-union.com/cpunion/</p>
<p>http://www.cp-union.com/cpunion/content/2009/06/22/software-freedom-day-2009</p>
<p>http://www.pinoyblender.com/</p>
<p>http://buko.pinoyblender.org/</p>
<p>http://www.joomla.org.ph</p>
<p>
<div class="ngg-galleryoverview" id="ngg-gallery-1-108">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.jdam.us/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=1&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.jdam.us/wp-content/gallery/sfd09/P9190081.JPG" title=" " class="shutterset_set_1" >
								<img title="OLYMPUS DIGITAL CAMERA         " alt="OLYMPUS DIGITAL CAMERA         " src="http://www.jdam.us/wp-content/gallery/sfd09/thumbs/thumbs_P9190081.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.jdam.us/wp-content/gallery/sfd09/P9190089.JPG" title=" " class="shutterset_set_1" >
								<img title="OLYMPUS DIGITAL CAMERA         " alt="OLYMPUS DIGITAL CAMERA         " src="http://www.jdam.us/wp-content/gallery/sfd09/thumbs/thumbs_P9190089.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.jdam.us/wp-content/gallery/sfd09/P9190096.JPG" title=" " class="shutterset_set_1" >
								<img title="OLYMPUS DIGITAL CAMERA         " alt="OLYMPUS DIGITAL CAMERA         " src="http://www.jdam.us/wp-content/gallery/sfd09/thumbs/thumbs_P9190096.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.jdam.us/wp-content/gallery/sfd09/P9190103.JPG" title=" " class="shutterset_set_1" >
								<img title="OLYMPUS DIGITAL CAMERA         " alt="OLYMPUS DIGITAL CAMERA         " src="http://www.jdam.us/wp-content/gallery/sfd09/thumbs/thumbs_P9190103.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.jdam.us/wp-content/gallery/sfd09/P9190123.JPG" title=" " class="shutterset_set_1" >
								<img title="OLYMPUS DIGITAL CAMERA         " alt="OLYMPUS DIGITAL CAMERA         " src="http://www.jdam.us/wp-content/gallery/sfd09/thumbs/thumbs_P9190123.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.jdam.us/wp-content/gallery/sfd09/P9190137.JPG" title=" " class="shutterset_set_1" >
								<img title="OLYMPUS DIGITAL CAMERA         " alt="OLYMPUS DIGITAL CAMERA         " src="http://www.jdam.us/wp-content/gallery/sfd09/thumbs/thumbs_P9190137.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2009%2F09%2F19%2Fthe-5th-software-freedom-day-by-cp-union-in-university-of-santo-tomas-another-history-in-the-making%2F&amp;linkname=%26%238220%3BThe%205th%20Software%20Freedom%20Day%20by%20CP%20Union%20in%20University%20of%20Santo%20Tomas.%20Another%20history%20in%20the%20making%26%238221%3B" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2009/09/19/the-5th-software-freedom-day-by-cp-union-in-university-of-santo-tomas-another-history-in-the-making/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal day in ortigas w/ Joomla!PH &amp; Pinoy Google Developer</title>
		<link>http://www.jdam.us/2008/09/11/drupal-day-in-ortigas-w-joomlaph-pinoy-google-developer/</link>
		<comments>http://www.jdam.us/2008/09/11/drupal-day-in-ortigas-w-joomlaph-pinoy-google-developer/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 08:21:42 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Opensource Communities]]></category>
		<category><![CDATA[Philippines]]></category>

		<guid isPermaLink="false">http://www.jdam.us/v3/?p=64</guid>
		<description><![CDATA[Drupal day in ortigas w/ Joomla!PH &#38; Pinoy Google Developer Sep. 11, 2008 &#8211; 6:30 PM VENUE G2VC Innovation Center (Offices of Exist and Morp) 5th Floor, The Orient Square F. Ortigas Road (formerly Emerald Ave.) Ortigas Center, Pasig City We will be discussing Joomla, Drupal and other open source CMS. Special guest is Jay [...]]]></description>
			<content:encoded><![CDATA[<p>Drupal day in ortigas w/ Joomla!PH &amp; Pinoy Google Developer<br />
Sep. 11, 2008 &#8211; 6:30 PM</p>
<p>VENUE<br />
G2VC Innovation Center (Offices of Exist and Morp)<br />
5th Floor, The Orient Square<br />
F. Ortigas Road (formerly Emerald Ave.)<br />
Ortigas Center, Pasig City</p>
<p>We will be discussing Joomla, Drupal and other open source CMS.<br />
Special guest is Jay Aguilar, Pinoy developer who works at Google in California.</p>
<p>those who cannot attend can watch live video streaming: <!-- m --><a href="http://www.ustream.tv/channel/barcamp-manila">http://www.ustream.tv/channel/barcamp-manila</a><!-- m --></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2008%2F09%2F11%2Fdrupal-day-in-ortigas-w-joomlaph-pinoy-google-developer%2F&amp;linkname=Drupal%20day%20in%20ortigas%20w%2F%20Joomla%21PH%20%26%23038%3B%20Pinoy%20Google%20Developer" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2008/09/11/drupal-day-in-ortigas-w-joomlaph-pinoy-google-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla! Philippines Local Forum</title>
		<link>http://www.jdam.us/2008/06/23/joomla-philippines-local-forum/</link>
		<comments>http://www.jdam.us/2008/06/23/joomla-philippines-local-forum/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 08:14:21 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Opensource Communities]]></category>

		<guid isPermaLink="false">http://www.jdam.us/v3/?p=60</guid>
		<description><![CDATA[Finally, our very own local forum. Joomla User Group Philippines (JUG-Ph) started as a small group of filipino way back Mambo days that migrated when Joomla! was born. At the subforum of Joomla!, Filipino community had grown rapidly until today. There are a couple of disadvantages on our existing subforum. 1. Most of us needed [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, our very own local forum.</p>
<p>Joomla User Group Philippines (JUG-Ph) started as a small group of filipino<br />
way back Mambo days that migrated when Joomla! was born.</p>
<p>At the subforum of Joomla!, Filipino community had grown rapidly until today.</p>
<p>There are a couple of disadvantages on our existing subforum.<br />
1. Most of us needed to use bookmark just to access the forum.<br />
2. Newbie find it very difficult to browse the filipino international zone.<br />
3. Limited privilege for forum moderation.</p>
<p>But this doesn&#8217;t mean that we will abandon the international forum, as a matter of fact<br />
we link the international forum for international support.</p>
<p>To unite the filipino and keep the fire burning. We at the Joomla! Philippines<br />
Core Team would like to present to the community a new dimensions towards our<br />
JUG-PH future.</p>
<p>Link: <a href="http://forum.joomla.org.ph/">http://forum.joomla.org.ph/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2008%2F06%2F23%2Fjoomla-philippines-local-forum%2F&amp;linkname=Joomla%21%20Philippines%20Local%20Forum" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2008/06/23/joomla-philippines-local-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla! Day Philippines &#8211; June 14, 2008</title>
		<link>http://www.jdam.us/2008/06/02/joomla-day-philippines-june-14-2008/</link>
		<comments>http://www.jdam.us/2008/06/02/joomla-day-philippines-june-14-2008/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 07:54:51 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Opensource Communities]]></category>
		<category><![CDATA[Philippines]]></category>

		<guid isPermaLink="false">http://www.jdam.us/v3/?p=47</guid>
		<description><![CDATA[The Philippines is set to witness the next biggest event for the month of June besides Independence Day. On June 14, 2008, Filipino webmasters and amateurs alike will converge at the Engineering Library and Computer Science Building, Velaquez Street, UP Campus, Diliman, Quezon City to liberate not just Filipinos but every single individual in cyberspace. [...]]]></description>
			<content:encoded><![CDATA[<p>The Philippines is set to witness the next biggest event for the month of June besides Independence Day. On June 14, 2008, Filipino webmasters and amateurs alike will converge at the Engineering Library and Computer Science Building, Velaquez Street, UP Campus, Diliman, Quezon City to liberate not just Filipinos but every single individual in cyberspace. The event is dubbed as <strong>Joomla! Day Philippines.</strong></p>
<p>Since knowledge in computer technology assures individual a competitive edge in the 21<sup>st</sup> century, Joomla! Day Philippines is indeed as remarkable event for Filipinos as Independence Day (June 12). Joomla! is an award-winning free open source content management system (CMS) enabling professionals and amateurs to build and administer feature-rich, powerful web sites without having to have an extensive knowledge of web programming languages. It is designed to power simple personal homepages as well as complex corporate web applications.</p>
<p>Joomla! has been applied by individuals and institutions to manage online magazines and newspapers, school and church websites, personal or family homepage, small business websites, non-profit and organizational websites, etc.</p>
<p>The best things in life are free but things could still get better when they bring freedom. Joomla!, apart from being free (<em>available to all under GPL license</em>), precisely brings freedom to its end users. A Joomla! package is easy to install that even non-programmers can install the software up and have it running all by himself. All it takes to install and manage a Joomla! powered site is basic knowledge in word processing. Moreover, there are more than 150,000 friendly users and developers in the <a title="Joomla! Filipino Community" href="http://forum.joomla.org/viewforum.php?f=21">Joomla! community</a> who will be very much willing to inform and assist.</p>
<p>For software developers, Joomla! features a powerful application framework to allow them to create sophisticated add-ons such as inventory control systems, data reporting tools, complex business directories, custom products, the possibilities are endless.</p>
<p>Born in cyberspace on August 17, 2005, the software was not named Joomla! until fifteen days later on September 1, 2005. Joomla! is the English spelling of the Swahili word <em>jumla </em>which means “all together” or “as a whole”. Joomla! has since lived up to the meaning of its Swahili equivalent, a large number of software developers, computer programmers, webmasters of the world have united rallied behind the software. Joomla! is broadly deployed worldwide with more than 3.5 million downloads.</p>
<p>Shortly after Joomla! was made the official name of the software, the Philippines celebrated Software Freedom Day at the Polytechnic University of the Philippines (PUP) on September 10, 2005 joining the ranks of other nations in their quest for cyberspace freedom.</p>
<p>Come June 14, 2008, Filipinos online will once again express its commitment to the free software movement with the holding of the first-ever <strong>Joomla! Day Philippines </strong>– a great opportunity to learn and network with other Joomla! users and developers in the country. The conference will be attended by representatives from the Joomla! Core Team and Working Group, representatives from non-governmental organizations, local government units, and the business sector. <strong>Joomla! Day Philippines</strong> is another good reason to celebrate freedom after Philippine Independence Day. Don&#8217;t remove the Philippine flags just yet until June 14.</p>
<p>FOR MORE DETAILS VISIT <a href="http://www.joomla.org.ph/">www.joomla.org.ph</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2008%2F06%2F02%2Fjoomla-day-philippines-june-14-2008%2F&amp;linkname=Joomla%21%20Day%20Philippines%20%26%238211%3B%20June%2014%2C%202008" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2008/06/02/joomla-day-philippines-june-14-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Power of Magento and Joomla merge for the future of ecommerce</title>
		<link>http://www.jdam.us/2008/05/05/power-of-magento-and-joomla-merge-for-the-future-of-ecommercelately-i-was-amaze-of-magentos-beauty-why-is-that-so-it-has-smooth-integration-and-cutting-edge-features-that-offers-professional-and-r/</link>
		<comments>http://www.jdam.us/2008/05/05/power-of-magento-and-joomla-merge-for-the-future-of-ecommercelately-i-was-amaze-of-magentos-beauty-why-is-that-so-it-has-smooth-integration-and-cutting-edge-features-that-offers-professional-and-r/#comments</comments>
		<pubDate>Mon, 05 May 2008 15:14:36 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Joomla!]]></category>

		<guid isPermaLink="false">http://www.jdam.us/v3/?p=23</guid>
		<description><![CDATA[Recently I was amaze of Magento&#8217;s beauty. Why is that so? It has smooth integration and cutting edge features that offers professional and reliable support from the passionate community of Magento. Most of my project was previously created on virtuemart. But now, I would love to choose Magento over virtuemart. Currently, I&#8217;m playing with Joomla [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was amaze of Magento&#8217;s beauty. Why is that so? <span id="u49:">It has smooth integration and cutting edge features that offers professional and reliable support from the passionate community of Magento.</span><br id="ybfp" style="font-style: italic;" /> <br id="bcgr" /> <span id="ru13">Most of my project was previously created on virtuemart. But now, I would love to choose Magento over virtuemart. </span><span id="s.:i">Currently, I&#8217;m playing with Joomla and Magento integration. It may encounter some bugs but I&#8217;m confident that this will be a </span><span id="sfqd">challenge for the two community especially on the e-commerce industry.<em id="phng"><br id="dimp" /> </em></span><br id="np44" /> As of April 2008 Magento and Joomla Integration is still on its beta stage. If you would like to try this integration you may visit the following link.<br id="ndo5" /> <br id="xbdj" /> <a title="Magento and Joomla How to" href="http://www.joomla.com.br/blog/2008/02/14/magento-and-joomla-howto/">Magento and Joomla How tos</a> <br id="xvcf" /> <a title="Magento Joomla! Integration Updates" href="http://www.magentocommerce.com/group/join/141">Magento Joomla! Integration Updates</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2008%2F05%2F05%2Fpower-of-magento-and-joomla-merge-for-the-future-of-ecommercelately-i-was-amaze-of-magentos-beauty-why-is-that-so-it-has-smooth-integration-and-cutting-edge-features-that-offers-professional-and-r%2F&amp;linkname=Power%20of%20Magento%20and%20Joomla%20merge%20for%20the%20future%20of%20ecommerce" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2008/05/05/power-of-magento-and-joomla-merge-for-the-future-of-ecommercelately-i-was-amaze-of-magentos-beauty-why-is-that-so-it-has-smooth-integration-and-cutting-edge-features-that-offers-professional-and-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EB for April 19, 2008: All Filipino Joomla Enthusiasts and Developers</title>
		<link>http://www.jdam.us/2008/04/15/eb-for-april-19-2008-all-filipino-joomla-enthusiasts-and-developers/</link>
		<comments>http://www.jdam.us/2008/04/15/eb-for-april-19-2008-all-filipino-joomla-enthusiasts-and-developers/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 08:12:06 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Opensource Communities]]></category>

		<guid isPermaLink="false">http://www.jdam.us/v3/?p=58</guid>
		<description><![CDATA[What: EB for All Filipino Joomla Enthusiasts and Developers When: April 19, 2008 &#8211; Sat &#8211; 1:30 PM &#8211; 5:30 PM (GMT +8) Where: 28 Mapagkawanggawa cor. Magiting Street, Teachers Village Diliman, Quezon City, Philippines 1101 [IPD Headquarters] for the full announcement visit the forum]]></description>
			<content:encoded><![CDATA[<p>What: EB for All Filipino Joomla Enthusiasts and Developers<br />
When: April 19, 2008 &#8211; Sat &#8211; 1:30 PM &#8211; 5:30 PM (GMT +8)<br />
Where: 28 Mapagkawanggawa cor. Magiting Street, Teachers Village<br />
Diliman, Quezon City, Philippines 1101<br />
[IPD Headquarters]</p>
<p>for the full announcement visit the <a href="http://forum.joomla.org/viewtopic.php?f=21&amp;t=284317">forum</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2008%2F04%2F15%2Feb-for-april-19-2008-all-filipino-joomla-enthusiasts-and-developers%2F&amp;linkname=EB%20for%20April%2019%2C%202008%3A%20All%20Filipino%20Joomla%20Enthusiasts%20and%20Developers" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2008/04/15/eb-for-april-19-2008-all-filipino-joomla-enthusiasts-and-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla forum migration from smf to phpbb3</title>
		<link>http://www.jdam.us/2008/02/13/joomla-forum-migration-from-smf-to-phpbb3/</link>
		<comments>http://www.jdam.us/2008/02/13/joomla-forum-migration-from-smf-to-phpbb3/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 08:02:05 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Opensource Communities]]></category>

		<guid isPermaLink="false">http://www.jdam.us/v3/?p=50</guid>
		<description><![CDATA[Almost 24 hours of waiting the new forum of Joomla was successfully migrated, just this Feb. 12, 2008. It was a sweet success for opensource community like Joomla. There is  a big difference now just imagine from smf to new phpbb3. Great job for the core and the rest of the moderator of Joomla. Its [...]]]></description>
			<content:encoded><![CDATA[<p>Almost 24 hours of waiting the new forum of Joomla was successfully migrated, just this Feb. 12, 2008. It was a sweet success for opensource community like Joomla. There is  a big difference now just imagine from smf to  new phpbb3. Great job for the core and the rest of the moderator of Joomla. Its another history in the making.</p>
<p><script type="text/javascript">// <![CDATA[
google_ad_client = "pub-6422361117232031";
google_ad_width = 468; 
google_ad_height = 60; 
google_ad_format = "468x60_as"; 
google_ad_channel = ""; 
google_ad_type = "text"; 
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "6C82B5";
google_color_text = "000000";
google_color_url = "008000";
// ]]&gt;</script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script><script src="http://pagead2.googlesyndication.com/pagead/expansion_embed.js"></script><script src="http://googleads.g.doubleclick.net/pagead/test_domain.js"></script><script type="text/javascript">// <![CDATA[
google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);
// ]]&gt;</script><ins style="border: medium none; margin: 0pt; padding: 0pt; display: inline-table; height: 60px; position: relative; visibility: visible; width: 468px;"><ins style="border: medium none; margin: 0pt; padding: 0pt; display: block; height: 60px; position: relative; visibility: visible; width: 468px;"></ins></ins></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2008%2F02%2F13%2Fjoomla-forum-migration-from-smf-to-phpbb3%2F&amp;linkname=Joomla%20forum%20migration%20from%20smf%20to%20phpbb3" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2008/02/13/joomla-forum-migration-from-smf-to-phpbb3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A tips for newbie on Joomla 1.5.0 Beta</title>
		<link>http://www.jdam.us/2008/01/05/a-tips-for-newbie-on-joomla-150-beta/</link>
		<comments>http://www.jdam.us/2008/01/05/a-tips-for-newbie-on-joomla-150-beta/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 07:12:39 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Joomla!]]></category>

		<guid isPermaLink="false">http://localhost/iserver/jdam/jus/?p=9</guid>
		<description><![CDATA[I assume that you already have Joomla 1.5.0 beta installed on your server. And for your convenience here are some tips how to play smoothly. Before you install any extension make sure that the required directory are writable. To check the permission click on ( Help =&#62; System info ). To support older version of [...]]]></description>
			<content:encoded><![CDATA[<p>I assume that you already have Joomla 1.5.0 beta installed on your server.<br />
And for your convenience here are some tips how to play smoothly.<br />
Before you install any extension make sure that the required directory are writable.<br />
To check the permission click on ( Help =&gt; System info ).</p>
<p>To support older version of Joomla extensions such as template, components, and modules<br />
enable the &#8220;System &#8211; Legacy&#8221; go to extensions =&gt; plugin manager.</p>
<p>Here are the list needed to be writable:</p>
<p>administrator/backups/<br />
administrator/components/<br />
administrator/language/<br />
administrator/language/en-GB/<br />
administrator/modules/<br />
administrator/templates/<br />
components/<br />
images/<br />
images/banners/<br />
images/stories/<br />
language/<br />
language/en-GB/<br />
language/pdf_fonts/<br />
modules/<br />
plugins/<br />
plugins/content/<br />
plugins/editors/<br />
plugins/editors-xtd/<br />
plugins/search/<br />
plugins/system/<br />
plugins/user/<br />
plugins/xmlrpc/<br />
tmp/<br />
templates/<br />
Cache Directory /home/jdsits08/public_html/cache/<br />
Cache Directory /home/jdsits08/public_html/administrator/cache/</p>
<p>I may update this tips from time to time. More tips coming soon&#8230;.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2008%2F01%2F05%2Fa-tips-for-newbie-on-joomla-150-beta%2F&amp;linkname=A%20tips%20for%20newbie%20on%20Joomla%201.5.0%20Beta" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2008/01/05/a-tips-for-newbie-on-joomla-150-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two day event of 1st Philippine Conference on FOSS and E-Governance</title>
		<link>http://www.jdam.us/2007/03/08/two-day-event-of-1st-philippine-conference-on-foss-and-e-governance/</link>
		<comments>http://www.jdam.us/2007/03/08/two-day-event-of-1st-philippine-conference-on-foss-and-e-governance/#comments</comments>
		<pubDate>Thu, 08 Mar 2007 04:52:33 +0000</pubDate>
		<dc:creator>jdam</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Joomla!]]></category>

		<guid isPermaLink="false">http://www.jdam.us/v3/?p=35</guid>
		<description><![CDATA[The two day event of the 1st Philippine Conference on FOSS and E-Governance at the Shangrila Hotel, Mandaluyong City was a success to Pinoy Joomla User. It is also the first meet ups of Joomla pinoy since Joomla was born. Even we don&#8217;t have enough time for preparation still the event was a success.]]></description>
			<content:encoded><![CDATA[<p>The two day event of the 1st Philippine Conference on FOSS and E-Governance at the Shangrila Hotel, Mandaluyong City was a success to Pinoy Joomla User. It is also the first meet ups of Joomla pinoy since Joomla was born. Even we don&#8217;t have enough time for preparation still the event was a success.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.jdam.us%2F2007%2F03%2F08%2Ftwo-day-event-of-1st-philippine-conference-on-foss-and-e-governance%2F&amp;linkname=Two%20day%20event%20of%201st%20Philippine%20Conference%20on%20FOSS%20and%20E-Governance" target="_blank"><img src="http://www.jdam.us/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.jdam.us/2007/03/08/two-day-event-of-1st-philippine-conference-on-foss-and-e-governance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
