docker-lamp icon indicating copy to clipboard operation
docker-lamp copied to clipboard

icons are searched in /usr/share/apache2/icons

Open Antanide opened this issue 5 years ago • 0 comments

if a relative path of /var/www/html starts with "icons", then the content is searched in /usr/share/apache2/icons.

AH00128: File does not exist: /usr/share/apache2/icons/antani.svg, referer: http://localhost:8080/

If replace

 var myIcon = L.icon ({
   iconUrl: 'icons/antani.svg',
   iconSize: [40, 40],
 });

with

 var myIcon = L.icon ({
   iconUrl: 'ico/antani.svg',
   iconSize: [40, 40],
 });

and rename the folder accordingly, then everything works fine.

Antanide avatar Nov 12 '19 22:11 Antanide