"PHP applications can read and write application files, like for instance configuration files and uploaded files. The data files are written to a cloud storage service using a special file stream handler.
However, it cannot use the require or include statements to execute script files created dynamically by the application. While this seems to be a nice security feature, it imposes limitations to many PHP applications.
For instance template engines that generate PHP scripts are not able to execute the scripts using include or require."
So it seems that we will be faced with problems compiling templates and including the compiled ones... or is it so?
Markku