I downloaded the latest via svn. Initially, the install script would not work because of this:
if(version_compare('4.3', phpversion(), '<')) nice_die('Your server is running PHP version ' . phpversion() . ' but Lilina needs PHP 4.3 or newer<br />');
I was well above that version (using PHP Version 5.2.4-2ubuntu5) so I just removed that check to see what would happen. I was able to then launch the install fine. It caught the fact that I had incorrect permissions on the cache and conf directories, so I corrected those and finished the install where I was presented with a link that pointed me to the lilina/index.php file. I clicked, blank page. Can't seem to figure out what is going on. Any help would be appreciated.
Yeah, I'm working on that at the moment. The problem with that check was two-fold: 1) It checks the version the wrong way (it should be >) 2) nice_die() should be lilina_nice_die()