web
PHP on IIS
http://php.iis.net
Bitly Short Link Services
http://bitly.pro/
Run PHP application on IIS6
Run php on IIS have 2 methods 1. You can use ISAPI Filters 2. PHP via FastCGI <- this post is how-to use FastCGI run PHP on IIS. IIS6 do not build-in FastCGI so need to install afterward FastCGI Extension for Internet Information Services 6.0 and 5.1 Then in IIS6 Web Services Extensions “Add a …
What The Internet Knows about you
This site can check what if a website build-in a script and the script can return such of informations http://whattheinternetknowsaboutyou.com/
URL Redirection
HTML redirect <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”> <html> <head> <title>Your Page Title</title> <meta http-equiv=”REFRESH” content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”></HEAD> <BODY> Optional page text here. </BODY> </HTML> Frame redirects <frameset rows=”100%”> <frame src=”http://www.example.com/”> </frameset> <noframes> <body>Please follow <a href=”http://www.example.com/”>link</a>!</body> </noframes> More info on Wiki I am currently using this script
Web Server Response Code
100-199 SRCs provide confirmation that a request was received and is being processed. (silent) 100 This is good. The request was completed and the process can move along. 101 Request to switch protocols (like from HTTP to FTP) was accepted.