﻿<?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>PC SERVICES</title>
	<atom:link href="http://pcservices-au.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://pcservices-au.com/blog</link>
	<description>Blog for PC SERVICES</description>
	<lastBuildDate>Fri, 10 Jun 2011 23:32:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hit Counter with images</title>
		<link>http://pcservices-au.com/blog/?p=41</link>
		<comments>http://pcservices-au.com/blog/?p=41#comments</comments>
		<pubDate>Fri, 10 Jun 2011 01:09:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Hit Counter]]></category>

		<guid isPermaLink="false">http://pcservices-au.com/blog/?p=41</guid>
		<description><![CDATA[This is a image counter which is put in a page simply by using the
IMG tag in html. You don&#8217;t have to change the htm or html extension of your page to php.

Need create a database and table &#8220;counter&#8221; in mySQL database server.

CREATE TABLE `yourdatabasename`.`counter` (
`ID` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
`counter`INTEGER (9) NOT NULL default &#8216;0&#8242;,
PRIMARY KEY [...]]]></description>
			<content:encoded><![CDATA[<p>This is a image counter which is put in a page simply by using the<br />
IMG tag in html. You don&#8217;t have to change the htm or html extension of your page to php.</p>
<ul>
<li>Need create a database and table &#8220;counter&#8221; in mySQL database server.</li>
</ul>
<p>CREATE TABLE `yourdatabasename`.`counter` (<br />
`ID` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,<br />
`counter`INTEGER (9) NOT NULL default &#8216;0&#8242;,<br />
PRIMARY KEY (`ID`)<br />
);</p>
<p>UPDATE `yourdatabasename`.`counter` SET counter=0;</p>
<ul>
<li>Create a folder under root of your web server call &#8220;counter&#8221; .</li>
<li>Feel free to use my script below (<strong>have to remove these &#8220;//&#8221; at begin of the lines</strong> ) and save as login.php into a folder call &#8220;counter&#8221;.</li>
</ul>
<p>//&lt;?php //login.php<br />
//<br />
// /**<br />
// * @author PCS-PC<br />
// * @copyright 2011<br />
// */<br />
//<br />
//$db_hostname = &#8216;your database hostname&#8217;;<br />
//$db_database = &#8216;your database name&#8217;;<br />
//$db_username = &#8216;your database username&#8217;;<br />
//$db_password = &#8216;your database password&#8217;;<br />
//<br />
//?&gt;</p>
<ul>
<li>Feel free to use my script below (<strong>have to remove these &#8220;//&#8221; at begin of the lines</strong> ) and save as counter.php into a folder call &#8220;counter&#8221;  .</li>
</ul>
<p>//&lt;?php //counter.php<br />
//<br />
// /**<br />
// * @author PCS-PC<br />
// * @copyright 2011<br />
// */<br />
//<br />
//require_once &#8216;login.php&#8217;;<br />
//$tbl_name = &#8220;counter&#8221;; //Table name<br />
//<br />
//<br />
//$digit_dir = &#8220;./iphone&#8221;;<br />
//$min_width = 5;<br />
//$lifetime = 30;<br />
//$domain = <a href="http://www.your_domain">www.your_domain</a>;<br />
//$trigger = 1000;<br />
//<br />
//// Connect to server and select database.<br />
//$db_server = mysql_connect($db_hostname, $db_username, $db_password);<br />
//<br />
//if (!$db_server)<br />
//    die(&#8220;cannot connect to server:<br />
//&#8221; . mysql_error());<br />
//<br />
//mysql_select_db($db_database)<br />
//or die(&#8220;Unable to select database: &#8221;<br />
//.mysql_error());<br />
//<br />
//$sql = &#8220;SELECT * FROM $tbl_name&#8221;;<br />
//$result = mysql_query($sql);<br />
//<br />
//if (!$result)<br />
//    die(&#8220;Databasse access failed: &#8221; . mysql_error());<br />
//<br />
//$rows = mysql_fetch_array($result);<br />
//$count = $rows['counter'];<br />
//<br />
//// if have no counter value set counter = 1<br />
//if (!($count))<br />
//{<br />
//    $count = 1;<br />
//    $sql1 = &#8220;INSERT INTO $tbl_name(counter) VALUES(&#8216;$count&#8217;)&#8221;;<br />
//    $result1 = mysql_query($sql1);<br />
//}<br />
//<br />
//<br />
//if (!isset($_COOKIE['counter']))<br />
//{<br />
//    $count++;<br />
//    $sql2 = &#8220;update $tbl_name set counter=&#8217;$count&#8217;&#8221;;<br />
//    $result2 = mysql_query($sql2);<br />
//    mysql_close();<br />
//    setcookie(&#8220;counter&#8221;, &#8220;dummy&#8221;, time() + 60 * 60 * 24 * $lifetime, $domain);<br />
//}<br />
//<br />
//$len = strlen(strval($count));<br />
//if ($len &gt; $min_width)<br />
//    $width = $len;<br />
//else<br />
//    $width = $min_width;<br />
//<br />
//<br />
//<br />
//<br />
//// Check image type (gif or png)<br />
//if (!file_exists(&#8220;$digit_dir/0.gif&#8221;) &amp;&amp; !file_exists(&#8220;$digit_dir/0.png&#8221;))<br />
//{<br />
//    die(&#8220;No images in digit-dir&#8221;);<br />
//}<br />
//if (!file_exists(&#8220;$digit_dir/0.gif&#8221;))<br />
//{<br />
//    //proceed_png();<br />
//    $d0 = ImageCreateFrompng(&#8220;$digit_dir/0.png&#8221;);<br />
//<br />
//<br />
//    $dx = ImageSX($d0);<br />
//    $dy = ImageSY($d0);<br />
//<br />
//    $img = ImageCreateTrueColor($width * $dx, $dy);<br />
//    ImageDestroy($d0);<br />
//<br />
//    $xoff = $width * $dx;<br />
//    while ($xoff &gt; 0)<br />
//    {<br />
//        $digit = $count % 10;<br />
//        $count = $count / 10;<br />
//<br />
//        $temp = ImageCreateFrompng(&#8220;$digit_dir/$digit.png&#8221;);<br />
//        $xoff = $xoff &#8211; $dx;<br />
//        ImageCopyResized($img, $temp, $xoff, 0, 0, 0, $dx, $dy, $dx, $dy);<br />
//        ImageDestroy($temp);<br />
//    }<br />
//<br />
//    Header(&#8220;Content-type: image/png&#8221;);<br />
//    Imagepng($img);<br />
//    ImageDestroy($img);<br />
//<br />
//} else<br />
//{<br />
//    //proceed_gif();<br />
//    $d0 = ImageCreateFromgif(&#8220;$digit_dir/0.gif&#8221;);<br />
//<br />
//    $dx = ImageSX($d0);<br />
//    $dy = ImageSY($d0);<br />
//<br />
//    $img = ImageCreateTrueColor($width * $dx, $dy);<br />
//    ImageDestroy($d0);<br />
//<br />
//    $xoff = $width * $dx;<br />
//    while ($xoff &gt; 0)<br />
//    {<br />
//        $digit = $count % 10;<br />
//        $count = $count / 10;<br />
//<br />
//        $temp = ImageCreateFromgif(&#8220;$digit_dir/$digit.gif&#8221;);<br />
//        $xoff = $xoff &#8211; $dx;<br />
//        ImageCopyResized($img, $temp, $xoff, 0, 0, 0, $dx, $dy, $dx, $dy);<br />
//        ImageDestroy($temp);<br />
//    }<br />
//<br />
//<br />
//    Header(&#8220;Content-type: image/gif&#8221;);<br />
//    Imagegif($img);<br />
//    ImageDestroy($img);<br />
//}<br />
//<br />
//<br />
//?&gt;</p>
<ul>
<li>Feel free to use my counter images  <a href="http://pcservices-au.com/blog/wp-content/uploads/2011/06/iphone.zip">iphone</a> or design them  ( they can be .gif or .png) by yourself and place them into folder &#8220;iphone&#8221; under &#8220;counter&#8221; folder .</li>
<li>On your home page wherever you like to display the Hit Counter enter the code as below (<strong>have to remove these &#8220;//&#8221; at begin of the lines</strong>):</li>
</ul>
<p>//&lt;p&gt;<br />
//        &lt;img src=&#8221;counter/counter.php&#8221; alt=&#8221;counter&#8221; border=&#8221;0&#8243; /&gt;<br />
//&lt;/p&gt;</p>
<ul>
<li>Save your home page and upload all files to your web server and enjoy.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pcservices-au.com/blog/?feed=rss2&amp;p=41</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unlock iPhone 3GS with 3.1.3</title>
		<link>http://pcservices-au.com/blog/?p=31</link>
		<comments>http://pcservices-au.com/blog/?p=31#comments</comments>
		<pubDate>Sat, 10 Jul 2010 06:37:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IPHONE]]></category>

		<guid isPermaLink="false">http://pcservices-au.com/blog/?p=31</guid>
		<description><![CDATA[You can unlock your iphone 3GS with 3.1.3 firm ware by follow the instruction:

Open the Cydia by touch Cydia icon as picture below



Select Manage as below

 


Select Sources to open the screen as below



Select Edit button to show the screen as below



Select Add button for enter http://repo666.ultrasn0w.com make sure the sn0w the letter 0 is not o [...]]]></description>
			<content:encoded><![CDATA[<p>You can unlock your iphone 3GS with 3.1.3 firm ware by follow the instruction:</p>
<ul>
<li>Open the Cydia by touch Cydia icon as picture below</li>
</ul>
<p><img class="aligncenter size-full wp-image-32" title="IMG_0969" src="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0969.png" alt="" width="224" height="336" /></p>
<ul>
<li>Select Manage as below</li>
</ul>
<p> </p>
<p><a href="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0963.png"><img class="aligncenter size-full wp-image-33" title="IMG_0963" src="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0963.png" alt="" width="224" height="336" /></a></p>
<ul>
<li>Select Sources to open the screen as below</li>
</ul>
<p><a href="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0964.png"><img class="aligncenter size-full wp-image-34" title="IMG_0964" src="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0964.png" alt="" width="224" height="336" /></a></p>
<ul>
<li>Select Edit button to show the screen as below</li>
</ul>
<p><a href="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0965.png"><img class="aligncenter size-full wp-image-35" title="IMG_0965" src="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0965.png" alt="" width="224" height="336" /></a></p>
<ul>
<li>Select Add button for enter <a href="http://repo666.ultrasnOw.com">http://repo666.ultrasn0w.com</a> make sure the sn0w the letter 0 is not o it is number 0</li>
</ul>
<p><a href="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0966.png"><img class="aligncenter size-full wp-image-36" title="IMG_0966" src="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0966.png" alt="" width="224" height="336" /></a></p>
<ul>
<li>Select Add Source button to return to the screen as below</li>
</ul>
<p><img title="IMG_0965" src="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0965.png" alt="" width="224" height="336" /></p>
<ul>
<li>Select repo666.ultrasn0w.com</li>
</ul>
<p><a href="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0967.png"><img class="aligncenter size-full wp-image-38" title="IMG_0967" src="http://pcservices-au.com/blog/wp-content/uploads/2010/07/IMG_0967.png" alt="" width="224" height="336" /></a></p>
<ul>
<li>Select ultrasn0w and select install button to install the ultrasn0w. After finish install Ultrasn0w then you can test your Iphone 3Gs by insert other carrier Sim card such as T-mobile in US market</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pcservices-au.com/blog/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3G Iphone Baseband 05.12.01 downgrade to 04.26.08</title>
		<link>http://pcservices-au.com/blog/?p=19</link>
		<comments>http://pcservices-au.com/blog/?p=19#comments</comments>
		<pubDate>Sun, 21 Mar 2010 17:08:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IPHONE]]></category>

		<guid isPermaLink="false">http://pcservices-au.com/blog/?p=19</guid>
		<description><![CDATA[The following procedure will only help to downgrade iPhone 3G which is currently on iPhone OS 3.1.3 with 05.12.01 baseband and older bootloader 05.08. This won&#8217;t work with iPhone 3GS.

Here is howto check your bootloader by going to Cydia and search for Fuzzyband. When you see the Fuzzyband you can download and install. When finished [...]]]></description>
			<content:encoded><![CDATA[<p>The following procedure will only help to downgrade iPhone 3G which is currently on iPhone OS 3.1.3 with 05.12.01 baseband and older bootloader 05.08. This won&#8217;t work with iPhone 3GS.</p>
<p><a href="http://pcservices-au.com/blog/wp-content/uploads/2010/03/IMG_0783.png"><img class="aligncenter size-medium wp-image-22" title="IMG_0783" src="http://pcservices-au.com/blog/wp-content/uploads/2010/03/IMG_0783-200x300.png" alt="" width="200" height="300" /></a></p>
<p>Here is howto check your bootloader by going to Cydia and search for Fuzzyband. When you see the Fuzzyband you can download and install. When finished run Fuzzyband from your iPhone and you can see your bootloader version</p>
<p><a href="http://pcservices-au.com/blog/wp-content/uploads/2010/03/IMG_0785.png"><img class="aligncenter size-medium wp-image-23" title="IMG_0785" src="http://pcservices-au.com/blog/wp-content/uploads/2010/03/IMG_0785-200x300.png" alt="" width="200" height="300" /></a></p>
<p>As you see my bootloader version is 5.08</p>
<p>If your iPhone meets the above condition, you can then use the lattest version of Fuzzyband which supports iPhone 3.1.3 to downgrade your 05.12.01 baseband to the older 04.26.08. After you have downgraded your baseband, you can then use ultrasn0w to unlock your iPhone on iPhone 3.1.3 firmware. Here’s the instruction.</p>
<ol>
<li>To downgrade your baseband from 05.12.01 to 04.26.08, you must first jailbreak your iPhone 3G running firmware 3.1.3 by using <a href="http://rapidshare.com/files/345102412/redsn0w-win_0.9.4.zip">redsn0w 0.9.4</a>, <a href="http://ih8sn0w.com/index.php/welcome.snow">sn0wbreeze</a> for Windows users.</li>
<li>After you have jailbroken your iPhone, Go to “Cydia” on your iPhone and  Search for “Fuzzyband” and then install this application.</li>
<li>Start “Fuzzyband” app and touch on “Downgrade” button to downgrade your  Baseband from 05.12.01 to 04.26.08.</li>
<li>You should now be able to perfectly unlock your iPhone 3G using the  latest version of ultrasn0w that can get from Cydia. For those of you who don’t know your bootloader, simply run  Fuzzyband and it will report the version number for you.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://pcservices-au.com/blog/?feed=rss2&amp;p=19</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Jailbreak iPhone 3G 3.1.3 with RedSn0w 0.9</title>
		<link>http://pcservices-au.com/blog/?p=15</link>
		<comments>http://pcservices-au.com/blog/?p=15#comments</comments>
		<pubDate>Sat, 20 Mar 2010 00:14:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IPHONE]]></category>

		<guid isPermaLink="false">http://pcservices-au.com/blog/?p=15</guid>
		<description><![CDATA[This guide and tutorial will show you how to jailbreak your iPhone 2G, 3G running OS 3.1.3 using RedSn0w 0.9.
If you are new to the whole jailbreaking thing, I really suggest you read this information about RedSn0w 0.9.3. It will tell you everything you need to know about RedSn0w before starting.
I know that some of [...]]]></description>
			<content:encoded><![CDATA[<p>This guide and tutorial will show you how to jailbreak your iPhone 2G, 3G running OS 3.1.3 using RedSn0w 0.9.</p>
<p>If you are new to the whole jailbreaking thing, I really suggest you read this information about <a href="http://xs1.iphwn.org/rs/redsn0w-win_0.9.3.zip">RedSn0w 0.9.3</a>. It will tell you everything you need to know about RedSn0w before starting.</p>
<p>I know that some of you won’t bother reading the more info link about RedSn0w 0.9 so here is probably the most important information about this jailbreak:</p>
<p>    If you have a late-model iPhone 3GS, or if you have aniPod touch 2G whose serial number begins with “MC”, you can use redsn0wto jailbreak but you are currently restricted to “tethered” rebooting.That means you need to connect your device to a computer<br />
    to complete the boot after a reset. Also, these devices cannot have custom logos.</p>
<p>    redsn0w will ask you whether or not you fit in this category when used with the iPhone 3GS or iPod touch 2G. Ifyou have a late-model device and don’t give redsn0w the correct answer,you will likely need to do a system restore to recover from the mistake.</p>
<p>    To do a tethered boot after your late-model device resets for somereason, either run redsn0w again and select “Just boot tethered rightnow”, or run blackra1n.</p>
<p>This RedSn0w tutorial was written for Windows but I assume the steps are identical for a Mac.</p>
<p>    Step 1: Download <a href="http://xs1.iphwn.org/rs/redsn0w-win_0.9.3.zip">RedSn0w 0.9</a> for Mac or PC as well as the correct 3.1.3 firmware for your iPhone from here. To make things easy, save those 2 files on your desktop.</p>
<p>    Step 2: Make sure you have the latest version ofiTunes installed on your computer, then restore your iPhone to thelatest firmware 3.1.3. Restoring is the preferred way to go about it assimply updating could cause issues later on.</p>
<p>    Step 3: Launch RedSn0w and browse for the 3.1.3 firmware you downloaded to your computer in Step 1.</p>
<p>    Step 4: RedSn0w will automatically check if you chose the right firmware (IPSW). It will then patch the file.</p>
<p>    Step 5: You will now have the option to “InstallCydia” as well as “Custom boot logo” and “Custom recovery logo”. Forthe purpose of this tutorial, I suggest you only choose “Install Cydia”.</p>
<p>    Step 6: Make sure your iPhone is plugged to yourcomputer. RedSn0w will now dictate you a few steps to have your iPhoneenter DFU mode. Follow the onscreen instructions very carefully.</p>
<p>    Step 7: Your iPhone will reboot when successfully jailbroken.</p>
<p>    Congratulations! You just jailbroke your iPhone using RedSn0w 0.9. If you want to unlock your iPhone 3G, simply install UltraSn0w from Cydia.</p>
<p>    Any question or concern, please feel free to ask in the comment section below. Happy jailbreak.</p>
<p>    <a href="http://pcservices-au.com">Prestons Computer Services &#8211; All Rights Reserved</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://pcservices-au.com/blog/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPhone 3GS model Issue</title>
		<link>http://pcservices-au.com/blog/?p=13</link>
		<comments>http://pcservices-au.com/blog/?p=13#comments</comments>
		<pubDate>Fri, 19 Mar 2010 23:23:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IPHONE]]></category>

		<guid isPermaLink="false">http://pcservices-au.com/blog/?p=13</guid>
		<description><![CDATA[IPhone 3GS model start with &#8220;MC&#8221; on the part number (this part number display on the container box) got problem with Blackrain. Sn0wbreeze 3.1.3 has been released which can jailbreak iPhone 2G, 3G and IPHONE 3GS on the latest 3.1.3 firmware. One thing which is to be noted here is that it will work with [...]]]></description>
			<content:encoded><![CDATA[<p>IPhone 3GS model start with &#8220;MC&#8221; on the part number (this part number display on the container box) got problem with Blackrain. Sn0wbreeze 3.1.3 has been released which can jailbreak iPhone 2G, 3G and IPHONE 3GS on the latest 3.1.3 firmware. One thing which is to be noted here is that it will work with iPhone 3GS only if it has the older bootrom (non-MC model).</p>
<p>Note for iPhone 3G and 3GS Users (New Bootroms): We strongly suggest that you stay away from this official upgrade until and unless the DevTeam releases new jailbreaking and unlocking tools for 3.1.3 firmware.</p>
<p><a href="http://pcservices-au.com">Prestons Computer Services &#8211; All Rights Reserved</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pcservices-au.com/blog/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Put your iPhone in Recovery mode</title>
		<link>http://pcservices-au.com/blog/?p=4</link>
		<comments>http://pcservices-au.com/blog/?p=4#comments</comments>
		<pubDate>Mon, 15 Mar 2010 02:47:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IPHONE]]></category>

		<guid isPermaLink="false">http://pcservices-au.com/blog/?p=4</guid>
		<description><![CDATA[

Turn the device completely off and disconnect it from cable/dock.
Hold down the home button.
While holding down the home button connect to a computer with a cable (easiest) or dock.
Keep holding down the home button until you see a connect-to-iTunes screen You are now in recovery mode.




Prestons Computer Services &#8211; All Rights Reserved
]]></description>
			<content:encoded><![CDATA[<blockquote>
<ol>
<li>Turn the device completely off and disconnect it from cable/dock.</li>
<li>Hold down the home button.</li>
<li>While holding down the home button connect to a computer with a cable (easiest) or dock.</li>
<li>Keep holding down the home button until you see a connect-to-iTunes screen You are now in recovery mode.</li>
</ol>
</blockquote>
<blockquote></blockquote>
<blockquote></blockquote>
<p><a href="http://pcservices-au.com" class="style8">Prestons Computer Services &#8211; All Rights Reserved</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pcservices-au.com/blog/?feed=rss2&amp;p=4</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

