Hi all!
This update intruduces the new mime_types.yml file that allows you to easily add more mime types if some are missing. I've populated the file with some commonly used ones..
Now the info about PHP on Linux..
Current i've found out that a lot of PHP functions doesn't work except the most basics.. This of course is not intended by design.. I am currently looking into a fix but atm its only down to most basic PHP functions.
It is also now possible to use Java classes in the php system. By using the
PHP:
import path
.to
.java
.
class
method..
example:
Code (Text):
import java.util.Calendar;
$calendar = Calendar::getInstance();
$date = $calendar->getTime();
echo "Current date and time: $date<br>";