Starting with the 1.5 release, DotKernel will make the switch from Dojo to jQuery. On jQuery’s website, there’s an excellent “Getting started with jQuery tutorial“, as well as a extensive documentation for the framework, so I’ll just go over a … Read More … Read More
Blog
SVN Export in a virtual host
The following commands should be run in the terminal (for example, using Putty in Windows) on the host where you want to export the repository). It’s recommended that you run them using the domain’s user, not root. … Read More
Aptana – set SVN keywords
In Aptana it’s very simple to set the svn:keywords property for a file. For example if you want to set the svn keyword property Id: … Read More
PHP 5.3.6 released. No upgrade possible for WampServer.
PHP 5.3.6 was released, but it come with a bad news for WampServer users: “Windows users: please mind that we do no longer provide builds created with Visual Studio C++ 6” Since WampServer is built using VC++ 6, is not … Read More
htaccess 301 redirect non-www to www
To always redirect users to the www site (for example: http://dotboost.com to http://www.dotboost.com), add the following lines to .htaccess, right after RewriteEngine On: RewriteCond %{HTTP_HOST} ^dotboost.com [NC] RewriteRule ^(.*)$ http://www.dotboost.com/$1 [L,R=301] … Read More