На хостинге мы не имеем возможность просматривать директории от самого корня, поэтому каждый раз имеет вот:
Warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/) is not within the allowed path(s): (/var/www/[skiped]:/usr/lib/php:/tmp) in /var/www/[skiped]/modules/dc_gallery/ext.dc_gallery.php on line 423
Warning: mkdir() [function.mkdir]: open_basedir restriction in effect. File(/) is not within the allowed path(s): (/var/www/[skiped]:/usr/lib/php:/tmp) in /var/www/[skiped]/modules/dc_gallery/ext.dc_gallery.php on line 423
Warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/var) is not within the allowed path(s): (/var/www/[skiped]:/usr/lib/php:/tmp) in /var/www/[skiped]/modules/dc_gallery/ext.dc_gallery.php on line 423
Warning: mkdir() [function.mkdir]: open_basedir restriction in effect. File(/var) is not within the allowed path(s): (/var/www/[skiped]:/usr/lib/php:/tmp) in /var/www/[skiped]/modules/dc_gallery/ext.dc_gallery.php on line 423
Warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/var/www) is not within the allowed path(s): (/var/www/[skiped]:/usr/lib/php:/tmp) in /var/www/[skiped]/modules/dc_gallery/ext.dc_gallery.php on line 423
Warning: mkdir() [function.mkdir]: open_basedir restriction in effect. File(/var/www) is not within the allowed path(s): (/var/www/[skiped]:/usr/lib/php:/tmp) in /var/www/[skiped]/modules/dc_gallery/ext.dc_gallery.php on line 423
Я подавил Warning заменой строки 423 строки в modules/dc_gallery/ext.dc_gallery.php
на вот это:
if( !@is_dir($create_path) ) @mkdir($create_path, 0777);
Но, хорошо было бы проверять путь от корня сайта а не от корня сервера. Ввести какую-нить переменную в настройки для этого, или дергать какую-то переменную из ee для проверки.