Howto setup Limb3 based project

To setup Limb3 based project first create a directory somewhere inside your root web folder, say /var/www/limbapp. The easiest way to start Limb3 is to download sandbox application (empty application with minimum design and with bundled main Limb3 packages) from SourceForge http://sourceforge.net/project/showfiles.php?group_id=109345&package_id=239481.

After you downloaded limb-app to the following::

$ chmod 777 /var/www/limbapp/var

That it!

Now you can check your installation by typing http://localhost/limbapp/www in you browser. If everything is ok, you will see something like this:

}

You can also may want to setup virtual host for your project:

<VirtualHost *>
  DocumentRoot /var/www/limbapp/www/
  ServerName limbapp
  ErrorLog logs/limbapp-error_log
  CustomLog logs/limbapp-access_log common
</VirtualHost>
127.0.0.1  limbapp