Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (95)

  • 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 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (8897)

  • Revision fb1a8ba35a : Merge "Fix compiler error in vp8/9 decoder test"

    6 août 2015, par Jingning Han

    Merge "Fix compiler error in vp8/9 decoder test"

  • Integrity : Prevent "TypeError : styles is `null`" error in Firefox.

    23 août 2015, par soluml
    Integrity : Prevent "TypeError : styles is `null`" error in Firefox.
    

    This error occurs [only in Firefox] when attempting to retrieve the computed CSS styles of an element that only exists as fallback content (and, ergo, may not be in or attached to the live DOM document.

    Closes #561.

  • nginx +unicorn+rails+"upstream prematurely closed connection while reading response header from upstream" 502 bad gateway error

    13 juin 2015, par Rajesh Raikwar

    I’ve been scratching my head over this 502 gateway error while converting a video(approx 10mb) using ffmpeg. files of less than 2mb works fine
    when I try to upload + convert using webrick ,it works fine.
    I have client_max_body_size 1G set.

    for testing purpose I have added these in nginx conf file

    proxy_connect_timeout 600s;
       proxy_send_timeout    600s;
       proxy_read_timeout    600s;
       send_timeout          600s;

       proxy_buffer_size           32k;
       proxy_buffers               4 32k;
       proxy_busy_buffers_size     32k;
       proxy_temp_file_write_size  32k;

       fastcgi_buffers 8 16k;
       fastcgi_buffer_size 32k;    

    timeout for unicorn is set as
    timeout 300 , in unicorn.rb

    Please help.