Dle – how to disable all posts shown on main page
Apr 03
You need just run in database in phpmyadmin
update `dle_post` SET allow_main=0 WHERE 1
and all posts would tot beeeing shoen on main page
Apr 03
You need just run in database in phpmyadmin
update `dle_post` SET allow_main=0 WHERE 1
and all posts would tot beeeing shoen on main page
Oct 28
Run this commands in putty at root dir (public_html)
chmod g+w ./backup/ chmod 775 ./engine/data/ chmod 775 ./engine/cache/ chmod 775 ./engine/cache/system/ chmod 775 ./engine/forum/cache/ chmod 775 ./engine/forum/cache/system chmod 775 ./uploads/ chmod 775 ./uploads/files/ chmod 775 ./uploads/fotos/ chmod 775 ./uploads/posts/ chmod 777 ./uploads/posts/thumbs/ chmod 777 ./uploads/thumbs/ chmod 777 ./templates/ chmod 777 ./templates/Default/ find ./engine/cache/ -exec chmod 775 {} \; find ./engine/cache/system/ -exec chmod 775 {} \ ; find ./uploads -type d -exec chmod 777 {} \; find ./uploads -type f -exec chmod 666 {} \; find ./templates -type d -exec chmod 777 {} \; find ./templates -type f -exec chmod 666 {} \; find ./engine/data -type d -exec chmod 777 {} \; find ./engine/data -type f -exec chmod 666 {} \;
or use ftp commands
cache
SITE chmod 775 backup SITE chmod 775 engine/data/ SITE chmod 775 engine/cache/ SITE chmod 775 engine/cache/system/ SITE chmod 775 uploads/ SITE chmod 775 uploads/files/ SITE chmod 775 uploads/fotos/ SITE chmod 775 uploads/posts/ SITE chmod 775 uploads/posts/thumbs/ SITE chmod 775 uploads/thumbs/ SITE chmod 775 templates/ SITE chmod 775 templates/Default/