![]() |
Help not getting the image_height - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Help not getting the image_height (/showthread.php?tid=27738) Pages:
1
2
|
Help not getting the image_height - El Forum - 02-19-2010 [eluser]Exxon[/eluser] I am in the process of creating a filemanager for fckeditor for my cms. But when I upload the images I get the error that image_height (As this would contain the height according to the documentation) is undefined ! I followed the example in the user guide Code: $config['upload_path'] = 'resources/api/website_files/'; Thanks Help not getting the image_height - El Forum - 02-19-2010 [eluser]Craig300[/eluser] Hi, Just spotted a spelling mistake that could be causing it Code: 'height' => (isset ($updata["image_heigth"])) ? $updata["image_heigth"] : 0, should be this: Code: 'height' => (isset ($updata["image_height"])) ? $updata["image_height"] : 0, Hope this helps... Help not getting the image_height - El Forum - 02-19-2010 [eluser]Exxon[/eluser] Your kidding wow.... Thanks Help not getting the image_height - El Forum - 02-19-2010 [eluser]Craig300[/eluser] Sometimes the simplest things are the hardest things to find ![]() Did it work by the way? Help not getting the image_height - El Forum - 02-19-2010 [eluser]Exxon[/eluser] Yes thanks did had me pulling my hair for a hour! Help not getting the image_height - El Forum - 02-19-2010 [eluser]Exxon[/eluser] Finally almost have a fully working file manager. Help not getting the image_height - El Forum - 02-19-2010 [eluser]Craig300[/eluser] Looks good, does that allow you to delete and amend pictures etc? I have done a similar thing for a gallery and to allow the upload of banners to a site. Help not getting the image_height - El Forum - 02-19-2010 [eluser]Exxon[/eluser] Delete is the next function i'm working on but what would you mean amend pictures, if upload more then yes and totally ajax-ed. The size and total upload space is calculated based on their websites' package that they chose. Help not getting the image_height - El Forum - 02-19-2010 [eluser]Craig300[/eluser] Sounds like a nice piece of coding, would be nice to see it when its totally finished ![]() I have a full admin backend system for a CMS but needs a bit of ajax in some places. Help not getting the image_height - El Forum - 02-19-2010 [eluser]Exxon[/eluser] Thanks but the thing is I hope that I will see it finished too. Just so busy ![]() |