You have two errors, repeated 3 times, let’s break them down.
Error:
[15-Feb-2014 07:42:50 Europe/Bucharest] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/palantin/public_html/ecard/resources/localisations/ro_RO.php:1) in /home/palantin/public_html/ecard/index.php on line 317
Cause:
[php]// Send the browser a JPEG image header
header( “Content-Type: image/jpeg”);[/php]
Solution:
There is some kind of output happening before the script reaches here, find it and either re-arrange your code or use output buffering.
Error:
[15-Feb-2014 07:42:50 Europe/Bucharest] PHP Warning: imagejpeg(): Filename cannot be empty in /home/palantin/public_html/ecard/index.php on line 528
Cause:
[php]$filename = POPC_TEMP_DIR . md5(microtime()) . “.jpg”;[/php]
Solution:
This variable is not being populated, find out why…
Note: I haven’t read through your scripts i just looked at the error log then located the problem in your scripts.
Hope that helps.
Red 