
Recherche avancée
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (8887)
-
Delphi : how to capture COLORED output of the CONSOLE application ?
22 juin 2013, par John SmithI saw several way to capture the output of the started console application. But all they were "monochrome" solution, for example FFMPEG may produce coloured output. How to catch the color ?
-
Anomalie #3221 (Nouveau) : Sélecteur de rubrique Ajax
2 juin 2014, par Eric CamusBonjour,
SPIP 3.0.16 de base sans aucun plugin.
Contrairement à ce qui est écrit en commentaire avant la fonction "selecteur_rubrique_ajax" :
" * la verification est faite a l’arrivee des donnees (Fil)", le déplacement d’un article par un administrateur restreint de sa rubrique vers une rubrique ou il n’a pas les droits est parfaitement fonctionnel, seul le déplacement d’une rubrique n’aboutit pas.Conclusion : un administrateur restreint peut écrire des articles publiés partout !!!
On en parle aussi ici : http://core.spip.org/issues/2523
Seule solution pour éviter ce "bug de sécurité" : mettre "define(’_SPIP_SELECT_RUBRIQUES’,100000) ; /* mettre 100000 pour desactiver ajax */" dans "mes_options.php".
-
cannot execute cmd.exe in server
30 novembre 2012, par LynxI use ffmpeg to grab a thumbnail from video file. To run the, the code need to call the cmd.exe from
process.Start()
. But when the code deployed in server, there is no thumbnail created and of course the thumbnail destination folder is set to read/write permission.
So i assume it not authorized to access/execute the cmd.exe in server(shared server), after googled the problem.
But i still cannot find a solution on this.
Or maybe can i just copy the cmd.exe from my local machine and and include it web app so i can run it from the cmd.exe that i copied not from server cmd.exe. If this would work, how to do it ?string thumbargs = "-i \"" + videofile + "\" -s 60*25 -ss 00:00:00 -vframes 1 -f image2 \"" + thumbname + "\"";
Process process = new Process();
process.StartInfo.FileName = Server.MapPath("~\\ffmpeg\\bin\\ffmpeg.exe");
process.StartInfo.Arguments = thumbargs;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.CreateNoWindow = true;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
try
{
process.Start();
//string output2 = process.StandardError.ReadToEnd();
//process.WaitForExit();
if (process != null)
{
process.Close();
}
}
catch(Exception ex)
{
this.lblMessage.Text = ex.Message.ToString();
}