• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Hotlink Protection in Plesk panel

nijina

New Pleskian
I know that Plesk provides an option to protect the websites from hotlinking through Plesk panel. But I need to enable this for all domains. I was writing a script to do the same but unfortunately I was not able to complete. To complete the same I need to have a MySQL query or a file which contains the complete list of domains and its associated document root. I know that the below command will provide the list of domains but I need the document root associated with these domains.


mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa -Ns -e "select name from domains"


Any help will be highly appreciated.
 
If you are on PLesk 11.5, do
# plesk db "select d.name, h.www_root from domains d, hosting h where h.dom_id = d.id;"
 
for older versions just replace "plesk db" with "mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa -Ns -e" like you did in the first post of the thread :)
"plesk db" is a convenience alias
 
Back
Top