<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Techonia.com</title>
	
	<link>http://www.techonia.com</link>
	<description>News, Tutorials, and How tos about Technology</description>
	<lastBuildDate>Thu, 11 Mar 2010 09:45:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Techonia" /><feedburner:info uri="techonia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Techonia</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to create vlan on Linux (with Cisco Catalyst Switch)</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/pynEas7DyZM/create-vlan-on-linux-with-cisco-catalyst-switch</link>
		<comments>http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch#comments</comments>
		<pubDate>Tue, 09 Mar 2010 13:50:08 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Trunk]]></category>
		<category><![CDATA[Vlan]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1227</guid>
		<description><![CDATA[In this article I want to share to you on how to create and configure vlan on Linux through Cisco Catalyst Switch]]></description>
			<content:encoded><![CDATA[<p>In this article I want to share to you on how to create and configure vlan on Linux through Cisco Catalyst Switch.</p>
<p><strong>Requirements:</strong><br />
1. Linux installed on a PC with one or more NICs (Network Interface Card). I use Centos 5.4 using 2.6.18-164.11.1.el5PAE kernel. It should be applicable on other Linux distros such as Slackware, Ubuntu, Fedora, Debian, etc.<br />
2. Cisco Catalyst Switch 2950<br />
3. 2 PC/Laptop running Windows/Linux/BSD/MacOSX<br />
4. 3 straight cables</p>
<p>This tutorial is based-on network diagram below:<br />
<img src="http://www.techonia.com/wp-content/uploads/2010/03/Linux-Vlan-Trunking-Topology.png" alt="" title="Linux-Vlan-Trunking-Topology" width="510" height="510" class="aligncenter size-full wp-image-1228" /><br />
<span id="more-1227"></span><br />
Here are the full steps.</p>
<p><strong>1. Load 802.1q module into the system</strong><br />
By default the 802.1q module is not loaded so we firstly have to load it. You can check whether it is already loaded or not by using &#8216;lsmod&#8217; command.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">lsmod</span> <span style="color: #000000; font-weight: bold;">|</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #000000;">802</span></pre></div></div>

<p>If there is nothing shown by lsmod command, it means the module has not been loaded yet. Run &#8216;modprobe&#8217; to load it.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">modprobe 8021q</pre></div></div>

<p>Make sure the module was successfully loaded by running the &#8216;lsmod&#8217; again</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">lsmod</span> <span style="color: #000000; font-weight: bold;">|</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #000000;">802</span>
8021q                  <span style="color: #000000;">24649</span>  <span style="color: #000000;">0</span></pre></div></div>

<p>If you see something similar like above, the 8021q has been successfully loaded.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9918486178245710";
/* 336x280, created 6/26/09 */
google_ad_slot = "2479988151";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>2. Create vlan interface</strong><br />
We will use eth1 interface in the Linux box. We have to bring the interface up without IP address assigned to it before we can use it.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ifconfig</span> eth1 0.0.0.0 up</pre></div></div>

<p>We will create interface vlan 11 and vlan 12 on this eth1 interface. To create a vlan interface, use &#8216;vconfig add&#8217; command as below:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">vconfig add eth1 <span style="color: #000000;">11</span>
Added VLAN with VID == <span style="color: #000000;">11</span> to IF -:eth1:-
&nbsp;
vconfig add eth1 <span style="color: #000000;">12</span>
Added VLAN with VID == <span style="color: #000000;">12</span> to IF -:eth1:-</pre></div></div>

<p>These commands above will create devices eth1.11 and eth1.12 to your system. Linux will consider these as another network devices so you can configure and assign IP address like other.<br />
You also see the vlan interfaces by typing &#8216;ifconfig -a&#8217; command.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ifconfig</span> <span style="color: #660033;">-a</span>
&nbsp;
eth1.11   Link encap:Ethernet  HWaddr 00:<span style="color: #000000;">30</span>:<span style="color: #000000;">48</span>:BF:4E:BD
          BROADCAST MULTICAST  MTU:<span style="color: #000000;">1500</span>  Metric:<span style="color: #000000;">1</span>
          RX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> frame:<span style="color: #000000;">0</span>
          TX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> carrier:<span style="color: #000000;">0</span>
          collisions:<span style="color: #000000;">0</span> txqueuelen:<span style="color: #000000;">0</span>
          RX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span>  TX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
eth1.12   Link encap:Ethernet  HWaddr 00:<span style="color: #000000;">30</span>:<span style="color: #000000;">48</span>:BF:4E:BD
          BROADCAST MULTICAST  MTU:<span style="color: #000000;">1500</span>  Metric:<span style="color: #000000;">1</span>
          RX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> frame:<span style="color: #000000;">0</span>
          TX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> carrier:<span style="color: #000000;">0</span>
          collisions:<span style="color: #000000;">0</span> txqueuelen:<span style="color: #000000;">0</span>
          RX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span>  TX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p><strong>3. Assign ip address to the vlan interfaces</strong><br />
The vlan  interfaces were successfully created on the previous step. Now we assign IP address on those interfaces using ifconfig command as below:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ifconfig</span> eth1.11 192.168.11.254 netmask 255.255.255.0 up
<span style="color: #c20cb9; font-weight: bold;">ifconfig</span> eth1.12 192.168.12.254 netmask 255.255.255.0 up</pre></div></div>

<p>Make sure that the IP addresses were assigned successfully on the interfaces.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ifconfig</span> eth1.11
eth1.11   Link encap:Ethernet  HWaddr 00:<span style="color: #000000;">30</span>:<span style="color: #000000;">48</span>:BF:4E:BD
          inet addr:192.168.11.254  Bcast:192.168.11.255  Mask:255.255.255.0
          UP BROADCAST MULTICAST  MTU:<span style="color: #000000;">1500</span>  Metric:<span style="color: #000000;">1</span>
          RX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> frame:<span style="color: #000000;">0</span>
          TX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> carrier:<span style="color: #000000;">0</span>
          collisions:<span style="color: #000000;">0</span> txqueuelen:<span style="color: #000000;">0</span>
          RX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span>  TX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">ifconfig</span> eth1.12
eth1.12   Link encap:Ethernet  HWaddr 00:<span style="color: #000000;">30</span>:<span style="color: #000000;">48</span>:BF:4E:BD
          inet addr:192.168.12.254  Bcast:192.168.12.255  Mask:255.255.255.0
          UP BROADCAST MULTICAST  MTU:<span style="color: #000000;">1500</span>  Metric:<span style="color: #000000;">1</span>
          RX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> frame:<span style="color: #000000;">0</span>
          TX packets:<span style="color: #000000;">0</span> errors:<span style="color: #000000;">0</span> dropped:<span style="color: #000000;">0</span> overruns:<span style="color: #000000;">0</span> carrier:<span style="color: #000000;">0</span>
          collisions:<span style="color: #000000;">0</span> txqueuelen:<span style="color: #000000;">0</span>
          RX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span>  TX bytes:<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.0</span> b<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>Until this step, creating and configuring vlans have been done on the Linux box. Now we are going to configure vlan and trunk on the Cisco Catalyst switch.</p>
<p><strong>4. Configure cisco catalyst switch, add vlan database, configure interface access vlan and trunk</strong><br />
As I said before, we use vlan 11 and vlan 12 on this tutorial. So those vlan must be added in the vlan database of the switch.</p>

<div class="wp_syntax"><div class="code"><pre class="cisco" style="font-family:monospace;">switch#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
switch(config)#vlan 11
switch(config-vlan)#name test-vlan11
switch(config-vlan)#exit
switch(config)#vlan 12
switch(config-vlan)#name test-vlan12
switch(config-vlan)#exit
switch(config)#exit
switch#wr mem
Building configuration...
[OK]
&nbsp;
&nbsp;
switch#show vlan | include test-vlan
11   test-vlan11                      active
12   test-vlan12                      active</pre></div></div>

<p>Vlan 11 and 12 have been successfully added to the database and active.</p>
<p>Now we have to configure 3 ports in the cisco catalyst switch. 1 port is for trunk between the switch and Linux box and 2 ports are for PC-A and PC-B.<br />
We will use port Fa0/16 as trunk port and Fa0/14 and Fa0/15 as vlan access port connected to PC-A and PC-B respectively. Below are the commands:</p>

<div class="wp_syntax"><div class="code"><pre class="cisco" style="font-family:monospace;">switch#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
switch(config)#int f0/14
switch(config-if)#description To_PC-A
switch(config-if)#swi acc vlan 11
switch(config-if)#no shutdown
switch(config-if)#exit
switch(config)#int f0/15
switch(config-if)#description To_PC-B
switch(config-if)#swi acc vlan 12
switch(config-if)#no shutdown
switch(config-if)#exit
switch(config)#int f0/16
switch(config-if)#description Trunk_To_Linux_Router
switch(config-if)#switchport trunk allowed vlan 11,12
switch(config-if)#switchport mode trunk
switch(config-if)#no shutdown
switch(config-if)#exit
switch(config)#exit
switch#wr mem
Building configuration...
[OK]
switch#
&nbsp;
&nbsp;
switch#show running-config interface f0/14
Building configuration...
&nbsp;
Current configuration : 82 bytes
!
interface FastEthernet0/14
 description To_PC-A
 switchport access vlan 11
end
&nbsp;
switch#show running-config interface f0/15
Building configuration...
&nbsp;
Current configuration : 82 bytes
!
interface FastEthernet0/15
 description To_PC-B
 switchport access vlan 12
end
&nbsp;
switch#show running-config interface f0/16
Building configuration...
&nbsp;
Current configuration : 129 bytes
!
interface FastEthernet0/16
 description Trunk_To_Linux_Router
 switchport trunk allowed vlan 11,12
 switchport mode trunk
end
&nbsp;
switch#</pre></div></div>

<p>The configurations on both Linux box and Switch have completed.<br />
Now it is the time to test whether PC-A and PC-B can ping to the same network on the Linux box. Make sure the cables are connected properly to each ports on the devices.</p>
<p><strong>5. Test ping to Linux box using vlan ip address</strong><br />
Test from PC-A:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">C:\Users\Fuad NAHDI<span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #c20cb9; font-weight: bold;">ping</span> 192.168.11.254
&nbsp;
Pinging 192.168.11.254 with <span style="color: #000000;">32</span> bytes of data:
Reply from 192.168.11.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">time</span></span>=1ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
Reply from 192.168.11.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #000000; font-weight: bold;">time</span><span style="color: #000000; font-weight: bold;">&lt;</span>1ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
Reply from 192.168.11.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">time</span></span>=1ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
Reply from 192.168.11.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #000000; font-weight: bold;">time</span><span style="color: #000000; font-weight: bold;">&lt;</span>1ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
&nbsp;
Ping statistics <span style="color: #000000; font-weight: bold;">for</span> 192.168.11.254:
    Packets: Sent = <span style="color: #000000;">4</span>, Received = <span style="color: #000000;">4</span>, Lost = <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">%</span> loss<span style="color: #7a0874; font-weight: bold;">&#41;</span>,
Approximate round trip <span style="color: #7a0874; font-weight: bold;">times</span> <span style="color: #000000; font-weight: bold;">in</span> milli-seconds:
    Minimum = 0ms, Maximum = 1ms, Average = 0ms
&nbsp;
C:\Users\Fuad NAHDI<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>Test from PC-B:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">C:\Users\Fuad NAHDI<span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #c20cb9; font-weight: bold;">ping</span> 192.168.12.254
&nbsp;
Pinging 192.168.12.254 with <span style="color: #000000;">32</span> bytes of data:
Reply from 192.168.12.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">time</span></span>=2ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
Reply from 192.168.12.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #000000; font-weight: bold;">time</span><span style="color: #000000; font-weight: bold;">&lt;</span>1ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
Reply from 192.168.12.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #000000; font-weight: bold;">time</span><span style="color: #000000; font-weight: bold;">&lt;</span>1ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
Reply from 192.168.12.254: <span style="color: #007800;">bytes</span>=<span style="color: #000000;">32</span> <span style="color: #000000; font-weight: bold;">time</span><span style="color: #000000; font-weight: bold;">&lt;</span>1ms <span style="color: #007800;">TTL</span>=<span style="color: #000000;">64</span>
&nbsp;
Ping statistics <span style="color: #000000; font-weight: bold;">for</span> 192.168.12.254:
    Packets: Sent = <span style="color: #000000;">4</span>, Received = <span style="color: #000000;">4</span>, Lost = <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">%</span> loss<span style="color: #7a0874; font-weight: bold;">&#41;</span>,
Approximate round trip <span style="color: #7a0874; font-weight: bold;">times</span> <span style="color: #000000; font-weight: bold;">in</span> milli-seconds:
    Minimum = 0ms, Maximum = 2ms, Average = 0ms</pre></div></div>

<p>Everything has been done. Now you should understand on how to create and configure vlan on Linux and Cisco Catalyst switch.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="create and configure vlan in linux">create and configure vlan in linux</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="debian vlan trunk">debian vlan trunk</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="fedora added VLAN with VID">fedora added VLAN with VID</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="installing 8021q redhat lsmod">installing 8021q redhat lsmod</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="linux show vlans">linux show vlans</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="linux vlan no rx">linux vlan no rx</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="linux vlan trunk">linux vlan trunk</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="vconfig add inerface ifconfig without ip -wlan -rip -authentication -wireless -no cdp -bridge">vconfig add inerface ifconfig without ip -wlan -rip -authentication -wireless -no cdp -bridge</a> (1)</li><li><a href="http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" title="vlan on linux and catalyst switch">vlan on linux and catalyst switch</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 9.742 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch&amp;title=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29+-+http://tinyurl.com/yzakmm6+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch&amp;t=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch&amp;title=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch&amp;submitHeadline=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29&amp;submitSummary=In%20this%20article%20I%20want%20to%20share%20to%20you%20on%20how%20to%20create%20and%20configure%20vlan%20on%20Linux%20through%20Cisco%20Catalyst%20Switch.%0D%0A%0D%0ARequirements%3A%0D%0A1.%20Linux%20installed%20on%20a%20PC%20with%20one%20or%20more%20NICs%20%28Network%20Interface%20Card%29.%20I%20use%20Centos%205.4%20using%202.6.18-164.11.1.el5PAE%20kernel.%20It%20should%20be%20applicable%20on%20other%20Linux&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch&amp;title=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch&amp;title=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch&amp;title=How+to+create+vlan+on+Linux+%28with+Cisco+Catalyst+Switch%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/pynEas7DyZM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/create-vlan-on-linux-with-cisco-catalyst-switch</feedburner:origLink></item>
		<item>
		<title>Eclipse Announced new initiatives to support Mylyn Ecosystem</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/cIigG1McfYg/eclipse-announced-new-initiatives-support-mylyn-ecosystem</link>
		<comments>http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:48:57 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Mylyn]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1220</guid>
		<description><![CDATA[The Eclipse Foundation today announced new initiatives to support the ongoing growth of the Eclipse Mylyn ecosystem. The open source Mylyn project is a widely extended framework for integrating task and application lifecycle management (ALM) tools with the Eclipse IDE. The project will create new sub-projects representing key IDE/ALM integration categories. New projects include: the "Tasks" project for integrating task and change management; "SCM" for integrating source code management]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techonia.com/wp-content/uploads/2010/02/eclipse.png"><img class="alignleft size-full wp-image-1150" title="eclipse" src="http://www.techonia.com/wp-content/uploads/2010/02/eclipse.png" alt="" width="237" height="127" /></a>The Eclipse Foundation today announced new initiatives to support the ongoing growth of the Eclipse Mylyn ecosystem. The open source Mylyn project is a widely extended framework for integrating task and application lifecycle management (ALM) tools with the Eclipse IDE. The project will create new sub-projects representing key IDE/ALM integration categories. New projects include: the &#8220;Tasks&#8221; project for integrating task and change management; &#8220;SCM&#8221; for integrating source code management; &#8220;Build&#8221; for integrating build management and continuous integration; and &#8220;Review&#8221; for collaborative code review. The new sub-project leadership will support a broader range of leading Agile vendors contributing to the ongoing evolution of Mylyn.</p>
<p><!-- You will NOT be able to see the ad on your site! This unit is hidden on your page, and will only display to your search engine traffic (from US and CA). To preview, paste the code up on your site, then add #chitikatest=mortgage to the end of your URL in your browser's address bar.  Example:  www.yourwebsite.com#chitikatest=mortgage. This will show you what the ad would look like to a user who is interested in "mortgages." -->
<script type="text/javascript"><!--
ch_client = "fuadnahdi";
ch_type = "mpu";
ch_width = 468;
ch_height = 180;
ch_color_bg = "FFFFFF";
ch_color_border = "FFFFFF";
ch_color_title = "0066CC";
ch_color_site_link = "0066CC";
ch_color_text = "000000";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_font_title = "Arial";
ch_font_text = "Arial";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></p>
<p>For details see Eclipse announcement on <a href="http://www.eclipse.org/org/press-release/20100308_mylyn.php" target="_blank">its website</a>.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem&amp;title=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem+-+http://tinyurl.com/yzr5kvt+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem&amp;t=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem&amp;title=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem&amp;submitHeadline=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem&amp;submitSummary=The%20Eclipse%20Foundation%20today%20announced%20new%20initiatives%20to%20support%20the%20ongoing%20growth%20of%20the%20Eclipse%20Mylyn%20ecosystem.%20The%20open%20source%20Mylyn%20project%20is%20a%20widely%20extended%20framework%20for%20integrating%20task%20and%20application%20lifecycle%20management%20%28ALM%29%20tools%20with%20the%20Eclipse%20IDE.%20The%20project%20will%20create%20new%20su&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem&amp;title=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem&amp;title=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem&amp;title=Eclipse+Announced+new+initiatives+to+support+Mylyn+Ecosystem" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/cIigG1McfYg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/eclipse-announced-new-initiatives-support-mylyn-ecosystem</feedburner:origLink></item>
		<item>
		<title>Install Apache, PHP with SSL and MySQL support on PC-BSD 8.0 / FreeBSD 8.0</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/ohhuVOPh9aM/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd</link>
		<comments>http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd#comments</comments>
		<pubDate>Sat, 06 Mar 2010 00:49:42 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[Apache / PHP]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1204</guid>
		<description><![CDATA[I want to share you on how to install Apache and PHP with SSL support on PC-BSD 8.0. I use the current stable version of Apache (version 2.2.14) and PHP (version 5.3.2) using PC-BSD 8.0 as the operating system. This article should be applicable to install them on Linux (Slackware, Centos, Ubuntu, Fedora, Redhat, etc) or other BSD varian (NetBSD, OpenBSD). The MySQL database was installed during system installation.]]></description>
			<content:encoded><![CDATA[<p>In this article, I want to share you on how to install Apache and PHP with SSL and MySQL support on PC-BSD 8.0. I use the current stable version of Apache (version 2.2.14) and PHP (version 5.3.2) using PC-BSD 8.0 as the operating system. This article should be applicable to install them on Linux (Slackware, Centos, Ubuntu, Fedora, Redhat, etc) or other BSD varian (NetBSD, OpenBSD). The MySQL server was installed during system installation. If you want to install MySQL server from source distribution, follow my previous tutorial <a href="http://www.techonia.com/quick-install-mysql-source" target="_blank">here</a>.<br />
<span id="more-1204"></span><br />
<strong>1. Install Apache Httpd</strong></p>
<p>Download the Apache httpd source file from <a href="http://httpd.apache.org/download.cgi">http://httpd.apache.org/download.cgi</a> and then extract, configure, compile and install it.<br />
<!-- You will NOT be able to see the ad on your site! This unit is hidden on your page, and will only display to your search engine traffic (from US and CA). To preview, paste the code up on your site, then add #chitikatest=mortgage to the end of your URL in your browser's address bar.  Example:  www.yourwebsite.com#chitikatest=mortgage. This will show you what the ad would look like to a user who is interested in "mortgages." -->
<script type="text/javascript"><!--
ch_client = "fuadnahdi";
ch_type = "mpu";
ch_width = 468;
ch_height = 180;
ch_color_bg = "FFFFFF";
ch_color_border = "FFFFFF";
ch_color_title = "0066CC";
ch_color_site_link = "0066CC";
ch_color_text = "000000";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_font_title = "Arial";
ch_font_text = "Arial";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">tar</span> jxf httpd-2.2.14.tar.bz2
$ <span style="color: #7a0874; font-weight: bold;">cd</span> httpd-2.2.14</pre></div></div>

<p>We will install Apache in /usr/local/apache directory and its system configuration files will be installed in /etc/apache directory.<br />
So here how we configure it.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ .<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache <span style="color: #660033;">--mandir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">man</span> <span style="color: #660033;">--enable-ssl</span> <span style="color: #660033;">--enable-suexec</span> \
<span style="color: #660033;">--enable-cgi</span> <span style="color: #660033;">--enable-rewrite</span> <span style="color: #660033;">--enable-so</span> <span style="color: #660033;">--enable-modules</span>=most <span style="color: #660033;">--enable-mods-shared</span>=max <span style="color: #660033;">--sysconfdir</span>=<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache
&nbsp;
<span style="color: #660033;">-----</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span>snip<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #660033;">-----</span>
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>httpd.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-autoindex.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-dav.conf      
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-default.conf  
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-info.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-languages.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-manual.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-mpm.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-multilang-errordoc.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-ssl.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-userdir.conf
config.status: creating docs<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-vhosts.conf
config.status: creating include<span style="color: #000000; font-weight: bold;">/</span>ap_config_layout.h
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>apxs
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>apachectl
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>dbmmanage
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>envvars-std
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>log_server_status
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>logresolve.pl
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>phf_abuse_log.cgi
config.status: creating support<span style="color: #000000; font-weight: bold;">/</span>split-logfile
config.status: creating build<span style="color: #000000; font-weight: bold;">/</span>rules.mk
config.status: creating build<span style="color: #000000; font-weight: bold;">/</span>pkg<span style="color: #000000; font-weight: bold;">/</span>pkginfo
config.status: creating build<span style="color: #000000; font-weight: bold;">/</span>config_vars.sh
config.status: creating include<span style="color: #000000; font-weight: bold;">/</span>ap_config_auto.h
config.status: executing default commands
&nbsp;
$ <span style="color: #c20cb9; font-weight: bold;">make</span>
$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span>
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> srclib                                     
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> pcre                                       
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> os                                         
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> unix                                       
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> server                                     
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> mpm                                        
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> prefork                                    
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> modules                                    
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> aaa                                        
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache                                      
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>modules                              
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> database                                   
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> debug                                      
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> filters                                    
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> loggers                                    
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> metadata                                   
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> ssl                                        
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> http                                       
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> dav<span style="color: #000000; font-weight: bold;">/</span>main                                   
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> generators                                 
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> dav<span style="color: #000000; font-weight: bold;">/</span>fs                                     
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> mappers                                    
Making <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">in</span> support                                    
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>bin                                  
<span style="color: #7a0874; font-weight: bold;">cd</span> support <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> suexec                                    
<span style="color: #000000; font-weight: bold;">`</span>suexec<span style="color: #ff0000;">' is up to date.                                      
Installing configuration files                               
mkdir /etc/apache                                            
mkdir /etc/apache/extra                                      
mkdir /etc/apache/original                                   
mkdir /etc/apache/original/extra                             
Installing HTML documents                                    
mkdir /usr/local/apache/htdocs                               
Installing error documents                                   
mkdir /usr/local/apache/error                                
Installing icons                                             
mkdir /usr/local/apache/icons                                
mkdir /usr/local/apache/logs                                 
Installing CGIs                                              
mkdir /usr/local/apache/cgi-bin                              
Installing header files                                      
mkdir /usr/local/apache/include                              
Installing build system files                                
mkdir /usr/local/apache/build                                
Installing man pages and online manual                       
mkdir /usr/local/apache/man                                  
mkdir /usr/local/apache/man/man1                             
mkdir /usr/local/apache/man/man8                             
mkdir /usr/local/apache/manual</span></pre></div></div>

<p><strong>2. Generate SSL Certificate and key</strong></p>
<p>To generate SSL Certificate and key, run the commands below as root. Change the password &#8216;admin123&#8242; to whatever password you want.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt
openssl genrsa <span style="color: #660033;">-des3</span> <span style="color: #660033;">-passout</span> pass:admin123 <span style="color: #660033;">-out</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.key.org <span style="color: #000000;">1024</span>
openssl req <span style="color: #660033;">-new</span> <span style="color: #660033;">-passin</span> pass:admin123 <span style="color: #660033;">-passout</span> pass:admin123 \
<span style="color: #660033;">-key</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.key.org <span style="color: #660033;">-out</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.csr <span style="color: #660033;">-days</span> <span style="color: #000000;">3650</span>
&nbsp;
openssl req <span style="color: #660033;">-x509</span> <span style="color: #660033;">-passin</span> pass:admin123 <span style="color: #660033;">-passout</span> pass:admin123 \
<span style="color: #660033;">-key</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.key.org <span style="color: #660033;">-in</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.csr \
<span style="color: #660033;">-out</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.crt <span style="color: #660033;">-days</span> <span style="color: #000000;">3650</span>
&nbsp;
openssl rsa <span style="color: #660033;">-passin</span> pass:admin123 <span style="color: #660033;">-in</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.key.org \
<span style="color: #660033;">-out</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.key
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.key
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.crt<span style="color: #000000; font-weight: bold;">/</span>server.key <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.key<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">400</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>ssl.key<span style="color: #000000; font-weight: bold;">/</span>server.key</pre></div></div>

<p>If you run the command above, the result should be similar like below:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># mkdir /etc/apache/ssl.crt                                     </span>
<span style="color: #666666; font-style: italic;"># openssl genrsa -des3 -passout pass:admin123 -out /etc/apache/ssl.crt/server.key.org 1024</span>
Generating RSA private key, <span style="color: #000000;">1024</span> bit long modulus                                                        
.................................++++++                                                                  
.++++++                                                                                                  
e is <span style="color: #000000;">65537</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>0x10001<span style="color: #7a0874; font-weight: bold;">&#41;</span>                                                                                     
<span style="color: #666666; font-style: italic;"># openssl req -new -passin pass:admin123 -passout pass:admin123 -key /etc/apache/ssl.crt/server.key.org -out /etc/apache/ssl.crt/server.csr -days 3650                                                       </span>
You are about to be asked to enter information that will be incorporated                                      
into your certificate request.                                                                                
What you are about to enter is what is called a Distinguished Name or a DN.                                   
There are quite a few fields but you can leave some blank                                                     
For some fields there will be a default value,
If you enter <span style="color: #ff0000;">'.'</span>, the field will be left blank.
<span style="color: #660033;">-----</span>
Country Name <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2</span> letter code<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>AU<span style="color: #7a0874; font-weight: bold;">&#93;</span>:ID
State or Province Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>full name<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>Some-State<span style="color: #7a0874; font-weight: bold;">&#93;</span>:DKI Jakarta
Locality Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, city<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>:South Jakarta
Organization Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, company<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>Internet Widgits Pty Ltd<span style="color: #7a0874; font-weight: bold;">&#93;</span>:Techonia Corporation
Organizational Unit Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, section<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>:Network
Common Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, YOUR name<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>:Fuad NAHDI
Email Address <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>:fuad.nahdi<span style="color: #000000; font-weight: bold;">@</span>techonia.com
&nbsp;
Please enter the following <span style="color: #ff0000;">'extra'</span> attributes
to be sent with your certificate request
A challenge password <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>:
An optional company name <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>:
<span style="color: #666666; font-style: italic;"># openssl req -x509 -passin pass:admin123 -passout pass:admin123 -key /etc/apache/ssl.crt/server.key.org -in /etc/apache/ssl.crt/server.csr -out /etc/apache/ssl.crt/server.crt -days 3650</span>
<span style="color: #666666; font-style: italic;"># openssl rsa -passin pass:admin123 -in /etc/apache/ssl.crt/server.key.org -out /etc/apache/ssl.crt/server.key</span>
writing RSA key
<span style="color: #666666; font-style: italic;"># mkdir /etc/apache/ssl.key</span>
<span style="color: #666666; font-style: italic;"># mv /etc/apache/ssl.crt/server.key /etc/apache/ssl.key/</span>
<span style="color: #666666; font-style: italic;"># chmod 400 /etc/apache/ssl.key/server.key</span></pre></div></div>

<p><strong>3. Install PHP</strong></p>
<p>Download the latest stable version of PHP from <a href="http://www.php.net/downloads.php">http://www.php.net/downloads.php</a> then extract, configure, compile and install.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">tar</span> jxf php-5.3.2.tar.bz2
$ <span style="color: #7a0874; font-weight: bold;">cd</span> php-5.3.2
$ .<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--with-apxs2</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>apxs \
<span style="color: #660033;">--mandir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">man</span> <span style="color: #660033;">--with-mysql</span> <span style="color: #660033;">--with-gd</span> <span style="color: #660033;">--enable-ftp</span> \
<span style="color: #660033;">--enable-calendar</span> <span style="color: #660033;">--enable-sockets</span> <span style="color: #660033;">--enable-mbstring</span>
&nbsp;
<span style="color: #660033;">---------</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span>snip<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #660033;">---------</span>
creating main<span style="color: #000000; font-weight: bold;">/</span>build-defs.h
creating scripts<span style="color: #000000; font-weight: bold;">/</span>phpize
creating scripts<span style="color: #000000; font-weight: bold;">/</span>man1<span style="color: #000000; font-weight: bold;">/</span>phpize.1
creating scripts<span style="color: #000000; font-weight: bold;">/</span>php-config
creating scripts<span style="color: #000000; font-weight: bold;">/</span>man1<span style="color: #000000; font-weight: bold;">/</span>php-config.1
creating sapi<span style="color: #000000; font-weight: bold;">/</span>cli<span style="color: #000000; font-weight: bold;">/</span>php.1
creating main<span style="color: #000000; font-weight: bold;">/</span>php_config.h
creating main<span style="color: #000000; font-weight: bold;">/</span>internal_functions.c
creating main<span style="color: #000000; font-weight: bold;">/</span>internal_functions_cli.c
+--------------------------------------------------------------------+
<span style="color: #000000; font-weight: bold;">|</span> License:                                                           <span style="color: #000000; font-weight: bold;">|</span>
<span style="color: #000000; font-weight: bold;">|</span> This software is subject to the PHP License, available <span style="color: #000000; font-weight: bold;">in</span> this     <span style="color: #000000; font-weight: bold;">|</span>
<span style="color: #000000; font-weight: bold;">|</span> distribution <span style="color: #000000; font-weight: bold;">in</span> the <span style="color: #c20cb9; font-weight: bold;">file</span> LICENSE.  By continuing this installation <span style="color: #000000; font-weight: bold;">|</span>
<span style="color: #000000; font-weight: bold;">|</span> process, you are bound by the terms of this license agreement.     <span style="color: #000000; font-weight: bold;">|</span>
<span style="color: #000000; font-weight: bold;">|</span> If you <span style="color: #000000; font-weight: bold;">do</span> not agree with the terms of this license, you must abort <span style="color: #000000; font-weight: bold;">|</span>
<span style="color: #000000; font-weight: bold;">|</span> the installation process at this point.                            <span style="color: #000000; font-weight: bold;">|</span>
+--------------------------------------------------------------------+
&nbsp;
Thank you <span style="color: #000000; font-weight: bold;">for</span> using PHP.
$ <span style="color: #c20cb9; font-weight: bold;">make</span>
$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span>
Installing PHP SAPI module:       apache2handler          
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>build<span style="color: #000000; font-weight: bold;">/</span>instdso.sh <span style="color: #007800;">SH_LIBTOOL</span>=<span style="color: #ff0000;">'/usr/local/share/apr/build-1/libtool'</span> libphp5.la <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>modules                                                                                                   
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>apr<span style="color: #000000; font-weight: bold;">/</span>build-<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>libtool <span style="color: #660033;">--mode</span>=<span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">cp</span> libphp5.la <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>                  
libtool: <span style="color: #c20cb9; font-weight: bold;">install</span>: <span style="color: #c20cb9; font-weight: bold;">cp</span> .libs<span style="color: #000000; font-weight: bold;">/</span>libphp5.so <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>libphp5.so                                    
libtool: <span style="color: #c20cb9; font-weight: bold;">install</span>: <span style="color: #c20cb9; font-weight: bold;">cp</span> .libs<span style="color: #000000; font-weight: bold;">/</span>libphp5.lai <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>libphp5.la                                   
libtool: <span style="color: #c20cb9; font-weight: bold;">install</span>: warning: remember to run <span style="color: #000000; font-weight: bold;">`</span>libtool <span style="color: #660033;">--finish</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>fuad<span style="color: #000000; font-weight: bold;">/</span>Downloads<span style="color: #000000; font-weight: bold;">/</span>php-5.3.2<span style="color: #000000; font-weight: bold;">/</span>libs<span style="color: #ff0000;">'         
chmod 755 /usr/local/apache/modules/libphp5.so                                                                
[activating module `php5'</span> <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>httpd.conf<span style="color: #7a0874; font-weight: bold;">&#93;</span>                                                          
Installing PHP CLI binary:        <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>                                                             
Installing PHP CLI <span style="color: #c20cb9; font-weight: bold;">man</span> page:      <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>man<span style="color: #000000; font-weight: bold;">/</span>man1<span style="color: #000000; font-weight: bold;">/</span>
Installing build environment:     <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>php<span style="color: #000000; font-weight: bold;">/</span>build<span style="color: #000000; font-weight: bold;">/</span>
Installing header files:          <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>php<span style="color: #000000; font-weight: bold;">/</span>
Installing helper programs:       <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>
  program: phpize
  program: php-config
Installing <span style="color: #c20cb9; font-weight: bold;">man</span> pages:             <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>man<span style="color: #000000; font-weight: bold;">/</span>man1<span style="color: #000000; font-weight: bold;">/</span>
  page: phpize.1
  page: php-config.1
Installing PEAR environment:      <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>php<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span>PEAR<span style="color: #7a0874; font-weight: bold;">&#93;</span> Archive_Tar    - installed: 1.3.3
<span style="color: #7a0874; font-weight: bold;">&#91;</span>PEAR<span style="color: #7a0874; font-weight: bold;">&#93;</span> Console_Getopt - installed: 1.2.3
<span style="color: #7a0874; font-weight: bold;">&#91;</span>PEAR<span style="color: #7a0874; font-weight: bold;">&#93;</span> Structures_Graph- installed: 1.0.2
<span style="color: #7a0874; font-weight: bold;">&#91;</span>PEAR<span style="color: #7a0874; font-weight: bold;">&#93;</span> XML_Util       - installed: 1.2.1
<span style="color: #7a0874; font-weight: bold;">&#91;</span>PEAR<span style="color: #7a0874; font-weight: bold;">&#93;</span> PEAR           - installed: 1.9.0
Wrote PEAR system config <span style="color: #c20cb9; font-weight: bold;">file</span> at: <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>pear.conf
You may want to add: <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>php to your php.ini include_path
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>fuad<span style="color: #000000; font-weight: bold;">/</span>Downloads<span style="color: #000000; font-weight: bold;">/</span>php-5.3.2<span style="color: #000000; font-weight: bold;">/</span>build<span style="color: #000000; font-weight: bold;">/</span>shtool <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #660033;">-c</span> ext<span style="color: #000000; font-weight: bold;">/</span>phar<span style="color: #000000; font-weight: bold;">/</span>phar.phar <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #660033;">-f</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>phar.phar <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>phar
Installing PDO headers:          <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>php<span style="color: #000000; font-weight: bold;">/</span>ext<span style="color: #000000; font-weight: bold;">/</span>pdo<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>Open the /etc/apache/httpd.conf file and add this to tell Apache to parse centain extensions as PHP:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">AddType application<span style="color: #000000; font-weight: bold;">/</span>x-httpd-php .php .phtml
AddType application<span style="color: #000000; font-weight: bold;">/</span>x-httpd-php-source .phps</pre></div></div>

<p>and add &#8216;index.php&#8217; inside DirectoryIndex module:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">    DirectoryIndex index.html index.php</pre></div></div>

<p>Restart the Apache.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>apachectl restart</pre></div></div>

<p><strong>4. Activate the SSL in httpd.conf file</strong></p>
<p>Before you activate this, you have to edit the /etc/apache/extra/httpd-ssl.conf file to meet the certificate and key files location.<br />
Below are the parameters you need to edit and you can keep the remaining parameters unchanged.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">DocumentRoot <span style="color: #ff0000;">&quot;/usr/local/apache/htdocs&quot;</span>
ServerName localhost:<span style="color: #000000;">443</span>
ServerAdmin admin<span style="color: #000000; font-weight: bold;">@</span>mydomain.com
SSLCertificateFile <span style="color: #ff0000;">&quot;/etc/apache/ssl.crt/server.crt&quot;</span>
SSLCertificateKeyFile <span style="color: #ff0000;">&quot;/etc/apache/ssl.key/server.key&quot;</span></pre></div></div>

<p>Then edit the /etc/apache/httpd.conf file and uncomment the SSL configuration below:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Secure (SSL/TLS) connections</span>
Include <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>extra<span style="color: #000000; font-weight: bold;">/</span>httpd-ssl.conf</pre></div></div>

<p><script type="text/javascript"><!--
google_ad_client = "pub-9918486178245710";
/* 336x280, created 6/26/09 */
google_ad_slot = "2479988151";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Then restart the Apache again.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>apachectl restart</pre></div></div>

<p>Now try to browse localhost by using HTTPS https://localhost. If any warning prompted saying that the certificate is untrusted, just accept it. It is safe.</p>
<p><img src="http://www.techonia.com/wp-content/uploads/2010/03/https-php-info.png" alt="" title="https-php-info" width="563" height="549" class="aligncenter size-full wp-image-1216" /></p>
<p>Done. Apache and PHP with SSL and MySQL support are ready and running.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="install php 5 3 2 on freebsd 8">install php 5 3 2 on freebsd 8</a> (2)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="php 5 3 2 apache">php 5 3 2 apache</a> (2)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="freebsd 8 0 apache php">freebsd 8 0 apache php</a> (2)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="how to install php 5 3 2">how to install php 5 3 2</a> (2)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="php apache 5 3 2 install">php apache 5 3 2 install</a> (2)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="installing php 5 3 2 on centos">installing php 5 3 2 on centos</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="php 5 2 13 with mysql support">php 5 2 13 with mysql support</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="install php tar bz httpd mysql">install php tar bz httpd mysql</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="PHP 5 2 13 mysql configuration">PHP 5 2 13 mysql configuration</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="installation php 5 2 13 on apache 2 2">installation php 5 2 13 on apache 2 2</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="pcbsd running apache 2 2 14">pcbsd running apache 2 2 14</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="pc-bsd mysql">pc-bsd mysql</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="installing php 5 3 2 in windows 7">installing php 5 3 2 in windows 7</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="mod php 5 3 2 fedora 8">mod php 5 3 2 fedora 8</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="openssl tutorial">openssl tutorial</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="php 5 3 2 /configure apxs">php 5 3 2 /configure apxs</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="start apache pcbsd">start apache pcbsd</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="php phar configure 5 3 2">php phar configure 5 3 2</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="php include ssl key">php include ssl key</a> (1)</li><li><a href="http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" title="php include file">php include file</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 19.545 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd&amp;title=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0+-+http://tinyurl.com/yk58tfl+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd&amp;t=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd&amp;title=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd&amp;submitHeadline=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0&amp;submitSummary=In%20this%20article%2C%20I%20want%20to%20share%20you%20on%20how%20to%20install%20Apache%20and%20PHP%20with%20SSL%20and%20MySQL%20support%20on%20PC-BSD%208.0.%20I%20use%20the%20current%20stable%20version%20of%20Apache%20%28version%202.2.14%29%20and%20PHP%20%28version%205.3.2%29%20using%20PC-BSD%208.0%20as%20the%20operating%20system.%20This%20article%20should%20be%20applicable%20to%20install%20them%20on%20Linux%20%28Sl&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd&amp;title=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd&amp;title=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd&amp;title=Install+Apache%2C+PHP+with+SSL+and+MySQL+support+on+PC-BSD+8.0+%2F+FreeBSD+8.0" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/ohhuVOPh9aM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/install-apache-httpd-php-with-ssl-and-mysql-support-pc-bsd-freebsd</feedburner:origLink></item>
		<item>
		<title>Apple plans to release iPad on April 3</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/HMi8tjSPh2c/apple-plans-to-release-ipad-on-april-3</link>
		<comments>http://www.techonia.com/apple-plans-to-release-ipad-on-april-3#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:58:41 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1200</guid>
		<description><![CDATA[Apple's eagerly anticipated iPad will be unveiled in the United States on April 3, the company said on Friday. Wi-Fi models of the tablet-style computer will go on sale that Saturday, while ones with Wi-Fi and 3G networks will be released later in the month.]]></description>
			<content:encoded><![CDATA[<p>Apple&#8217;s eagerly anticipated iPad will be unveiled in the United States on April 3, the company said on Friday.</p>
<p>Wi-Fi models of the tablet-style computer will go on sale that Saturday, while ones with Wi-Fi and 3G networks will be released later in the month.</p>
<p>Customers can start pre-ordering the iPad on Apple&#8217;s online store on March 12.</p>
<p><img class="aligncenter size-full wp-image-1201" title="Apple-iPad" src="http://www.techonia.com/wp-content/uploads/2010/03/Apple-iPad.jpg" alt="" width="460" height="276" /><span id="more-1200"></span></p>
<p>&#8220;iPad is something completely new,&#8221; Apple CEO Steve Jobs said in a Friday post on the company&#8217;s Web site. &#8220;We&#8217;re excited for customers to get their hands on this magical and revolutionary product and connect with their apps and content in a more intimate, intuitive and fun way than ever before.&#8221;</p>
<p>Unveiled on January 27, the<a href="http://topics.cnn.com/topics/apple_ipad">iPad</a> is designed to act as a sort of &#8220;missing link&#8221; between the smartphone and the laptop computer.</p>
<p>It has a nearly 10-inch screen, runs existing apps from the Apple apps store and is available in 16-gigabyte, 32-gigabyte and 64-gigabyte versions. It&#8217;s a half-inch thick and weighs a pound-and-a-half.</p>
<p>Prices start at $499 for the 16-gigabyte version, $599 for the 32-gig version and $699 for the 64, Jobs said at the company&#8217;s glitzy announcement in San Francisco, California.</p>
<p>The iPad will be released in late April in Australia, Canada, France, Germany, Italy, Japan, Spain, Switzerland and the UK, Apple said in the post on its site.</p>
<p>Prices in those countries will be announced in April and iPad will ship in additional countries later this year.</p>
<p>[<a href="http://www.cnn.com/2010/TECH/03/05/ipad.apple.release/index.html" target="_blank">VIA</a>]</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3&amp;title=Apple+plans+to+release+iPad+on+April+3" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Apple+plans+to+release+iPad+on+April+3+-+http://tinyurl.com/yg7e8ky+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3&amp;t=Apple+plans+to+release+iPad+on+April+3" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3&amp;title=Apple+plans+to+release+iPad+on+April+3" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3&amp;submitHeadline=Apple+plans+to+release+iPad+on+April+3&amp;submitSummary=Apple%27s%20eagerly%20anticipated%20iPad%20will%20be%20unveiled%20in%20the%20United%20States%20on%20April%203%2C%20the%20company%20said%20on%20Friday.%0D%0A%0D%0AWi-Fi%20models%20of%20the%20tablet-style%20computer%20will%20go%20on%20sale%20that%20Saturday%2C%20while%20ones%20with%20Wi-Fi%20and%203G%20networks%20will%20be%20released%20later%20in%20the%20month.%0D%0A%0D%0ACustomers%20can%20start%20pre-ordering%20th&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3&amp;title=Apple+plans+to+release+iPad+on+April+3" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3&amp;title=Apple+plans+to+release+iPad+on+April+3" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/apple-plans-to-release-ipad-on-april-3&amp;title=Apple+plans+to+release+iPad+on+April+3" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/HMi8tjSPh2c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/apple-plans-to-release-ipad-on-april-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/apple-plans-to-release-ipad-on-april-3</feedburner:origLink></item>
		<item>
		<title>PHP 5.3.2 Release Announced</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/QmTiBESpfCA/php-5-3-2-release-announced</link>
		<comments>http://www.techonia.com/php-5-3-2-release-announced#comments</comments>
		<pubDate>Fri, 05 Mar 2010 03:43:53 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[Apache / PHP]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1197</guid>
		<description><![CDATA[The PHP development team is proud to announce the immediate release of PHP 5.3.2. This is a maintenance release in the 5.3 series, which includes a large number of bug fixes.]]></description>
			<content:encoded><![CDATA[<p>The PHP development team is proud to announce the immediate release of PHP 5.3.2. This is a maintenance release in the 5.3 series, which includes a large number of bug fixes.</p>
<p><strong>Security Enhancements and Fixes in PHP 5.3.2:</strong></p>
<ul>
<li>Improved LCG entropy.</li>
<li>Fixed safe_mode validation inside tempnam() when the directory path does not end with a /).</li>
<li>Fixed a possible open_basedir/safe_mode bypass in the session extension identified by Grzegorz Stachowiak.</li>
</ul>
<p><strong><span id="more-1197"></span>Key Bug Fixes in PHP 5.3.2 include:</strong></p>
<ul>
<li>Added support for SHA-256 and SHA-512 to php&#8217;s crypt.</li>
<li>Added protection for $_SESSION from interrupt corruption and improved &#8220;session.save_path&#8221; check.</li>
<li>Fixed bug #51059 (crypt crashes when invalid salt are given).</li>
<li>Fixed bug #50940 Custom content-length set incorrectly in Apache sapis.</li>
<li>Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes long).</li>
<li>Fixed bug #50723 (Bug in garbage collector causes crash).</li>
<li>Fixed bug #50661 (DOMDocument::loadXML does not allow UTF-16).</li>
<li>Fixed bug #50632 (filter_input() does not return default value if the variable does not exist).</li>
<li>Fixed bug #50540 (Crash while running ldap_next_reference test cases).</li>
<li>Fixed bug #49851 (http wrapper breaks on 1024 char long headers).</li>
<li>Over 60 other bug fixes.</li>
</ul>
<p>For users upgrading from PHP 5.2 there is a migration guide available <a href="http://php.net/migration53" target="_blank">here</a>, detailing the changes between those releases and PHP 5.3.</p>
<p><strong>Further information and downloads:</strong></p>
<p>For a full list of changes in PHP 5.3.2, see the <a href="http://www.php.net/ChangeLog-5.php#5.3.2" target="_blank">ChangeLog</a>. For source downloads please visit our <a href="http://www.php.net/downloads.php" target="_blank">downloads page</a>, Windows binaries can be found on <a href="http://windows.php.net/download/" target="_blank">windows.php.net/download/</a>.</p>
<p>[<a href="http://www.php.net/archive/2010.php#id2010-03-04-1" target="_blank">VIA</a>]</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/php-5-3-2-release-announced" title="php 5 3 2 apache 2 windows">php 5 3 2 apache 2 windows</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 85.052 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/php-5-3-2-release-announced&amp;title=PHP+5.3.2+Release+Announced" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=PHP+5.3.2+Release+Announced+-+http://tinyurl.com/yhagug9+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/php-5-3-2-release-announced&amp;t=PHP+5.3.2+Release+Announced" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/php-5-3-2-release-announced&amp;title=PHP+5.3.2+Release+Announced" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/php-5-3-2-release-announced" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/php-5-3-2-release-announced&amp;submitHeadline=PHP+5.3.2+Release+Announced&amp;submitSummary=The%20PHP%20development%20team%20is%20proud%20to%20announce%20the%20immediate%20release%20of%20PHP%205.3.2.%20This%20is%20a%20maintenance%20release%20in%20the%205.3%20series%2C%20which%20includes%20a%20large%20number%20of%20bug%20fixes.%0D%0A%0D%0ASecurity%20Enhancements%20and%20Fixes%20in%20PHP%205.3.2%3A%0D%0A%0D%0A%09Improved%20LCG%20entropy.%0D%0A%09Fixed%20safe_mode%20validation%20inside%20tempnam%28%29%20when&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/php-5-3-2-release-announced&amp;title=PHP+5.3.2+Release+Announced" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/php-5-3-2-release-announced&amp;title=PHP+5.3.2+Release+Announced" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/php-5-3-2-release-announced&amp;title=PHP+5.3.2+Release+Announced" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/QmTiBESpfCA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/php-5-3-2-release-announced/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/php-5-3-2-release-announced</feedburner:origLink></item>
		<item>
		<title>PC-BSD 8.0 Screenshots</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/JGjJL0jlZP4/pc-bsd-8-0-screenshots</link>
		<comments>http://www.techonia.com/pc-bsd-8-0-screenshots#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:24:56 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[BSD]]></category>
		<category><![CDATA[PC-BSD]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1195</guid>
		<description><![CDATA[PC-BSD 8.0 (Hubble Edition) that announced at 22 February last month is the latest release of PC-BSD. It's been built based-on FreeBSD 8.0. Many improvements and enhancements have been added to it such as brand new System Installer,  KDE 4.3.5 Desktop System, support for 3D acceleration with NVIDIA drivers on amd64 and more.]]></description>
			<content:encoded><![CDATA[<p>PC-BSD 8.0 (Hubble Edition) that announced at 22 February last month is the latest release of PC-BSD. It&#8217;s been built based-on FreeBSD 8.0. Many improvements and enhancements have been added to it such as brand new System Installer,  KDE 4.3.5 Desktop System, support for 3D acceleration with NVIDIA drivers on amd64 and more. For the full changelog you can point your browser <a href="http://www.pcbsd.org/content/view/151/11/" target="_blank">here</a>.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9918486178245710";
/* 468x60, created 8/3/09 */
google_ad_slot = "8415676992";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Today I just installed it on my laptop (Compaq Pressario C762NR). It runs perfectly and smooth. The 3D desktop also run out of the box. Here are some screenshots of mine. Enjoy&#8230;<br />

<div class="ngg-galleryoverview" id="ngg-gallery-3-1195">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.techonia.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=3&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/snapshot1-pcbsd.png" title=" " class="shutterset_set_3" >
								<img title="snapshot1-pcbsd" alt="snapshot1-pcbsd" src="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/thumbs/thumbs_snapshot1-pcbsd.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/snapshot2-pcbsd.png" title=" " class="shutterset_set_3" >
								<img title="snapshot2-pcbsd" alt="snapshot2-pcbsd" src="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/thumbs/thumbs_snapshot2-pcbsd.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/snapshot4-pcbsd.png" title=" " class="shutterset_set_3" >
								<img title="snapshot4-pcbsd" alt="snapshot4-pcbsd" src="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/thumbs/thumbs_snapshot4-pcbsd.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/snapshot3-pcbsd.png" title=" " class="shutterset_set_3" >
								<img title="snapshot3-pcbsd" alt="snapshot3-pcbsd" src="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/thumbs/thumbs_snapshot3-pcbsd.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/snapshot5-pcbsd.png" title=" " class="shutterset_set_3" >
								<img title="snapshot5-pcbsd" alt="snapshot5-pcbsd" src="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/thumbs/thumbs_snapshot5-pcbsd.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/snapshot6-pcbsd.png" title=" " class="shutterset_set_3" >
								<img title="snapshot6-pcbsd" alt="snapshot6-pcbsd" src="http://www.techonia.com/wp-content/gallery/pc-bsd-8-0-screenshot/thumbs/thumbs_snapshot6-pcbsd.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="pc-bsd 8 0 screenshots">pc-bsd 8 0 screenshots</a> (8)</li><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="PC-BSD 8 0 screenshot">PC-BSD 8 0 screenshot</a> (2)</li><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="pc bsd 8 0 screenshots">pc bsd 8 0 screenshots</a> (1)</li><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="pc bsd 8 screenshots">pc bsd 8 screenshots</a> (1)</li><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="PC-BSD 8 0 (Hubble Edition) screenshots">PC-BSD 8 0 (Hubble Edition) screenshots</a> (1)</li><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="pcbsd 8 0 huawei">pcbsd 8 0 huawei</a> (1)</li><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="PCBSD 8 SCREENSHOT">PCBSD 8 SCREENSHOT</a> (1)</li><li><a href="http://www.techonia.com/pc-bsd-8-0-screenshots" title="slackware 13 screenshot">slackware 13 screenshot</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 38.068 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/pc-bsd-8-0-screenshots&amp;title=PC-BSD+8.0+Screenshots" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=PC-BSD+8.0+Screenshots+-+http://tinyurl.com/yhvo6kx+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/pc-bsd-8-0-screenshots&amp;t=PC-BSD+8.0+Screenshots" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/pc-bsd-8-0-screenshots&amp;title=PC-BSD+8.0+Screenshots" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/pc-bsd-8-0-screenshots" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/pc-bsd-8-0-screenshots&amp;submitHeadline=PC-BSD+8.0+Screenshots&amp;submitSummary=PC-BSD%208.0%20%28Hubble%20Edition%29%C2%A0that%20announced%20at%2022%20February%20last%20month%20is%20the%20latest%20release%20of%20PC-BSD.%20It%27s%20been%20built%20based-on%20FreeBSD%208.0.%20Many%20improvements%20and%20enhancements%20have%20been%20added%20to%20it%20such%20as%20brand%20new%20System%20Installer%2C%C2%A0%C2%A0KDE%204.3.5%20Desktop%20System%2C%20support%20for%203D%20acceleration%20with%20NVID&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/pc-bsd-8-0-screenshots&amp;title=PC-BSD+8.0+Screenshots" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/pc-bsd-8-0-screenshots&amp;title=PC-BSD+8.0+Screenshots" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/pc-bsd-8-0-screenshots&amp;title=PC-BSD+8.0+Screenshots" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/JGjJL0jlZP4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/pc-bsd-8-0-screenshots/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/pc-bsd-8-0-screenshots</feedburner:origLink></item>
		<item>
		<title>PC-BSD 8.0 triple-booted with Windows 7 and Slackware 13</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/VkEUW_DqUy4/pc-bsd-triple-booted-windows-slackware</link>
		<comments>http://www.techonia.com/pc-bsd-triple-booted-windows-slackware#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:04:17 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[BSD]]></category>
		<category><![CDATA[PC-BSD]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1190</guid>
		<description><![CDATA[PC-BSD 8.0 (Hubble Edition) had been released in 22 February last month. Today I have successfully installed it triple-booted with my existing OS, Windows 7 and Slackware 13. It is installed in the forth partition of my hard disk (see the picture of partition table).]]></description>
			<content:encoded><![CDATA[<p>PC-BSD 8.0 (Hubble Edition) had been released in 22 February last month. Today I have successfully installed it triple-booted with my existing OS, Windows 7 and Slackware 13. It is installed in the forth partition of my hard disk (see the picture of partition table).</p>
<p>Here are below the capture of partition table and the LILO. Enjoy!!<span id="more-1190"></span></p>
<p><img class="aligncenter size-full wp-image-1192" title="partition-table" src="http://www.techonia.com/wp-content/uploads/2010/03/partition-table.png" alt="" width="487" height="390" /></p>
<p><img class="aligncenter size-full wp-image-1193" title="slack-lilo" src="http://www.techonia.com/wp-content/uploads/2010/03/slack-lilo.png" alt="" width="472" height="354" /></p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/pc-bsd-triple-booted-windows-slackware" title="install windows 7 and pcbsd">install windows 7 and pcbsd</a> (1)</li><li><a href="http://www.techonia.com/pc-bsd-triple-booted-windows-slackware" title="pc bsd 8 0 screenshot">pc bsd 8 0 screenshot</a> (1)</li><li><a href="http://www.techonia.com/pc-bsd-triple-booted-windows-slackware" title="windows 7 with pc-bsd">windows 7 with pc-bsd</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 12.921 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware&amp;title=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13+-+http://tinyurl.com/yhhjbhh+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware&amp;t=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware&amp;title=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware&amp;submitHeadline=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13&amp;submitSummary=PC-BSD%208.0%20%28Hubble%20Edition%29%20had%20been%20released%20in%2022%20February%20last%20month.%20Today%20I%20have%20successfully%20installed%20it%20triple-booted%20with%20my%20existing%20OS%2C%20Windows%207%20and%20Slackware%2013.%20It%20is%20installed%20in%20the%20forth%20partition%20of%20my%20hard%20disk%20%28see%20the%20picture%20of%20partition%20table%29.%0D%0A%0D%0AHere%20are%20below%20the%20capture%20of&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware&amp;title=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware&amp;title=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/pc-bsd-triple-booted-windows-slackware&amp;title=PC-BSD+8.0+triple-booted+with+Windows+7+and+Slackware+13" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/VkEUW_DqUy4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/pc-bsd-triple-booted-windows-slackware/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.techonia.com/pc-bsd-triple-booted-windows-slackware</feedburner:origLink></item>
		<item>
		<title>Ovi Mail now integrated with Contacts and available in Arabic</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/XLyZdenN6RI/ovi-mail-integrated-contacts-available-arabic</link>
		<comments>http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic#comments</comments>
		<pubDate>Thu, 04 Mar 2010 12:23:21 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Ovi Mail]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1185</guid>
		<description><![CDATA[Today the Ovi Mail team has just released Ovi Mail 2.0. With this release, your Ovi Mail contacts and Ovi Contacts are merged into one contacts list. You can view, edit, delete or create your contacts from Ovi Contacts or Ovi Mail. You can also sync your device phonebook with Ovi Contacts and Ovi Mail. This was the most desired feature by Ovi Mail users and we are excited to bring this to you.]]></description>
			<content:encoded><![CDATA[<p>Today the Ovi Mail team has just released Ovi Mail 2.0. With this release, your Ovi Mail contacts and Ovi Contacts are merged into one contacts list. You can view, edit, delete or create your contacts from Ovi Contacts or Ovi Mail. You can also sync your device phonebook with Ovi Contacts and Ovi Mail. This was the most desired feature by Ovi Mail users and we are excited to bring this to you.</p>
<p><img class="aligncenter size-full wp-image-1186" title="ovimail_contacts" src="http://www.techonia.com/wp-content/uploads/2010/03/ovimail_contacts.jpg" alt="" width="489" height="243" /><span id="more-1185"></span></p>
<p>The following use case is now supported with the changes in Ovi Mail 2.0:</p>
<p>Save a contact and view from device:</p>
<ol>
<li>User opens an email from a friend in Ovi Mail on the web and sends a reply back</li>
<li>Ovi Mail shows a dialog box asking if he wants to add the person to his address book.  User says yes and fills in the entries and clicks on ‘Add contact’</li>
<li>Within a few minutes, the new contact appears in Ovi Contacts on the web because Ovi Mail now is integrated with Ovi Contacts</li>
<li>User decides to sync his phone to get the newly added contact on his phone. User can either initiate a sync from device or from Ovi Contacts on the web to sync his contacts</li>
<li>After the sync completes, user views the Phonebook on the device and the name of the friend and the newly added email address appear in the Phonebook on the phone</li>
</ol>
<p><!-- You will NOT be able to see the ad on your site! This unit is hidden on your page, and will only display to your search engine traffic (from US and CA). To preview, paste the code up on your site, then add #chitikatest=mortgage to the end of your URL in your browser's address bar.  Example:  www.yourwebsite.com#chitikatest=mortgage. This will show you what the ad would look like to a user who is interested in "mortgages." -->
<script type="text/javascript"><!--
ch_client = "fuadnahdi";
ch_type = "mpu";
ch_width = 468;
ch_height = 180;
ch_color_bg = "FFFFFF";
ch_color_border = "FFFFFF";
ch_color_title = "0066CC";
ch_color_site_link = "0066CC";
ch_color_text = "000000";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_font_title = "Arial";
ch_font_text = "Arial";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script><br />
Ovi Mail 2.0 also comes with Arabic support to help customers in Arabic-speaking countries view their Ovi Mail account in Arabic. Over 280 Million people use Arabic as their first language. This was a challenging feature to implement considering the fact that it’s a right-to-left language and the Ovi Mail UI had to be changed to support this orientation.</p>
<p>[<a href="http://betalabs.nokia.com/blog/2010/03/04/ovi-mail-now-integrated-with-contacts-and-available-in-arabic" target="_blank">VIA</a>]</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic" title="ovi maps">ovi maps</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 2.184 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic&amp;title=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic+-+http://tinyurl.com/yzyco83+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic&amp;t=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic&amp;title=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic&amp;submitHeadline=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic&amp;submitSummary=Today%20the%20Ovi%20Mail%20team%20has%20just%20released%20Ovi%20Mail%202.0.%20With%20this%20release%2C%20your%20Ovi%20Mail%20contacts%20and%20Ovi%20Contacts%20are%20merged%20into%20one%20contacts%20list.%20You%20can%20view%2C%20edit%2C%20delete%20or%20create%20your%20contacts%20from%20Ovi%20Contacts%20or%20Ovi%20Mail.%20You%20can%20also%20sync%20your%20device%20phonebook%20with%20Ovi%20Contacts%20and%20Ovi%20Ma&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic&amp;title=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic&amp;title=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic&amp;title=Ovi+Mail+now+integrated+with+Contacts+and+available+in+Arabic" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/XLyZdenN6RI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/ovi-mail-integrated-contacts-available-arabic</feedburner:origLink></item>
		<item>
		<title>Nokia introduced the Nokia C5</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/bMU5jtlYgX0/nokia-introduced-nokia-c5</link>
		<comments>http://www.techonia.com/nokia-introduced-nokia-c5#comments</comments>
		<pubDate>Wed, 03 Mar 2010 04:21:23 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Nokia C5]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1167</guid>
		<description><![CDATA[Nokia on March 2nd, 2010 unveiled the Nokia C5, a smartphone optimized for social networking and sharing. The compact device includes access to Nokia’s range of mobile services, such as free navigation, in one affordable package, with an estimated retail price of EUR 135, before taxes and subsidies.]]></description>
			<content:encoded><![CDATA[<p>Nokia on March 2nd, 2010 unveiled the Nokia C5, a smartphone optimized for social networking and sharing. The compact device includes access to Nokia’s range of mobile services, such as free navigation, in one affordable package, with an estimated retail price of EUR 135, before taxes and subsidies.</p>
<p><img class="aligncenter size-full wp-image-1169" title="Nokia-C5" src="http://www.techonia.com/wp-content/uploads/2010/03/Nokia-C5.png" alt="" width="349" height="269" /><br />
<span id="more-1167"></span><br />
With direct access to favorite contacts on the device homescreen and Facebook status updates visible from the phonebook, the Nokia C5 keeps people connected with the ones who matter the most. Accessing social networking sites, such as Facebook and MySpace, is fast and easy, while instant messaging and email accounts from Ovi Mail and other email providers are available through Nokia Messaging. Loaded with a 3.2 megapixel camera, a 2GB memory card that comes in-box and high speed data connection for effortless uploading of photos and videos to various online communities, the Nokia C5 delivers an outstanding sharing experience.<br />
<!-- You will NOT be able to see the ad on your site! This unit is hidden on your page, and will only display to your search engine traffic (from US and CA). To preview, paste the code up on your site, then add #chitikatest=mortgage to the end of your URL in your browser's address bar.  Example:  www.yourwebsite.com#chitikatest=mortgage. This will show you what the ad would look like to a user who is interested in "mortgages." -->
<script type="text/javascript"><!--
ch_client = "fuadnahdi";
ch_type = "mpu";
ch_width = 468;
ch_height = 180;
ch_color_bg = "FFFFFF";
ch_color_border = "FFFFFF";
ch_color_title = "0066CC";
ch_color_site_link = "0066CC";
ch_color_text = "000000";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_font_title = "Arial";
ch_font_text = "Arial";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script><br />
The Nokia C5 offers the latest version of Ovi Maps with free walk and drive navigation, including location sharing with Facebook friends. The Nokia C5 also provides fast web browsing, allowing easy access to favorite Internet sites, Ovi Music*) and a range of applications through the Ovi Store.</p>
<p>The Nokia C5 is expected to begin shipping in select markets during the second quarter of 2010.</p>
<p>The new Cseries represents the core of Nokia portfolio, focusing on social interaction between friends and family.</p>
<p>Watch the video of Nokia C5 below:<br />
<object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/qT8R78E3AOU&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/qT8R78E3AOU&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p>Press materials and photos can be found at <a href="http://www.nokia.com/press/" target="_blank"><span style="color: #800080;">www.nokia.com/press/</span></a></p>
<p><span style="color: #800080;"><a href="http://pressbulletinboard.nokia.com/2010/03/02/introducing-the-nokia-c5/" target="_blank">Via</a></span></p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/nokia-introduced-nokia-c5" title="nokia c5 introduced">nokia c5 introduced</a> (2)</li><li><a href="http://www.techonia.com/nokia-introduced-nokia-c5" title="winehq nokia n900">winehq nokia n900</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 1.988 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/nokia-introduced-nokia-c5&amp;title=Nokia+introduced+the+Nokia+C5" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Nokia+introduced+the+Nokia+C5+-+http://tinyurl.com/yhraa6s+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/nokia-introduced-nokia-c5&amp;t=Nokia+introduced+the+Nokia+C5" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/nokia-introduced-nokia-c5&amp;title=Nokia+introduced+the+Nokia+C5" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/nokia-introduced-nokia-c5" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/nokia-introduced-nokia-c5&amp;submitHeadline=Nokia+introduced+the+Nokia+C5&amp;submitSummary=Nokia%20on%20March%202nd%2C%202010%20unveiled%20the%20Nokia%20C5%2C%20a%20smartphone%20optimized%20for%20social%20networking%20and%20sharing.%20The%20compact%20device%20includes%20access%20to%20Nokia%E2%80%99s%20range%20of%20mobile%20services%2C%20such%20as%20free%20navigation%2C%20in%20one%20affordable%20package%2C%20with%20an%20estimated%20retail%20price%20of%20EUR%20135%2C%20before%20taxes%20and%20subsidie&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/nokia-introduced-nokia-c5&amp;title=Nokia+introduced+the+Nokia+C5" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/nokia-introduced-nokia-c5&amp;title=Nokia+introduced+the+Nokia+C5" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/nokia-introduced-nokia-c5&amp;title=Nokia+introduced+the+Nokia+C5" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/bMU5jtlYgX0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/nokia-introduced-nokia-c5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/nokia-introduced-nokia-c5</feedburner:origLink></item>
		<item>
		<title>MicroOLAP Database Designer for PostgreSQL with enhanced WineHQ support released</title>
		<link>http://feedproxy.google.com/~r/Techonia/~3/k-m8LZnl9p0/microolap-database-designer-postgresql-enhanced-winehq</link>
		<comments>http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq#comments</comments>
		<pubDate>Wed, 03 Mar 2010 04:02:16 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MicroOLAP]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1165</guid>
		<description><![CDATA[MicroOLAP Database Designer for PostgreSQL is an easy CASE tool with intuitive graphical interface allowing you to build a clear and effective database structure visually, see the complete picture (diagram) representing all the tables, references between them, views, stored procedures and other objects. ]]></description>
			<content:encoded><![CDATA[<p>MicroOLAP Database Designer for PostgreSQL is an easy CASE tool with intuitive graphical interface allowing you to build a clear and effective database structure visually, see the complete picture (diagram) representing all the tables, references between them, views, stored procedures and other objects. Then you can easily generate a physical database on a server, modify it according to any changes you made to the diagram using fast ALTER statements.<span id="more-1165"></span></p>
<p>To download the latest release, you can go to the MicroOLAP website <a href="http://microolap.com/products/database/postgresql-designer/download/" target="_blank">here</a>.</p>
<p>Below are the full changelog list:</p>
<p>[!] WineHQ support enhanced<br />
[+] DEFERRABLE clause now proccessed for FOREIGN KEY by SQL Reverse Engineering<br />
[*] SQL Reverse Engineering: function now created if specified in CREATE TRIGGER and &#8220;Create nonexistent references object&#8221; checked<br />
[-] &#8220;After changing interface language Object Tree View not refreshed immediatly&#8221; bug fixed<br />
[-] &#8220;Cannot add object through Object Tree View popup menu after interface lanuage changed&#8221; bug fixed<br />
[-] &#8220;Cannot delete all tablespaces from model&#8221; bug fixed<br />
[-] &#8220;Cannot save Begin and End Scripts using Database Editor&#8221; bug fixed<br />
[-] &#8220;Command &#8216;wine PgMDD.exe&#8217; fails in the shell&#8221; bug fixed<br />
[-] &#8220;Modify Database duplicates FOREIGN KEYs sometimes&#8221; bug fixed<br />
[-] &#8220;Width for stored routines calculated wrong sometimes&#8221; bug fixed</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq" title="microolap database designer for postgresql linux">microolap database designer for postgresql linux</a> (1)</li><li><a href="http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq" title="microolap under wine">microolap under wine</a> (1)</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 1.374 ms -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq&amp;title=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released%5B..%5D+-+http://tinyurl.com/ylmkvt7+(via+@fuadnahdi)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq&amp;t=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq&amp;title=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq&amp;submitHeadline=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released&amp;submitSummary=MicroOLAP%20Database%20Designer%20for%20PostgreSQL%20is%20an%20easy%20CASE%20tool%20with%20intuitive%20graphical%20interface%20allowing%20you%20to%20build%20a%20clear%20and%20effective%20database%20structure%20visually%2C%20see%20the%20complete%20picture%20%28diagram%29%20representing%20all%20the%20tables%2C%20references%20between%20them%2C%20views%2C%20stored%20procedures%20and%20other%20obje&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq&amp;title=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq&amp;title=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq&amp;title=MicroOLAP+Database+Designer+for+PostgreSQL+with+enhanced+WineHQ+support+released" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://feeds.feedburner.com/~r/Techonia/~4/k-m8LZnl9p0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techonia.com/microolap-database-designer-postgresql-enhanced-winehq</feedburner:origLink></item>
	</channel>
</rss>
