Script to set all domains to unlimited
Hi, to solve this bug, I use this script (in Plesk 10 on Debian):
vhosts="/var/www/vhosts/"
httpdocs="/httpdocs"
find /var/www/vhosts -type d -wholename "*/httpdocs" | while read file;
do
domain_temp=${file%$httpdocs}...