Recherche avancée

Médias (91)

Autres articles (59)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (3959)

  • Evolution #4103 (En cours) : Autoriser /local/cache-gd2/ et /local/cache-vignette/ dans robots.txt

    27 février 2018, par jean marie

    Pour fournir les images à la "bonne taille", le plugin Métas+ les redimensionne (cf https://zone.spip.org/trac/spip-zone/browser/_plugins_/metaplus/branches/v1/inclure/metasplus.html#L30 ).
    De fait, les images se retrouvent dans /local/. Le soucis, c’est que /local/ est interdits aux robots par robots.txt (pour des questions de perf je crois), donc Twitter chouinne (cf log ci-dessous) alors que c’est le but.

    Le log du validator ( https://cards-dev.twitter.com/validator ) :
    INFO : Page fetched successfully
    INFO : 35 metatags were found
    INFO : twitter:card = summary_large_image tag found
    INFO : Card loaded successfully
    WARN : The image URL http://www.domaine.net/local/cache-gd2/6b/8d4f9ad77b1817e55de4ff171d8565.png?1515680421 specified by the ’twitter:image’ metatag may be restricted by the site’s robots.txt file, which will prevent Twitter from fetching it.

    Il faudrait autoriser /local/cache-gd2/ et sans doute aussi /local/cache-vignette/ comme ça a été fait pour /local/cache-css/ et /local/cache-js/.

    Voir l’échange sur la liste : https://www.mail-archive.com/spip-zone@rezo.net/msg45211.html

  • Documentation #3972 : template variants and possible bug ?

    6 juillet 2017, par Kamran Mir Hazar

    I have SPIP 3.1.6 [23444].

    On Thu, Jul 6, 2017 at 8:20 PM, <> wrote :

    La demande #3972 a été mise à jour par nico d_.

    Hi,
    which version of SPIP are you using ?


    Anomalie #3972 : template variants and possible bug ?

    Auteur : Kamran Mir Hazar
    Statut : Nouveau
    Priorité : Normal
    Assigné à :
    Catégorie :
    Version cible :
    Resolution :
    Navigateur :

    Hello,
    The following template variants do not work for me :
    I have section number 101, with articles in fa and en languages in it.
    I have also files article.html for the main site’s language which is fa, and
    article.en.html for the en language articles. Both work fine in general. I
    created two other variants to apply articles in section 101 with two
    separate languages. They are : article=101.fa.html and article=101.en.html .
    SPIP ignores these two variants and proceeds article.html for fa language
    articles, and article.en.html for en language articles in section 101, like
    the other sections. I added also article=101.html to see if it works, but
    didn’t.
    I asked this in French and English mailing lists, but couldn’t find any
    solution.
    Thank you
    Kamran

    PS : I tried based of the following article :
    https://www.spip.net/en_article4363.html


    Vous recevez ce mail car vous êtes impliqués sur ce projet.
    Pour changer les préférences d’envoi de mail, allez sur
    http://core.spip.org/my/account

  • FFMPEG : Send Email with output after ffmpeg completes

    13 décembre 2017, par MegaXLR

    I have a VPS running Debian 9 GNU/Linux that transcodes mp4 files, because it’s a cheap single-core server it might take several hours. I want to send an email to myself when it completes with the output from ffmpeg.

    I have tried

    (ffmpeg -i input.mp4 -acodec copy -vcodec copy -y output.mp4 >> ffmpeg.log; cat ffmpeg.log) | mail -s "FFMPEG COMPLETE" email@me.net

    But that left me with the email sending immediatly without body.

    (my SMTP client is Unix Sendmail)