• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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