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

Disable Wurfl redirect for mobile browsers

This post refers to DotKernel 1, based on Zend Framework 1. If you are looking for DotKernel 3 related posts, go here. DotKernel has an example mobile site at http://v1.dotkernel.net/mobile that uses jQuery Mobile. Wurfl is also used to detect … Read MoreRead More

DotKernel 1.3.2 release

This post refers to DotKernel 1, based on Zend Framework 1. If you are looking for DotKernel 3 related posts, go here. Before the winter holiday we came with a new release: DotKernel 1.3.2 It contains many bug fixes, some … Read MoreRead More

How To Upgrade Wamp to PHP 5.3.4

1.    Stop WAMP server. 2.    Go to windows.php.net and download the the latests ZIPPED package for php5.3.4. Make sure it is the VC6 Thread Safe build. DO NOT DOWNLOAD THE INSTALLER. 3.  Create a folder php5.3.4 into wamp/bin/php … Read MoreRead More

WURFL Zend Framework Integration into DotKernel

This post refers to DotKernel 1, based on Zend Framework 1. If you are looking for DotKernel 3 related posts, go here. WURFL is integrated into DotKernel, using the Zend_Http_UserAgent class from the latest release ZF 1.11.0rc1 ( Beta release … Read MoreRead More

GeoIP: Ip Address Location In DotKernel

This post refers to DotKernel 1, based on Zend Framework 1. If you are looking for DotKernel 3 related posts, go here. GeoIP is the proprietary technology that drives MaxMind’s IP geolocation data and services. It is a non-invasive way … Read MoreRead More

Using Aptana to connect to DotKernel tracker (Mantis)

In developing DotKernel application framework, we needed a tracking system. DotKernel Tracker is the place where the bugs are reported, new features are announced and other general tickets are added. DotKernel Tracker is a Mantis web-based bugtracking system. To simplify … Read MoreRead More