Warning: fopen(MyPDF/MyPDF.pdf) [function.fopen]: failed to open stream: Permission denied in /home/adminboy/domains/xxx.com/public_html/xxx/fpdf.php on line 1044
FPDF error: Unable to create output file: MyPDF/MyPDF.pdf
case 'F':
//Save to local file
$f=fopen($name,'wb');
if(!$f)
$this->Error('Unable to create output file: '.$name);
fwrite($f,$this->buffer,strlen($this->buffer));
fclose($f);
break;