Chris
My feedback
8 results found
-
23 votes
-
4 votes
-
3 votes
-
7 votes
Thank you for your input! We will consider this functionality in upcoming releases if it is popular. Everyone, please continue voting for this feature if you consider it important.
—
IG -
1 vote
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular. Everyone, please continue voting for this feature if you consider it important.
—
IGAn error occurred while saving the comment -
3 votes
-
10 votes
Currently, only major updates can be scheduled as described in https://support.plesk.com/hc/en-us/articles/12377016862103-How-to-manage-date-and-time-for-Plesk-autoupdates- and the forum thread https://talk.plesk.com/threads/update-times.355417/. System package updates and minor updates are not affected.
This feature asks to also provide a setting where sytsem package updates and minor Plesk updates can be scheduled. This is a valid request. We will consider this functionality in upcoming releases if it is popular. Everyone, please continue voting for this feature if you consider it important.
-- PD
Chris supported this idea ·An error occurred while saving the comment Chris commentedToday we had a short MySQL failure, because of an update. It would be great if there would be a Option in Plesk settings to select a timeframe when updates should be done.
-
708 votesChris supported this idea ·
Here is the command to get the list of allocated disk space for CLI
RESELLER="username_of_reseller"
plesk db -Ne "select id from clients where parent_id in (select id from clients where login = '$RESELLER') or login = '$RESELLER'" > /tmp/$RESELLER.CLIDS cat /dev/null > /tmp/$RESELLER.SUBS; cat /tmp/$RESELLER.CLIDS | while read CLID; do plesk db -Ne "select name from domains where cl_id=$CLID and webspace_id=0" >> /tmp/$RESELLER.SUBS; done cat /dev/null > /tmp/$RESELLER.DUSAGE; cat /tmp/$RESELLER.SUBS | while read SUB; do plesk bin subscription --info $SUB | egrep "Domain name:"\|"Disk space limit:"\|"Size:"\|"Owner's contact name:" >> /tmp/$RESELLER.DUSAGE; echo "---------------------------" >> /tmp/$RESELLER.DUSAGE; done; echo "Stats file: /tmp/$RESELLER.DUSAGE"; cat /dev/null > /tmp/$RESELLER.SUBS; cat /tmp/$RESELLER.CLIDS | while read CLID CLLOGIN; do plesk db -Ne "select id, name from domains where cl_id=$CLID and webspace_id=0" >> /tmp/$RESELLER.SUBS; done >> /tmp/$RESELLER.SUBS /tmp/$RESELLER.disk_space; cat /tmp/$RESELLER.SUBS | while read SUBID SUBNAME; do NEWVAL=`plesk db -Ne "SELECT round(value/1024/1024/1024) FROM Limits WHERE limit_name = 'disk_space' AND id = (SELECT value FROM SubscriptionProperties WHERE name = 'limitsId' AND subscription_id = (SELECT id FROM Subscriptions WHERE object_id = (SELECT id FROM domains WHERE id = $SUBID)))"`; echo -e "[i] $SUBNAME: $NEWVAL GB"; echo $NEWVAL >> /tmp/$RESELLER.disk_space; done