1 résultat
taggé
plugin
Shaarli Image Upload Plugin
This plugin for Shaarli allows users to upload an image file when sharing a link. The image is stored in the data/images directory, and a link to the image is automatically prefilled in the text content dialog.
:warning: n'accepte pas les " " (espace
) dans les noms de fichiers. À remplacer par le caratère en UTF8 %20
Ne marche pas par défaut sur ce shaarli. J'ai ajouté les lignes suivantes dans le fichier .htaccess
dans le dossier data\images
:
<IfModule version_module>
<IfVersion >= 2.4>
Require all denied
<FilesMatch "\.(gif|jpe?g|png|webp)$">
Require all granted
</FilesMatch>
</IfVersion>
<IfVersion < 2.4>
Allow from none
Deny from all
<FilesMatch "\.(gif|jpe?g|png|webp)$">
Allow from all
</FilesMatch>
</IfVersion>
</IfModule>
<IfModule !version_module>
# Assume Apache version >= 2.4
Require all denied
<FilesMatch "\.(gif|jpe?g|png|webp)$">
Require all granted
</FilesMatch>
</IfModule>
September 25, 2024 at 11:29:15 AM GMT+2
*
FILLER