In short.. question is... \"Say what?\" To expand... \"I don\'t get the error\"
Strict Standards: Non-static method Pyro\\Template::preLoad() should not b
Well the preLoad function is not static. Which means only an object of the class Template can use this method. A static method exists indepedently of any object of the class.
Template::preLoad is a static call : you didn't create a Template object, then call the preLoad method. So basically, you've got two solutions :