The flash.net.URLLoader will change your request method to GET.

The URLLoader of flash will change your URLRequest method to GET if your request’s data property is empty. The test code is simple.
private function testPostWithEmptyData():void
{
var urlLoader:URLLoader = new URLLoader();
var req:URLRequest = new URLRequest();
req.url = “http://dict.cn/POSTWithoutData”;
req.method = URLRequestMethod.POST;
urlLoader.load(req);
}
private function testPostWithData():void
{
var urlLoader:URLLoader = new URLLoader();
var req:URLRequest = new URLRequest();
req.url = “http://dict.cn/POSTWithData”;
req.method = URLRequestMethod.POST;
req.data = new URLVariables(“q=hello”);
urlLoader.load(req);
}
Then you [...]



HOW-TO: Reset MySql root password.

The root password is stored in the table user in the database. If you forgot the password, you can reset it by using mysql’s safe mode. The safe mode just allow you login to the database without password.
In Linux, you shoud execute /etc/init.d/mysql stop as root. In Windows, you can using task manager to kill [...]