• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

Remove favicon.ico default?

R

Riff

Guest
Now that we've upgraded to version 8.1.1, all of our domains have a red flower looking icon for the favicon.ico. I've tried everything I can think of to remove this. On one of the domains, I've replaced it with my own, but it seems to get overridden with this red flower icon. I've added a new default favicon to the skeleton file too.

What is the trick to turning this off?
 
remove them from the Skel directorys..
new install would place it at /var/www/vhosts/.skel/0/httpdocs
/var/www/vhosts/.skel/0/httpsdocs

If this isnt the case, do a locate .skel and you should be able to find it there.
 
try for i in `find . -type f -iname "favicon.ico"` ; do rm -f $i ; done


this will remove all favicon in the folder and below!
 
Back
Top