yes it's correct
i have tried to modify if statement for resize to cache only images
is it right?
if (!empty($CI->upload))
{
$data = $CI->upload->data();
if ((!empty($data['full_path'])) && ($data['is_image'] == 1))
{
…
Image file resized and saved perfectly but not the pdf.
After saving the post I can see image in image folder but pdf is not there.
2. i have check full_puth there all correct and writable.
Hello,
I'm trying to implement contact form on my clint website, I took all code form your demo website. But it doesn't work, on submission it just reload the contact page.
I'm running the latest build of FUEL CMS, and here is what i have in conta…