Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (83)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (14967)

  • Connection timed out error for ffmpeg libraries installation

    12 mai 2015, par Kiran Kumar Dash

    I am trying to compile ffmpeg on my centos server. Here is the link I am using as a reference :

    https://trac.ffmpeg.org/wiki/CompilationGuide/Centos

    Here is the command I entered :

    git clone --depth 1 git://source.ffmpeg.org/ffmpeg

    And this is the error message that popped up

    Initialized empty Git repository in /root/ffmpeg_sources/ffmpeg/.git/
    source.ffmpeg.org[0: 2a01:e0d:1:3:58bf:fa76:0:1]: errno=Connection timed out
    source.ffmpeg.org[0: 88.191.250.118]: errno=Connection timed out
    fatal: unable to connect a socket (Connection timed out)

    PLease help why is it coming and what can be done to avoid

  • ffmpeg-php installation on ubuntu 14.10 aws server

    11 août 2015, par Tanny

    I have requirement to install ffmpeg and ffmpeg-php on aws server. I installed the ffmpeg according to the guide given on the ubuntu server group(as I need to install this on ubuntu 14.04). I enabled all the compiled option of ffmpeg, But still I find this error when i fire configure command on terminal.

    ubuntu@ip-172-31-31-166 : /ffmpeg-php-0.6.2$ sudo ./configure
    ....
    ....
    configure : error : ffmpeg shared libraries not found. Make sure ffmpeg is compiled as shared libraries using the —enable-shared option

    I had go through on given post
    [https://vishnulinux.wordpress.com/2011/08/29/ffmpeg-shared-libraries-not-found/]
    Configure the FFmpeg-php with –with-ffmpeg option

    and fire the below command
    ./configure –with-ffmpeg=/usr/local/bin/ffmpeg

    I found the same error. Please help. Thanks in advance.

  • Anomalie #3555 (Nouveau) : Écran de présentation avant l’installation de SPIP en erreur

    27 septembre 2015, par marcimat ☺☮☯♫

    A priori depuis r21974 qui introduit dans la branche 3.1 les modifications de r21881 , l’écran qui s’affiche (minipres) avant l’installation de SPIP est en erreur dès lors que le répertoire tmp/ n’est pas encore accessible en écriture. On obtient :

    Le système a rencontré une erreur lors de l’écriture du fichier tmp/cache/xml/dir_test.php. Veuillez, en tant qu’administrateur du site, vérifier les droits d’écriture sur le répertoire tmp/cache/xml.

    Il semble que ce soit l’analyse des paquet.xml qui demande à écrire dans tmp/cache/xml.
    Le paquet.xml est analysé avec sax, qui veut créer tmp/cache/xml dans la fonction analyser_dtd().

    Un patch serait de remettre la ligne (mais du coup, ça enlève la volonté de r21881) :

    if (!spip_connect()) return false ;
    

    Ou peut être plus sympathiquement, de tester si on peut écrire dans tmp/ en plus

    if (!spip_connect() and !is_writable(_DIR_TMP))
        return false ;
    
    


    ou

    if (!spip_connect() and !sous_repertoire(_DIR_TMP, ’cache’)) 
        return false ;