File creation mask менял с 022 на 002 - без какого либо эффекта. Права тоже.

нет, root_uploads не менял... все стояло как и раньше, причем раньше работалоSonya wrote: А в конфиге ничего не менял? У меня один раз так было, когда root_uploads забыла с локального на серверный поменять. Час искала, думала свихнусь![]()
Code: Select all
#Path to document root. This should be the directory this file is in.
#e.g. /var/www/localhost
$config['root_path'] = '/home/www';
#Name of the admin directory
$config['admin_dir'] = '**********';
#Where do previews get stored temporarily? It defaults to tmp/cache.
$config['previews_path'] = '/home/www/tmp/cache';
#Where are uploaded files put? This defaults to uploads.
$config['uploads_path'] = '/home/www/uploads';
#Where is the url to this uploads directory?
$config['uploads_url'] = $config['root_url'] . '/uploads';
Code: Select all
order deny,allow
deny from all
#your admin network
allow from ?????????????
# allow files .js in /lib avoiding errors related to js calling e.g. tag {startExpandCollapse}
<Files ~ ".*\.js$">
Order deny,allow
Allow from all
</Files>