Hi Cookers,
Project : J! Breeding V3 for Joomla! 3.2
I ve forked the helper in order to save my picts in 3 differents folder. the purpose :is to store pictures of each table/form in his own folder..
So I've changed this :
administrator/components/com_jbreeding/helpers/helper.php
// 'DIR_PEDIGREES_PHOTO' => $config->get("upload_dir_pedigrees_photo", "[COM_SITE]" .DS. "files" .DS. "pedigrees_photo"),
// 'DIR_PORTEES_PHOTO_CHIOTS' => $config->get("upload_dir_portees_photo_chiots", "[COM_SITE]" .DS. "files" .DS. "portees_photo_chiots"),
// 'DIR_ACTUALITES_PHOTO' => $config->get("upload_dir_actualites_photo", "[COM_SITE]" .DS. "files" .DS. "actualites_photo"),
'DIR_PEDIGREES_PHOTO' => $config->get("upload_dir_pedigrees_photo", "[IMAGES]" .DS. "pedigrees_photo"),
'DIR_PORTEES_PHOTO_CHIOTS' => $config->get("upload_dir_portees_photo_chiots", "[IMAGES]" .DS. "portees_photos"),
'DIR_ACTUALITES_PHOTO' => $config->get("upload_dir_actualites_photo", "[IMAGES]" .DS. "actualites_photo"),
...
But from a fresh install, it doesn't not create the folder in the 'images' path, and doesn't save pict too.
Is there any other file or class to modify ? Thanks for help.