Chris
My feedback
9 results found
-
3 votes
-
3 votes
-
602 votes
Repeatedly we're seeing questions on when http/3 will be implemented. http/3 is available in the experimental branch of Nginx, called "main line". This is not a branch that is "stable". Plesk only offers stable software versions for the utmost reliability you can get as reliability is much more important than speed. A fast website is of no use if its webserver crashes or the protocol doesn't work as expected in all cases. Plesk does not offer experimental features. The stable version of Nginx that supports http/3 is expected to become available in April 2024. This is when it makes sense for Plesk to also offer http/3.
From articles that foster the hype about http/3, it sounds as if it can increase a website's speed incredibly much. On average, on real website tests by several reknown sources, the acceleration has been seen at around 0.2 to 0.3 s/page, typically around 12…
-
6 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
-
1 vote
-
8 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 commented
Today 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.
-
690 votes
Chris 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