Hi,
when i try to upload more than one file the message "only pdf…" appears.
See screenshot:
https://dl.dropboxusercontent.com/u/54394687/2016-06-21_083327.jpg
It's possible fix it?
Thanks.
Massimo
1 Answers
Hi,
This is part of demo. You can remove these conditions from code. Refer following.
1)
$grid["add_options"]["bottominfo"] = "Only pdf, gif, jpg, txt, doc, bmp, png files are allowed!";
2)
if ($ext <> "pdf" && $ext <> "gif" && $ext <> "jpg" && $ext <> "txt" && $ext <> "doc" && $ext <> "bmp" && $ext <> "png")
{
…
}
Your Answer