The log says the problem is in the following function in /classes/class-helper.php file:
public function write_stickers_to_file( $stickers = array() ) {
$temp_dir = trailingslashit( get_temp_dir() );
if ( sizeof( $stickers ) == 1 ) {
$temp_file = tempnam( $temp_dir, 'ep' );
$fp = fopen( $temp_file, 'w');
fwrite( $fp, $stickers[0] );
fclose( $fp );
}
Basically the $stickers array is received as NULL by the function.
-
This reply was modified 3 years, 6 months ago by oislek.