
Recherche avancée
Autres articles (100)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (7569)
-
How to install ffmpeg on shared hosting ? [duplicate]
19 mars 2021, par R.H. TasinI am using shared hosting and installed a PHP script there. This script needs FFmpeg (recommended version 3.0+) to work. But I don't know how to install it on shared hosting. I have searched on youtube, they are showing, download the FFmpeg file from ffmpeg.org then set the path inside the script. but that's not working for me. FFmpeg needs to be installed on my server to make this script work.


My server info :


Hosting Package : undefined


Server Name : server


cPanel Version : 92.0 (build 6)


Apache Version : 2.4.46


PHP Version : 7.3.23


MySQL Version : 5.7.33-cll-lve


Architecture : x86_64


Operating System : linux


Shared IP Address : 161.97.101.164


Path to Sendmail : /usr/sbin/sendmail


Path to Perl : /usr/bin/perl


Perl Version : 5.16.3


Kernel Version : 3.10.0-1127.19.1.el7.x86_64


I have tried to run some command VIA terminal of my hosting, but whatever command I type, it says that "command not found".



so now tell me guys, how can I install FFmpeg on my server ?


-
Anomalie #3609 (Fermé) : Problème avec les externals
29 novembre 2015, par Franck DalotBonjour
Php 5.4.45
Installation en MySQL
SPIP 3.1.0-rc [22601]Si j’ajoute dans les dépôts de spip
http://files.spip.org/externals/archives_externals.xmlEn spip 3.1, il ne trouve que 3 plugins sur 8 (http://zone.spip.org/trac/spip-zone/browser/archivelist_externals.txt)
Ils trouvent bank, video_accessible, et markdown
A savoir qu’avant que je mette le dernier tag concernant markdown, spip ne trouvais même pas markdown
Donc il semble que au moment de l’ajout du dépôt il faut qu’archivlist_externals soit à jour avec les derniers tag
Aucune idée si SVP propose au moins les mises à jours pour ceux qui ont les anciennes versions.A savoir qu’en SPIP 3.0.21 [22462], spip me trouve 7 plugins sur 8
Il manque juste : externals/github/hal/tags/v0.3.0/ ;halDans les deux cas, SVP ne trouve pas tous les plug.
Il y a une différence de comportement entre spip 3.0 et 3.1
Franck -
Evolution #3638 (Nouveau) : Utiliser la rechercher Fulltext par défaut pour le critère {recherche}
7 janvier 2016, par Gilles VINCENTSuite à la discussion entammée sur spip-dev, je suggère d’utiliser la recherche Fulltext par défaut, au lieu des REGEXP actuelles
http://thread.gmane.org/gmane.comp.web.spip.devel/66780Par défaut, recherche génère des requêtes des type REGEXP, ce qui n’est utile que si des utilisateurs font des recherches avec des expressions régulières, ce qui n’est pas le cas. Depuis le commit r21697 les tables ont installées par défaut au format MyISAM (demande #2727). SPIP gagnerait donc à utiliser les recherches en Fulltext.
Analyse détaillée du problème faite par Remi (root@lautre.net) :
Le problème c’est que ce type de requête est généré dès lors qu’il y a un
espace dans la recherche et les requêtes REGEXP n’utilisent pas les index.Donc ça ne concerne pas que les utilisateurs qui recherchent des
expressions régulières.Pour une recherche aussi bête que "chercher un mot" ça recherche
REGEXP sur chaque colonne de la table
spip_articles. Evidemment ça renvoie tous les articles contenant "un".Un exemple particulièrement inefficace : 51s pour faire une recherche sur 2
mots sans avoir la certitude que les 2 mots ne s’y trouvent.- Query_time : 51.073814 Lock_time : 0.018906 Rows_sent : 16363 Rows_examined : 36816
SELECT t.id_article, t.surtitre, t.titre, t.soustitre, t.chapo, t.texte,
t.ps, t.nom_site, t.url_site, t.descriptif FROM `xxxxxx`.spip_articles AS t
WHERE t.surtitre REGEXP ’Etats unis|Etats|unis’ OR t.titre REGEXP ’Etats
unis|Etats|unis’ OR t.soustitre REGEXP ’Etats unis|Etats|unis’ OR t.chapo
REGEXP ’Etats unis|Etats|unis’ OR t.texte REGEXP ’Etats unis|Etats|unis’
OR t.ps REGEXP ’Etats unis|Etats|unis’ OR t.nom_site REGEXP ’Etats
unis|Etats|unis’ OR t.url_site REGEXP ’Etats unis|Etats|unis’ OR
t.descriptif REGEXP ’Etats unis|Etats|unis’ ;Ici, ça me renvoie les articles qui contiennent "punissons",
"réunis".A ce niveau, un bête like me met "que" 5s :
SELECT * from (select *, concat( t.surtitre, t.titre, t.soustitre,
t.chapo, t.texte, t.ps, t.nom_site, t.url_site, t.descriptif) search from
spip_articles t) s WHERE s.search like ’%unis%’ or s.search like
’%Etats%’ ;Mais honnêtement 5s, ce n’est pas non plus acceptable.
Mais s’il vous faut mettre un truc par défaut autre que du fulltext,
utilisez LIKE sur la chaine à rechercher. Ca ira plus vite et ça vous
renverra des résultats plus cohérents.Remi