Just for information,
When I unzip the latest Atomik package (3.1.4) I saw this error :
Fatal error: Constructor Atomik\Flash::flash() cannot be static in /var/www/{my_site_name}/vendor/atomik/atomik/src/plugins/Flash.php on line 134
I'm using php 5.3.2 and I fix this error by adding this :
public function __construct(){
return;
}
at the beginning of the Flash class.
Just for information, When I unzip the latest Atomik package (3.1.4) I saw this error : Fatal error: Constructor Atomik\Flash::flash() cannot be static in /var/www/{my_site_name}/vendor/atomik/atomik/src/plugins/Flash.php on line 134
I'm using php 5.3.2 and I fix this error by adding this : public function __construct(){ return; } at the beginning of the Flash class.
Enoy, Kyrd