Recherche avancée

Médias (91)

Autres articles (45)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (5955)

  • libavutil : add avpriv_open() to open files with close-on-exec flag

    6 août 2013, par Rémi Denis-Courmont
    libavutil : add avpriv_open() to open files with close-on-exec flag
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavutil/file.c
    • [DBH] libavutil/internal.h
  • Anomalie #4668 (Nouveau) : Erreur 500 : failed to open dir : Permission denied

    15 février 2021, par Pierre KUHN

    Bonjour,

    Avec la dernière version de 4.3.0 on bloque à la fin :

    1. <span class="CodeRay"><span class="constant">Fatal</span> error: <span class="constant">Uncaught</span> <span class="constant">UnexpectedValueException</span>: <span class="constant">RecursiveDirectoryIterator</span>::__construct(./docker/database/mysql): failed to open dir: <span class="constant">Permission</span> denied in /<span class="keyword">var</span>/www/html/octoshow/spip_loader.php:<span class="integer">998</span> <span class="constant">Stack</span> trace: <span class="comment">#0 [internal function]: RecursiveDirectoryIterator->__construct('./docker/databa...', 12288) #1 [internal function]: RecursiveDirectoryIterator->getChildren() #2 [internal function]: FilterIterator->rewind() #3 /var/www/html/octoshow/spip_loader.php(998): FilterIterator->rewind() #4 /var/www/html/octoshow/spip_loader.php(928): SL_lister_contenus_superflus(Array, './', Array) #5 /var/www/html/octoshow/spip_loader.php(887): SL_comparer_contenus(Array, './') #6 /var/www/html/octoshow/spip_loader.php(1187): SL_nettoyer_superflus(Array, './') #7 /var/www/html/octoshow/spip_loader.php(1345): spip_deballe_paquet('spip/archives/s...', './spip-v3.2.9.z...', '', 0) #8 /var/www/html/octoshow/spip_loader.php(1462): spip_deballe('spip/archives/s...', 'fichier', '', 0) #9 {main} thrown in /var/www/html/octoshow/spip_loader.php on line 998</span>
    2. </span>

    Télécharger

    Je travail sur docker, les droits rw-rw--- 1 999 999
    Merci

  • Is there a way to open a batch file at a certain line using a command prompt window

    14 août 2024, par Voidmaster01

    Im testing a batch file that Im still in the process of making and I want to open it at line 6 instead of line 1 since ive already run that part of the code. it takes a couple of minutes to run it since im using ffmpeg.

    &#xA;

    this is the first area of the code

    &#xA;

    1 @Echo off&#xA;2 set /p IPath=Enter the Path of the file you wish to remux from (use "Copy as path" option and keep  the Quotations): &#xA;3 set /P M=what is the first letter of the path of your new file?(do not include the semicolon(:))&#xA;4 set /p NewPath=Enter the Path you wish to remux to (must be path minus the directory BUT do not use  Quotations for this)(I also recommend using a single folder to hold the files while remuxing them before sending them  to their separate folders):&#xA;5 ffmpeg -i %IPath%  -c copy -map 0 "%M%:\%NewPath%"&#xA;6 goto :Premiere &amp;:: This command takes inputs from the previous lines and sets up to remux files&#xA;7&#xA;8 :Premiere &amp;:: this command line starts the preferred editor and waits 30 seconds to allow it to start&#xA;9 set /p EDITOR=Enter the .exe file for your prefered editor should look like: &#x27;Adobe Premiere Pro.exe&#x27;:&#xA;10 start "" "%EDITOR%"&#xA;11 echo Starting Process. . . Please Wait&#xA;12 timeout /t 30&#xA;13 tasklist | find /I "%EDITOR%" &amp;:: The next couple of lines test for the editor to see if it opened or not&#xA;14 if errorlevel 1 (&#xA;15      echo could not start process &#xA;16      goto :FailEditor&#xA;17 ) Else (&#xA;18      echo Process completed, next question--->&#xA;19      goto :choice&#xA;20 )&#xA;

    &#xA;

    so instead of starting at line 1 i would like to start at line 6 to bypass the longest section of the code.

    &#xA;

    Im thinking its something along the lines of

    &#xA;

    Start M:\REMUX.bat at line 6

    &#xA;

    however AT is a command to tell a time to start the batch file so im not sure

    &#xA;