<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TECHiE TALKS &#187; Internet</title>
	<atom:link href="http://www.icpep.org/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icpep.org</link>
	<description>Just another techie stuff</description>
	<lastBuildDate>Wed, 01 Feb 2012 23:59:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Backtrack 5 Bug Fix</title>
		<link>http://www.icpep.org/backtrack-5-bug-fix/</link>
		<comments>http://www.icpep.org/backtrack-5-bug-fix/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 01:02:36 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows Hacks]]></category>
		<category><![CDATA[Backtrack]]></category>
		<category><![CDATA[Backtrack Fix]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1492</guid>
		<description><![CDATA[I switched my ubuntu Oneiric to bactrack 5 Gnome and try out the new tools I wanted to use. Lately I thought everything will be fine out of the box but noticed that some of the tools I use and explored are not working well. I am using Aspire 4736 and installed backtrack 5 Gnome 64bit. After the installation I had a lot of things to fix and would want to fix them one by one. The first thing I [...]]]></description>
			<content:encoded><![CDATA[<p algin="center"><img src="http://www.icpep.org/wp-content/uploads/2011/12/backtrack-5.jpg" alt="backtrack 5" title="backtrack 5" width="400" height="406" class="aligncenter size-full wp-image-1493" /></p>
<p align="justify">
I switched my ubuntu Oneiric to bactrack 5 Gnome and try out the new tools I wanted to use.  Lately I thought everything will be fine out of the box but noticed that some of the tools I use and explored are not working well.  I am using Aspire 4736 and installed backtrack 5 Gnome 64bit.  After the installation I had a lot of things to fix and would want to fix them one by one.  The first thing I encountered was after installing I just see a black screen and nothing displays or even sometimes this happens after seeing the grub menu.  Its a good thing that the grub menu is still there.  When you are on the grub menu press <span id="highlight"><strong>e</strong></span> and replace <span id="highlight">nomodeset</span> to;</p>
<p><div id="code">
vga=791 i915.modeset=1
</div>
</p>
<p algin="justify">
After that you should now be able to login and use startx.  After that we need to update grub so that we will not keep on typing the line every time we turn on the machine.  To make the changes open the grub file found at <span id="highlight">/usr/share/grub/default/grub</span> using your favorite editor.
</p>
<p>
Here is the lines found on my grub file;</p>
<div id="code">
# If you change this file, run &#8216;update-grub&#8217; afterwards to update<br />
# /boot/grub/grub.cfg.</p>
<p>GRUB_DEFAULT=0<br />
GRUB_HIDDEN_TIMEOUT=0<br />
GRUB_HIDDEN_TIMEOUT_QUIET=true<br />
GRUB_TIMEOUT=10<br />
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`<br />
GRUB_CMDLINE_LINUX_DEFAULT=&#8221;quiet splash&#8221;<br />
GRUB_CMDLINE_LINUX=&#8221;<span style="color: blue;">i915.modeset=1</span>&#8221;</p>
<p># Uncomment to disable graphical terminal (grub-pc only)<br />
#GRUB_TERMINAL=console</p>
<p># The resolution used on graphical terminal<br />
# note that you can use only modes which your graphic card supports via VBE<br />
# you can see them in real GRUB with the command `vbeinfo&#8217;<br />
#GRUB_GFXMODE=640&#215;480</p>
</div>
<p>As seen on the highlighted line I added <span id="highlight">i915.nomodeset=0</span> to the line to fix the black screen.  You should now update grub using the command below;</p>
<p>
<div id="code">update-grub2</div>
</p>
<p align="justify">
Below are some of the errors you can do to fix your problems;
</p>
<h2>Ettercap</h2>
<hr />
After installation of Backtrack 5 ettercap has bug which closes itself after scanning all host on the network.  To fix the problem we need to uninstall the existing ettercap and replace the installation with the fixed <a href="https://launchpad.net/~timothy-redaelli/+archive/drizzt/+packages" title="Ettercap new version" target="_blank">packages</a>. The fix can be found on this page -> <span id="highlight">http://www.backtrack-linux.org/forums/showthread.php?t=42853</span></p>
<h2>Fast-Track Update</h2>
<hr />
<p align="justify">This tool is one of my favorite.  There are some changes needed to be done on the scripts.</p>
<p align="justify">Open <span id="highlight">/pentest/exploits/fasttrack/bin/menu/updatemenu.py</span> and make the changes on line <span id="highlight">62</span>;</p>
<div id="code">subprocess.Popen(&#8220;cd /usr/share/gerix-wifi-cracker-ng;svn update&#8221;, shell=True).wait()</div>
<p>and <span id="highlight">line 67</span>;</p>
<div id="code">subprocess.Popen(&#8220;cd /pentest/exploits/set;svn update&#8221;, shell=True).wait()</div>
</p>
<p> Open the file <span id="highlight">/pentest/exploits/fasttrack/config/fasttrack_config</span> and on line 9 add;</p>
<div id="code">METASPLOIT_PATH=/opt/framework/msf3</div>
<p>You can start update fast-track; -> <span id="highlight">http://www.backtrack-linux.org/forums/showthread.php?t=44086</span></p>
<h2>WICD Network Manager</h2>
<hr />
<p align="justify">After setting up a wireless AP, the annoying error of WICD always pops out.  To fix this problem we can solve the problem on BT&#8217;s wiki -> <span id="highlight">http://www.backtrack-linux.org/wiki/index.php/Basic_Usage#WICD_Network_Manager</span></p>
<p align="justify">The fixes above are just few of the bugs.  I will be updating this post once in a while after testing every fix I see on the forum</p>
<p>&nbsp;</p>
<div id="seo_alrp_related"><h2>Posts Related to Backtrack 5 Bug Fix</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/mysql-reset-root-password/" rel="bookmark">MySQL Reset Root Password</a></h3><p>My friend forgot his mysql password and the database needs to be accessed by the root user.  My friend is running MySQL 5.1 and as ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/super-antispyware-mitm-update/" rel="bookmark">Super AntiSpyware MITM Update</a></h3><p>Super Antispyware is one of the utility tools I use for our XP computers at home. From time to time I use this machines for ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/hack-the-start-menu-and-taskbar/" rel="bookmark">Hack the Start Menu and Taskbar</a></h3><p>Run the Group Policy Editor by typing gpedit.msc at the Run prompt or command line. Go to User Configuration\Administrative Templates\Start Menu and Taskbar. If you ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/netbeans-line-wrap/" rel="bookmark">Netbeans Line Wrap</a></h3><p>&nbsp; I have been using netbeans PHP as my IDE in developing websites and web applications for my clients. Netbeans is now in version 7.01 ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-profile-on-windows-and-linux/" rel="bookmark">Thunderbird Profile On Windows and Linux</a></h3><p>I dual booted both Windows 7 and Backtrack 5 on my Laptop and a problem starts when I used thunderbird on Backtrack Linux because all ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/backtrack-5-bug-fix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Port Forward VNC NETGEAR GR614v9</title>
		<link>http://www.icpep.org/port-forward-vnc-netgear-gr614v9/</link>
		<comments>http://www.icpep.org/port-forward-vnc-netgear-gr614v9/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 22:41:51 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1392</guid>
		<description><![CDATA[&#160; &#160; &#160; &#160; &#160; &#160; My girlfriend and I have the same ISP and they are providing us with their private IP without any control on their devices.  We are 4-5 kilometers apart and we need to share files for our work though we have alternatives like CLOUD services (e.g. dropbox) but there are some stuff that the cloud cannot do for us.  I also need to provide technical support and some other stuff that she wants help.  Our [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.icpep.org/wp-content/uploads/2011/10/settings_v7.gif"><img class="aligncenter size-full wp-image-1393" title="Neatgear Wireless Router" src="http://www.icpep.org/wp-content/uploads/2011/10/settings_v7.gif" alt="Neatgear Wireless Router" width="750" height="85" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p style="text-align: justify;">My girlfriend and I have the same ISP and they are providing us with their private IP without any control on their devices.  We are 4-5 kilometers apart and we need to share files for our work though we have alternatives like CLOUD services (<em>e.g. dropbox</em>) but there are some stuff that the cloud cannot do for us.  I also need to provide technical support and some other stuff that she wants help.  Our ISP is not that fast and they just started the business and I am not that confident yet with their services.</p>
<p style="text-align: justify;">Previously, we are using teamviewer so that I can remotely control her computer from home.  But, I find it slow maybe because of our internet connection.  I scanned our ISP&#8217;s network and the image below is how the network looks:</p>
<p style="text-align: center;"><a href="http://www.icpep.org/wp-content/uploads/2011/10/Drawing1.png"><img class="aligncenter size-full wp-image-1395" title="Old Network " src="http://www.icpep.org/wp-content/uploads/2011/10/Drawing1.png" alt="Old Network " width="320" height="354" /></a></p>
<p style="text-align: justify;">This is the basic concept of their network.  Our computers are assigned with a specific IP and MAC Address are filtered so that only 1 computer can be used per client.  The concept they have is the same with SmartBro, Globe Telecom and Sun Cellular&#8217;s internet services.  We need to have more than one connection because we have several wireless devices that we want to use anywhere in the house.  I installed 2 wireless routers in our house and my girlfriends house and just cloned the MAC Address of the registered devices, the image below is how the network looks:</p>
<p style="text-align: center;"><a href="http://www.icpep.org/wp-content/uploads/2011/10/newnetwork.jpg"><img class="aligncenter size-full wp-image-1396" title="new network" src="http://www.icpep.org/wp-content/uploads/2011/10/newnetwork.jpg" alt="new network" width="450" height="347" /></a></p>
<p style="text-align: justify;"><strong>Wireless Router A: Netgear JWRN2000<br />
Wireless Router B: Nethear  GR614v9</strong></p>
<p style="text-align: justify;">The problem now is how will I be able to access 191.168.1.4 when it is on another network.  What I did was installed <a title="TightVNC" href="http://www.tightvnc.com/" target="_blank">TightVNC</a> on my girlfriend&#8217;s computer with the following configurations:</p>
<p style="text-align: center;"><a href="http://www.icpep.org/wp-content/uploads/2011/10/tightVNC.jpg"><img class="aligncenter size-full wp-image-1397" title="tightVNC" src="http://www.icpep.org/wp-content/uploads/2011/10/tightVNC.jpg" alt="tightVNC" width="458" height="381" /></a></p>
<p style="text-align: justify;">After installing tightVNC Server I configured the portforwarding of  NETGEAR GR614v9.  The configuration can be found below:</p>
<p style="text-align: center;"><a href="http://www.icpep.org/wp-content/uploads/2011/10/Untitled.jpg"><img class="aligncenter size-full wp-image-1400" title="port forwarding vnc" src="http://www.icpep.org/wp-content/uploads/2011/10/Untitled.jpg" alt="port forwarding vnc" width="559" height="373" /></a></p>
<p style="text-align: justify;">After configuring her router, I can now access her PC by using the IP our ISP gave her.  See the image below:</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><a href="http://www.icpep.org/wp-content/uploads/2011/10/vnc.jpg"><img class="aligncenter size-full wp-image-1404" title="vnc viewer" src="http://www.icpep.org/wp-content/uploads/2011/10/vnc.jpg" alt="vnc viewer" width="429" height="189" /></a></p>
<p style="text-align: justify;">
<p style="text-align: justify;">I hope this post helped you with your problem especially in giving technical assistance to WAN&#8217;s.</p>
<div id="seo_alrp_related"><h2>Posts Related to Port Forward VNC NETGEAR GR614v9</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/boost-wireless-signal/" rel="bookmark">Boost Wireless Signal</a></h3><p>If you want to boost the signal of your wireless linksys router all you need is configure the router.  You can type on the browser ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/mikrotik-router-filtering-bogus-ips/" rel="bookmark">Mikrotik Router Filtering Bogus IPs</a></h3><p>Mikrotik is a router os that comes with a lot of features.  To see what you can do with it, just visit their official website ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/broadband-internet-connection/" rel="bookmark">Broadband Internet Connection</a></h3><p>Broadband Internet Connection means a wide range of frequencies that are available to transmit information. This ultimately means that the wider the range of frequencies ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/super-antispyware-mitm-update/" rel="bookmark">Super AntiSpyware MITM Update</a></h3><p>Super Antispyware is one of the utility tools I use for our XP computers at home. From time to time I use this machines for ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/subversion/" rel="bookmark">Manage Programming Projects</a></h3><p>&nbsp; &nbsp; &nbsp; Subversion is a free/open-source version control system. That is, Subversion manages files and directories, and the changes made to them, over time. ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/port-forward-vnc-netgear-gr614v9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Thunderbird Add-ons</title>
		<link>http://www.icpep.org/4-thunderbird-add-ons/</link>
		<comments>http://www.icpep.org/4-thunderbird-add-ons/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 13:19:14 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1347</guid>
		<description><![CDATA[I am a great fan and a user of mozilla thunderbird. I have used different mail clients like microsoft outlook, opera mail, zimbra mail client, etc. I tested them all for 2 weeks or more and ended up with thunderbird. One think I like about thunderbird is that you can add new features to it for free through their add-ons. Aside from the add-ons mozilla is active and updates are always there for free. Part of my work is to [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img alt="Thunderbird Mail Client" src="http://www.icpep.org/wp-content/uploads/2009/07/thunderbird-.jpg" title="Thunderbird Add-ons" class="aligncenter" width="266" height="280" /></p>
<p align="justify">
I am a great fan and a user of mozilla thunderbird.  I have used different mail clients like microsoft outlook, opera mail, zimbra mail client, etc.  I tested them all for 2 weeks or more and ended up with thunderbird.  One think I like about thunderbird is that you can add new features to it for free through their add-ons.  Aside from the add-ons mozilla is active and updates are always there for free.
</p>
<p align="justify">
Part of my work is to provide support to our clients world wide through email or chat.  Currently I have 5 emails, 3 gmail accounts are used for work and 2 gmail accounts are for my personal use.  I consolidate them all in a mail client which is thunderbird.  It&#8217;s not an easy thing to do when you are using the browser because its quite confusing when you want to switch from one browser to the other or switch to different accounts when you use Gmail.  But with thunderbird, it gives me a lot of help and I can save a lot of time with it.  The top 4 add-ons I use to speed up things are:</p>
<ul>
<li>AdBlock Plus &#8211; Helps me block those ads I don&#8217;t want to see and I never want to see.</li>
<li>Lightning &#8211; Helps me organize stuff through a calendar.</li>
<li>MinimizeToTray Revive &#8211; It stays on the tray and prompts an alert when a new email arrives.</li>
<li>Quicktext &#8211; Allows me to create email templates and allows me to add shortcut to it like alt+1, alt+2, alt+3, &#8230;
</li>
</ul>
<p align="justify">
Those are some of the add-ons I use for my thunderbird mail client.  I hope it will help you speed up things.</p>
<div id="seo_alrp_related"><h2>Posts Related to 4 Thunderbird Add-ons</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-minimize-to-tray/" rel="bookmark">Thunderbird Minimize to Tray</a></h3><p>For version 3.O " One of the most favorable software for mail clients is Mozilla Thunderbird. It is a free software which can be downloaded ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-on-tray/" rel="bookmark">Thunderbird on Tray</a></h3><p>Thunderbird, a free mail client software has a new version which is version 3.O that comes with a lot of new features and one of ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-to-outlook/" rel="bookmark">Thunderbird To Outlook</a></h3><p>I have successfully exported Thunderbird email files on ms outlook 2007 on a Windows XP platform which can also be done in windows vista and windows 7 platform. ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/use-gmail-account-to-relay-email-from-php-mail-function/" rel="bookmark">Use Gmail Account To Relay Email From PHP mail Function</a></h3><p>One of the things I find hard in developing a web application is using a library for sending email such as PHPMailer. I find it ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-profile-on-windows-and-linux/" rel="bookmark">Thunderbird Profile On Windows and Linux</a></h3><p>I dual booted both Windows 7 and Backtrack 5 on my Laptop and a problem starts when I used thunderbird on Backtrack Linux because all ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/4-thunderbird-add-ons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook: Auto Tag Pictures</title>
		<link>http://www.icpep.org/facebook-auto-tag-pictures/</link>
		<comments>http://www.icpep.org/facebook-auto-tag-pictures/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 17:46:53 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1333</guid>
		<description><![CDATA[Facebook has the largest population on the world wide web and it has a viral effect on distributing data. They have a lot of ways to pass data from one user to the other and one is by tagging pictures. When facebook started this feature it was so hard to tag friends because you need to tag them one by one and its a time consuming way of letting your friends know that they exist in a picture and now [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2011/07/logo_copyrights.gif" alt="Online Face Recognition " title="Online Face Recognition " width="184" height="62" class="aligncenter size-full wp-image-1334" /></p>
<p align="justify">
Facebook has the largest population on the world wide web and it has a viral effect on distributing data.  They have a lot of ways to pass data from one user to the other and one is by tagging pictures.  When facebook started this feature it was so hard to tag friends because you need to tag them one by one and its a time consuming way of letting your friends know that they exist in a picture and now they have this face recognition feature that automatically detects a face when you upload an image.  Though its not that accurate but it helps.  Another way of doing this is by using an application that face.com developed.  The application is called PhotoTagger, the application collects photos from an album and automatically detects faces and you  can automatically tag all faces based on what their application has detected.  It&#8217;s an amazing tool which I find it useful especially when you are trying to tag your friends on a large pile of photos.  A screenshot of the application is found below and you can find the application by going to www.face.com and hit BIG go button and give it permission to start tagging your friends on an album.
</p>
<p align="center">
<a href="http://www.icpep.org/wp-content/uploads/2011/07/facerecognition.jpg"><img src="http://www.icpep.org/wp-content/uploads/2011/07/facerecognition-300x168.jpg" alt="face recognition" title="face recognition" width="300" height="168" class="aligncenter size-medium wp-image-1335" /></a></p>
<div id="seo_alrp_related"><h2>Posts Related to Facebook: Auto Tag Pictures</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/social-network-sites-organizer/" rel="bookmark">Social Network Sites Organizer</a></h3><p>Are you a great fan of joining social networking sites?  Do you like to socialize online? If you have lots of sites to socialize and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/cellphone-tracker/" rel="bookmark">Cellphone Tracker</a></h3><p>About 4 or 5 months ago my Samsung Galaxy 5 was stolen when I was ridding on a jeepney going home. I did not notice ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/facebook-on-pidgin/" rel="bookmark">Facebook on Pidgin</a></h3><p>Pidgin is a free chat client that can handle different chat networks like yahoo, google talk, AIM, AOL and many more all at once.  But ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/facebook-farmville-cheat/" rel="bookmark">Facebook Farmville Cheat</a></h3><p>In the past few months I was into gaming online and one of the famous site today is facebook wherein I am playing games.  Facebook ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/disable-autorun/" rel="bookmark">Disable Autorun</a></h3><p>Operating system such as Microsoft Windows has the autorun enabled by default. When you try to connect external drives from your computer this usually prompts ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/facebook-auto-tag-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PLDT&#8217;s Port 25 (SMTP)</title>
		<link>http://www.icpep.org/pldts-port-25-smtp/</link>
		<comments>http://www.icpep.org/pldts-port-25-smtp/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 14:27:41 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1040</guid>
		<description><![CDATA[Today, a friend and a colleague of mine called me and questioned me why she can&#8217;t send emails using her mail client which is Incredimail which is one cool mail client because of the effects and animation.  It really bothered me a lot because I can&#8217;t solve the problem without being there in the situation and it is hard to explain things using a phone. So I went over to her place and to find out that PLDT changed their [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1043 aligncenter" title="email" src="http://www.icpep.org/wp-content/uploads/2010/04/email.jpg" alt="" width="485" height="371" /></p>
<p style="text-align: justify;">Today, a friend and a colleague of mine called me and questioned me why she can&#8217;t send emails using her mail client which is Incredimail which is one cool mail client because of the effects and animation.  It really bothered me a lot because I can&#8217;t solve the problem without being there in the situation and it is hard to explain things using a phone. So I went over to her place and to find out that PLDT changed their SMTP port to 587 which is not the usual port of SMTP.  But this is not only the solution, outgoing mail server should also be changed to smtpdsl4.pldtdsl.net instead of using your own outgoing mail server(<em>mail.icpep.org</em>).</p>
<p style="text-align: justify;">This has become an issue but still PLDT has no action for this.  This is really one problem especially to those people who are not that techie.  Hope PLDT will change it back to the usual port and find other ways on how to solve the spamming issues.</p>
<p style="text-align: justify;">To summarize it, you can configure your mail clients using the following information:</p>
<p style="text-align: justify; padding-left: 30px;"><strong>Outgoing mail server SMTP: </strong>smtpdsl4.pldtdsl.net<br />
<strong>UNCHECK</strong> &#8211; My outgoing server (SMTP) requires authentication<br />
<strong>USE Port:</strong> 587</p>
<p style="text-align: justify;">Hope this helps in solving your problem.</p>
<div id="seo_alrp_related"><h2>Posts Related to PLDT's Port 25 (SMTP)</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/4-thunderbird-add-ons/" rel="bookmark">4 Thunderbird Add-ons</a></h3><p>I am a great fan and a user of mozilla thunderbird. I have used different mail clients like microsoft outlook, opera mail, zimbra mail client, ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/use-gmail-account-to-relay-email-from-php-mail-function/" rel="bookmark">Use Gmail Account To Relay Email From PHP mail Function</a></h3><p>One of the things I find hard in developing a web application is using a library for sending email such as PHPMailer. I find it ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/phpmailer/" rel="bookmark">PHPMailer</a></h3><p>Sending E-Mail with PHP can be simple, or it can be very complex depending on what you want to do.  PHPmailer is a free PHP ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/optimizing-laptop/" rel="bookmark">Optimizing Laptop</a></h3><p>You just bought a shiny laptop for office and home you use or on business trips and vacation or go to down town and drop ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-minimize-to-tray/" rel="bookmark">Thunderbird Minimize to Tray</a></h3><p>For version 3.O " One of the most favorable software for mail clients is Mozilla Thunderbird. It is a free software which can be downloaded ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/pldts-port-25-smtp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Filezilla Saved Passwords</title>
		<link>http://www.icpep.org/filezilla-saved-passwords/</link>
		<comments>http://www.icpep.org/filezilla-saved-passwords/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 07:26:09 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1015</guid>
		<description><![CDATA[Filezilla is an FTP Client used for transferring files from one host to the other or is used to exchange and manipulate files over a TCP/IP based network.  It is a free software downloadable on their official website filezilla-project.org.  Filezilla is one secure FTP client and so far the best FTP Client I have used.  I already have tried several software before like SmartFTP.  SmartFTP is easy to use but it is not a free software, you need to buy [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1017 aligncenter" title="FileZilla" src="http://www.icpep.org/wp-content/uploads/2009/12/FileZilla.png" alt="FileZilla" width="108" height="108" /></p>
<p style="text-align: center;">
<p style="text-align: justify;">Filezilla is an FTP Client used for transferring files from one host to the other or is used to exchange and manipulate files over a TCP/IP based network.  It is a free software downloadable on their official website filezilla-project.org.  Filezilla is one secure FTP client and so far the best FTP Client I have used.  I already have tried several software before like SmartFTP.  SmartFTP is easy to use but it is not a free software, you need to buy it so you can use it.<span id="more-1015"></span></p>
<p style="text-align: justify;">Filezilla has a simple user interface and for the first time I used it,  it feels like I have been using the software for a while.</p>
<p style="text-align: justify;">You can store and manage your Websites using Filezilla with their site manager.  When we have a lot of sites to manage and forget the password we tend to search our mails again and look for the password because as what they say that you can not view your password in filezilla.   We&#8217;ll you&#8217;re wrong, passwords in filezilla can be viewed. If you have saved the login information on the site manager the here are some simple steps on how to view them .  First open filezilla and on the file menu Click Export and you will be prompted with 3 options, you can click the 3 options if you needed them.  But for now you can check the option Export Site Manager Entries.  Go to the directory where you saved the file FileZilla.xml.  Open the file using notepad or wordpad and there you can view your saved passwords.</p>
<p style="text-align: justify;">I hope I saved your day and always remember not to let anyone access your private files, Stay Secured!</p>
<div id="seo_alrp_related"><h2>Posts Related to Filezilla Saved Passwords</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/http-error-wordpress/" rel="bookmark">HTTP Error WordPress</a></h3><p>I have a photoblog and run to a problem (HTTP error in uploading images) when I upgraded wordpress.  I searched online and found several solutions ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/social-network-sites-organizer/" rel="bookmark">Social Network Sites Organizer</a></h3><p>Are you a great fan of joining social networking sites?  Do you like to socialize online? If you have lots of sites to socialize and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/izarc-free-archive-utility/" rel="bookmark">IZarc &#8211; Free Archive Utility</a></h3><p>If you have problems with those old files and feeling like they are way to big add-ons for your disk then we can have a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/website-virus-ncoyrl-htm-zcv-gif-and-iframe/" rel="bookmark">Website Virus (ncoyrl.htm, zcv.gif and iframe)</a></h3><p>With millions of websites in search engines we can never be sure that the sites we are visiting are not harmful.  Some search engines like Google helps ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-on-tray/" rel="bookmark">Thunderbird on Tray</a></h3><p>Thunderbird, a free mail client software has a new version which is version 3.O that comes with a lot of new features and one of ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/filezilla-saved-passwords/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Broadband Internet Connection</title>
		<link>http://www.icpep.org/broadband-internet-connection/</link>
		<comments>http://www.icpep.org/broadband-internet-connection/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 18:08:55 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=978</guid>
		<description><![CDATA[Broadband Internet Connection means a wide range of frequencies that are available to transmit information. This ultimately means that the wider the range of frequencies available, the high the amount of information that can be sent at one given time.   This type of connections is much faster than Dial-up connections which are limited to 56Kbs internet speed which also requires a telephone to work. Internet is vastly growing and dial up is almost not in use today.  And one good [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-979 aligncenter" title="broadband" src="http://www.icpep.org/wp-content/uploads/2009/11/broadband.jpg" alt="broadband" width="300" height="225" /></p>
<p style="text-align: center;">
<p style="text-align: justify;"><a href="http://www.broadband-expert.co.uk/broadband/">Broadband</a> Internet Connection means a wide range of frequencies that are available to transmit information. This ultimately means that the wider the range of frequencies available, the high the amount of information that can be sent at one given time.   This type of connections is much faster than Dial-up connections which are limited to 56Kbs internet speed which also requires a telephone to work.</p>
<p style="text-align: justify;">Internet is vastly growing and dial up is almost not in use today.  And one good thing about this is that most internet technologies already support Broadband connections.</p>
<p style="text-align: justify;">Before choosing you broadband internet connection here are several tips for you to consider.  First thing is you need to have a <a href="http://www.broadband-expert.co.uk/broadband/speedtest/">broadband speed test</a> so that you will know how fast your Internet Service Provider(ISP) is.  This is the first thing that one should do before deciding which ISP to select.  Failure to check will surely give a lot of pain along the way.  <span id="more-978"></span></p>
<p style="text-align: justify;">Another thing to consider is the technical support, make sure technical support is always present.  Like what I have  technical support is always there, they provided me a hotline and I can also contact them on their site for minor problems.  If you are not a techie person I suggest that you should consider this option.</p>
<p style="text-align: justify;">How reliable are they?  Reliability is always in the list when it comes to ISP services.  Reliability should be checked especially when we are use it in business.  They should be consistent with their services and downtime should be almost zero.</p>
<p style="text-align: justify;">Lastly, cost is also considered.  There are a lot of  ISP&#8217;s who give all this services and cost me low.</p>
<p style="text-align: justify;">When I was searching for the best broadband reviews, I made several choices and and one of the best was for <a href="http://www.broadband-expert.co.uk/broadband-reviews/o2-broadband-reviews">o2 broadband review</a>.  They have excellent performance among the considerations to take before having you Internet connection.  They provide excellent and reliable services.</p>
<div id="seo_alrp_related"><h2>Posts Related to Broadband Internet Connection</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/internet-web-hosting/" rel="bookmark">Internet Web Hosting</a></h3><p>There are millions of resources over the net to search whom to rely your web sites.  There are also needed options that you must consider ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/port-forward-vnc-netgear-gr614v9/" rel="bookmark">Port Forward VNC NETGEAR GR614v9</a></h3><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; My girlfriend and I have the same ISP and they are providing us with their private IP without any ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/super-antispyware-mitm-update/" rel="bookmark">Super AntiSpyware MITM Update</a></h3><p>Super Antispyware is one of the utility tools I use for our XP computers at home. From time to time I use this machines for ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/viewing-and-controlling-pc/" rel="bookmark">Viewing and controlling PC</a></h3><p>If you are far away from you techie friends and you are having troubles with your PC or laptop, how will you explain everything to ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/how-to-check-for-virus-presence/" rel="bookmark">How to check for virus Presence</a></h3><p>There are some tools and procedures that can tell with 99.44 percent accuracy whether your computer has a virus. Here are the actions to take: ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/broadband-internet-connection/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PHPMyAdmin Importing Large Data</title>
		<link>http://www.icpep.org/phpmyadmin-importing-large-data/</link>
		<comments>http://www.icpep.org/phpmyadmin-importing-large-data/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 07:06:41 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ap]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=970</guid>
		<description><![CDATA[By Default phpmyadmin can import data on your mysql database up to 2MB of data and beyond that will be an error.  This has been a big problem  by most webmasters and sometimes this can be a barrier to stop improving the sites.  Before I kept on searching what to use to import a large data on my MySQL database and all I can see is BigDump.  It is a software used for large and very large MySQL Dumps which [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-971 aligncenter" title="logo_phpmyadmin" src="http://www.icpep.org/wp-content/uploads/2009/11/logo_phpmyadmin.gif" alt="logo_phpmyadmin" width="200" height="180" /></p>
<p style="text-align: justify;">By Default phpmyadmin can import data on your mysql database up to 2MB of data and beyond that will be an error.  This has been a big problem  by most webmasters and sometimes this can be a barrier to stop improving the sites.  Before I kept on searching what to use to import a large data on my MySQL database and all I can see is BigDump.  It is a software used for large and very large MySQL Dumps which is also an option to import large data on your database.</p>
<p style="text-align: justify;">If you find BigDump a pain in the head then another way to solve the problem is to edit your php.ini file.  All you need to do is open your php.ini file and edit the line</p>
<div style="border: 2px solid #cecece; padding: 5px; background: #f1f1f1 none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;">upload_max_filesize = 2M</div>
<p>Setting 2M to a larger size will fix the problem.  One problem with this is that it will affect the web server&#8217;s runtime limit and could throw an error if you dump a very large data.</p>
<div id="seo_alrp_related"><h2>Posts Related to PHPMyAdmin Importing Large Data</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/mysql-duplicate-error/" rel="bookmark">Mysql Duplicate Error</a></h3><p>I created a web application that managers collected links.  The web application was called duplicate checker where premium links collected are being stored in a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/change-a-string-or-character-in-mysql/" rel="bookmark">Change a String or Character in MySQL</a></h3><p>Knowing the right MySQL statement is the most important part in having thousands of data in your database, one false move and you can't undo ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/code-igniter-query/" rel="bookmark">Code Igniter Query</a></h3><p>Code Igniter is one of the best PHP framework available today.  It is free to download and user guide can be found together with the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/pdo-database-extensions-error/" rel="bookmark">PDO Database Extensions Error</a></h3><p>&nbsp; &nbsp; I installed Apache, MySQL and PHP on windows 7.  I tried to install drupal version 7.9 and went through an error as shown ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/an-error-occurred-executing-the-microsoft-vc-runtime-installer/" rel="bookmark">An Error Occurred Executing the Microsoft VC++ Runtime Installer</a></h3><p>MySQL is proprietary and some developers are now merging to Postgre SQL.  If you are running windows you might come across this error.  I am ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/phpmyadmin-importing-large-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article Submission Websites</title>
		<link>http://www.icpep.org/article-submission-websites/</link>
		<comments>http://www.icpep.org/article-submission-websites/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 20:21:19 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=949</guid>
		<description><![CDATA[Search Engine Optimization is one of the most difficult thing to do to get your site ranked in the top 3 search engines namely Google, Yahoo and MSN. Reaching the top is indeed a very big challenge for all web developers and internet marketers. One of the strategies being used is article submission. As most of the &#8220;optimizers&#8221; know that the most important thing in a website/blogsites is the content, as they say &#8220;Content is King&#8221;. And I would totally [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-950 aligncenter" title="SEO" src="http://www.icpep.org/wp-content/uploads/2009/11/SEO.gif" alt="SEO" width="354" height="316" /></p>
<p style="text-align: justify;">Search Engine Optimization is one of the most difficult thing to do to get your site ranked in the top 3 search engines namely Google, Yahoo and MSN.  Reaching the top is indeed a very big challenge for all web developers and internet marketers.</p>
<p style="text-align: justify;">One of the strategies being used is article submission.  As most of the &#8220;optimizers&#8221; know that the most important thing in a website/blogsites is the content, as they say &#8220;Content is King&#8221;.  And I would totally agree to that, a site is nothing if we don&#8217;t find any good contents in it.  But content is not all there is in optimizing your sites, you need also to promote you site by creating good articles and submit them to several Article Submission Sites.  I was searching the net and even asked my friends and other web developers on what they think are the best sites for article submission.  Well on my survey and based on their rankings, I also agreed in the sites that they suggested.  Below are list of sites that worth submitting your articles:<span id="more-949"></span></p>
<ul>
<li><a href="http://ezinearticles.com">Ezine Articles</a> &#8211; PR6</li>
<li><a href="http://www.goarticles.com/">GoArticles</a> -  PR6</li>
<li><a href="http://www.a1articles.com/">A1Articles</a> &#8211; PR5</li>
<li><a href="http://www.articledashboard.com/">ArticleDashboard</a> -  PR5</li>
<li><a href="http://www.articlebiz.com/">ArticleBiz</a> -  PR5</li>
<li><a href="http://searchwarp.com/">SeachWarp</a> -  PR5</li>
</ul>
<p>These sites has increased my blog&#8217;s and site&#8217;s traffic to almost 4O% of what I have currently.  Writing to this sites are extremely effective and helpful.</p>
<div id="seo_alrp_related"><h2>Posts Related to Article Submission Websites</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/black-hat-seo/" rel="bookmark">black hat Search Engine Optimization</a></h3><p>These black hat SEO techniques usually include one or more of the following characteristics: 1. One who breaks search engine rules. 2. Unethically presents content ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/internet-web-hosting/" rel="bookmark">Internet Web Hosting</a></h3><p>There are millions of resources over the net to search whom to rely your web sites.  There are also needed options that you must consider ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/social-network-sites-organizer/" rel="bookmark">Social Network Sites Organizer</a></h3><p>Are you a great fan of joining social networking sites?  Do you like to socialize online? If you have lots of sites to socialize and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/website-virus-ncoyrl-htm-zcv-gif-and-iframe/" rel="bookmark">Website Virus (ncoyrl.htm, zcv.gif and iframe)</a></h3><p>With millions of websites in search engines we can never be sure that the sites we are visiting are not harmful.  Some search engines like Google helps ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/filezilla-saved-passwords/" rel="bookmark">Filezilla Saved Passwords</a></h3><p>Filezilla is an FTP Client used for transferring files from one host to the other or is used to exchange and manipulate files over a ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/article-submission-websites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP Curl</title>
		<link>http://www.icpep.org/php-curl/</link>
		<comments>http://www.icpep.org/php-curl/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 19:09:37 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=922</guid>
		<description><![CDATA[If you are a web developer and having problems on Installing PHP Curl on Apache with PHP installed on Windows Operating System, below is my version of tonyspecer&#8217;s &#8220;cURL with PHP and Apache on Windows&#8220;.  The steps are simple and direct to the point. I have windows apache version 2.2.14 and PHP Version 5.2.10 installed on my Laptop using the installers provided on the respective sites. 1.  Install APACHE and PHP (I installed my APACHE on C:\apache and PHP on [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-923 aligncenter" title="PHP Curl" src="http://www.icpep.org/wp-content/uploads/2009/10/PHP-Curl.jpg" alt="PHP Curl" width="453" height="419" /></p>
<p>If you are a  web developer and having problems on Installing PHP Curl on Apache with PHP installed on Windows Operating System, below is my version of <a href="http://www.tonyspencer.com/2003/10/22/curl-with-php-and-apache-on-windows/">tonyspecer&#8217;s</a> &#8220;<strong>cURL with PHP and Apache on Windows</strong>&#8220;.  The steps are simple and direct to the point.</p>
<p>I have windows <a href="http://httpd.apache.org/">apache</a> version 2.2.14 and <a href="http://www.php.net/downloads.php">PHP</a> Version 5.2.10 installed on my Laptop using the installers provided on the respective sites.</p>
<p>1.  Install APACHE and PHP (<em>I installed my APACHE on C:\apache and PHP on C:\php directories</em> )<br />
2.  Edit the php.ini file found in the PHP directory.<span id="more-922"></span></p>
<ul>
<li>Near line  546 set the extension directory extension_dir = &#8220;C:\php\ext&#8221;.  In my case I have my extensions files inside the ext folder. You can use any folder name as long as you set it in the php.ini file.</li>
<li>Near line 472 set register_globals = On</li>
<li>Near line 630 set session.save_path=&#8221;C:\WINDOWS\Temp&#8221; or you can set any directory</li>
</ul>
<p>3.  On the PHP folder (<em>in my case C:\php\</em>) copy the php5ts.dll file to the bin folder of your Apache (<em>C:\apache\bin</em>\)<br />
4.  On the PHP folder (<em>C:\php\</em>) copy libeay32.dll and ssleay32.dll to &#8221; C:\WINDOWS\system32&#8243;  folder<br />
5.  Download CURL for Windows found at <a href="http://curl.haxx.se/download.html">http://curl.haxx.se/download.html</a> and put it on the PHP folder (C:\php\curl)<br />
6.  Download OpenSSL for Windows found at <a href="http://www.shininglightpro.com/products/Win32OpenSSL.html">http://www.shininglightpro.com/products/Win32OpenSSL.html</a>, for me I downloaded 7MB <span>OpenSSL v0.9.8k Installer<br />
</span></p>
<ul>
<li>To some Windows Visual c++ Redistributable is recommended before OpenSSL is installed.  The windows Visual c++ Redistributable can be downloaded at Microsoft website in the link:  <a href="http://www.microsoft.com/downloads/thankyou.aspx?familyId=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&amp;displayLang=en">http://www.microsoft.com/downloads/thankyou.aspx?familyId=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&amp;displayLang=en</a></li>
</ul>
<p>7.  Check to see if you have the following file: c:\windows\system32\msvcr70.dll. If not, search for it in Google and download it to system32.  If you can&#8217;t find it in that directory click this <a href="http://www.dll-files.com/dllindex/dll-files.shtml?msvcr70">link</a> to download the file from www.dllfiles.com.  Extract the zipped file and put it in the &#8220;c:\windows\system32\&#8221;  folder.<br />
8.  Uncomment the curl line in your php.ini file to enable curl:  extension=php_curl.dll but in my case I just added the line because it is not found in my php.ini file</p>
<p>9.  Edit the Apache httpd.conf file to enable php:</p>
<ul>
<li>For newer version of Apache add at the bottom
<ul>
<li>LoadModule php5_module &#8220;C:/php/php5apache2_2.dll&#8221;</li>
</ul>
</li>
<li>Then below add Line: AddType application/x-httpd-php .php</li>
</ul>
<p>10.  Restart Apache and your curl should be working now.</p>
<div id="seo_alrp_related"><h2>Posts Related to PHP Curl</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/install-and-enable-php5-curl-in-gnome-linux/" rel="bookmark">Install and Enable PHP5 cURL in Gnome-Linux</a></h3><p>PHP5 cURL &nbsp; If you already have a LAMP server and PHP cURL is not yet installed you can open the terminal and use the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/pdo-database-extensions-error/" rel="bookmark">PDO Database Extensions Error</a></h3><p>&nbsp; &nbsp; I installed Apache, MySQL and PHP on windows 7.  I tried to install drupal version 7.9 and went through an error as shown ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/changing-the-owner-of-your-docroot-lamp/" rel="bookmark">Changing the Owner of Your Docroot (LAMP)</a></h3><p>In a LAMP server when you upload files in your htdocs folder by default  the owner of the files is root or the account you ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/apache-allow-htaccess/" rel="bookmark">Apache Allow htaccess</a></h3><p>Most web developers use a "third party" web server which comes in a package such as WAMP or XAMPP resulting to miss configuration of the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/packet-tracer-on-ubuntu/" rel="bookmark">Packet Tracer on Ubuntu amd64 10.10</a></h3><p>Cisco's Packet Tracer is one of my most wanted application when I was using Windows.  When you login to your account in cisco you can ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/php-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

