Archive for August, 2009

Eclipse 3.5 Galileo

Posted by Johan Cyprich on 13 Aug 2009 | Tagged as: Applications

I’ve installed the latest version of Eclipse today (version 3.5, Galileo). The Classic version was installed instead of the Eclipse for PHP Developers edition. I started with the base edition of Eclipse (with the Java tools) and adding PHP and other web development components.

Download and Install Eclipse
The first thing you need to do is download [...]

WordPress 2.8.4: Security Release

Posted by Johan Cyprich on 12 Aug 2009 | Tagged as: Applications, Security

An update for WordPress was released today after a minor security issue was discovered yesterday. A bug in the code allowed a blog user to reset the administrator’s password and cause a new password to be e-mailed to the admin. The attacker would not get access to the account, but the administrator would be inconvenienced [...]

Using Line Numbers in vi

Posted by Johan Cyprich on 11 Aug 2009 | Tagged as: How To

Debugging is easier with line numbers. The default setting for vi and vim is for line numbers in the document to be hidden.

Setting Line Numbers within the Editor
You can turn on line numbers by typing
:set number
or
:set nu
 
The line numbers can also be turned off by typing
:set nonumber
or
:set nu!
 
Making Line Numbers Default in vi
You need to [...]

Registering ASP.NET after IIS Installation

Posted by Johan Cyprich on 11 Aug 2009 | Tagged as: How To

If the IIS web server is installed after the .NET Framework was installed, ASP.NET web pages will not work. This issue will also occur if the web server is reinstalled. The reason for this is that the ASP.NET file extensions are not being associated with the IIS mappings.

How To Fix
This can be fixed with [...]