iOS 4.3 For iPhone, iPad, and iPod Touch

iOS 4.3 for iPhone, iPad, iPod touch, Apple TV and SDK is ready for download. This build is only for developers. Only members enrolled in the iPhone Developer Standard or Enterprise Program can access these by signing into Apple Developer Connection. The new iOS 4.3 brings lots of new features, see some of the the list below:Personal Hotspot which turns your iPhone into a Wi-Fi router.New FaceTime icon for iPod touches 4 and 5 finger gestures for iPad [youtube width="500" … Read more...

Debug WordPress To See How It is Works

It’s no doubt that WordPress is one of the most powerful CMS for blogging. Beside it is free and open source, it also user friendly. But do you know how exactly WordPress executing it’s code? Well, this idea come up in my mind, so i would like to trace how WordPress executing it’s code.When visitors visit your WordPress blog, it only serve through index.php, even your visitors click any links in your blog (post, category, page, blogroll, archive, feed links), it will serve only from … Read more...

Customize Your Facebook Fan Page

From the previous article “Create Facebook Fan Page With Welcome Page“, i wrote how to make Facebook fan page with simple welcome page. Now i would like to show you more cool features that you can do with Facebook Fan Page.In Facebook Fan Page you can add:Hide Exclusive Content only for Fans You can show your exclusive content or download link only for your fans, or your visitor that like your page. You can do it with “visible-to-connection” tag from FBML. See the example … Read more...

Create Facebook Fan Page With Welcome Page

It’s no doubt that Facebook have most users on the net. They claim that they have more than 200 millions of users using Facebook now. So imagine that you have more than 100 millions possibilities to get more loyal visitors to your site. Even a big company like Starbucks, Coke and Apple have their own Facebook account and fan page. Facebook fan page have cool features to market your websites or products.Before you begin, it would be nice if you read this post from smashingmagazine.com which … Read more...

Debug Yor PHP Application With Xdebug

Debugging php code or php web application is not as easy as debugging asp.net web application using Visual Studio.Net. But still, we can. From my previous article, “See How PHP Web Application Work With XDebug“, you can debug and profiling a whole php code running or part of your php code using XDebug. Or use the old method with var_dump(), die(), echo, and print_r(). And debugging is not an easy job for most developer.As i state in the previous post, we can still do debuggin with Zend … Read more...

Why You Should Wait For iPad 2

The rumor says that APple iPad 2 will release somewhere between February – April 2011. Founder of Digg, Kevin Rose, also jumped into the rumor with his state: “I have it on good authority that Apple will be announcing the iPad 2 in the next 3-4 weeks, possibly Tuesday February 1st. The iPad 2 will feature a retina display and front/back cameras.”. Even it is still in debate, we need to know what reasons to hold to buy iPad now and wait for the next generation of this a blazing fast speed … Read more...

See How PHP Web Application Work With XDebug

The most common issue when we are developing web application using PHP is debugger. Debugging our web application is very important when we are developing and testing our project. Usually i’m using var_dump(), print_r() or echo to show the output of the variable or the result. The alternative is using Zend Studio, the PHP IDE (Integrated Development Environment), but it is too expensive and i couldn’t afford it now.So the alternatively to see how your web application works is using … Read more...

Easy To Use Remote Admin Tools

You can control your Windows machine far away with remote desktop, this is known as virtual network computing (VNC). “Virtual Network Computing (VNC) is a graphical desktop sharing system that uses the RFB protocol to remotely control another computer. It transmits the keyboard and mouse events from one computer to another, relaying the graphical screen updates back in the other direction, over a network.” (source: Wikipedia).But Windows remote desktop is slow and poor image quality, but … Read more...

URL Validation Class In PHP

A couple days ago i’ve been struggling with URL validation in PHP. And i found a URL validation class from phpclasses.org which i think is great and do what i need. And to use it, is really simple. Beside validate url, this class also can parse the url, so you can get all the url details.This url validation class is develop by Kaloyan Kirilov Tzvetkov, all credits is goes to him.Here is the example to use it:It’s pretty handy and safe your headache, isn’t it?Download … Read more...

Solve Nginx Error 413: Request Entity Too Large

Nginx default maximum accepted body size of client request, or maximum file size that you can upload to the server which have Nginx is 1M. And when i try to upload more than 1M i got Nginx error 403: Request entity too large. This happen because Nginx refuse it. And please keep in mind that the browsers do not know how to correctly show this error.To correct this error is easy, you just need to give client_max_body_size a value. Follow the steps below to solve Nginx Error 413: Request entity … Read more...