Category Archives: Web Programming

Web Programming

EasyPHP: Apache Cannot Be Run. Another Web Server Is Using The Web Port Or Port Is Blocked By Firewall

Problem: When I start EasyPHP: “Apache Cannot be Run. Another web server is using the web port or port is blocked by firewall”… Solution: 1. By default the Apache port is set to 127.0.0.1:80, so make sure other applications  like … Continue reading

19 Comments

EasyPHP: How to change Apache server port number?

Problem: By default the Apache server port is set to 80, same as IIS server. If I want to change the default port to the port that I want. Solution: 1. Double click on the EasyPHP icon at the system … Continue reading

15 Comments

align=”absmiddle” or align=”absbottom” not validate in W3C Markup Validator

Normally we will use align=”absmiddle” to make an image align in the middle between a HTML element/object, e.g: <input name=”text1″ type=”text” maxlength=”17″><img src=”button_ok.gif’” alt=”OK” style=”margin-bottom:1px;” align=”absmiddle“> or <img src=”images/icon_diamond.gif” alt=”” align=”absbottom“> You will get error when you try to validate your … Continue reading

17 Comments

How to : Run classic ASP/ASP.NET on IIS 7

After installed IIS7, some people might find that classic ASP or even ASP.NET are not be able to run on the new IIS. Example test, http://localhost/test.asp or http://localhost/test.aspx By default, the IIS is not configured for classic ASP (crab!), but … Continue reading

7 Comments