Réinitialiser le mot de passe d’un utilisateur mediawiki
UPDATE user SET user_password = MD5(CONCAT(user_id, ‘-‘, MD5(‘somepass’))) WHERE user_name = ‘someuser’;
UPDATE user SET user_password = MD5(CONCAT(user_id, ‘-‘, MD5(‘somepass’))) WHERE user_name = ‘someuser’;
You can check and compare sort orders provided by these two collations here: http://www.collation-charts.org/mysql60/mysql604.utf8_general_ci.european.html http://www.collation-charts.org/mysql60/mysql604.utf8_unicode_ci.european.html utf8_general_ci is a very simple collation. What it does -… Read More »utf8_unicode_ci vs utf8_general_ci
apt-get install postfix # Choisir configuration type ‘Site internet’ ////////////////////////// //– etc/postfix/main.cf ////////////////////////// myhostname = bart mydomain = mydomain.com myorigin = $myhostname.$mydomain alias_maps = hash:/etc/aliases… Read More »Configuration de base d’un postfix
Note Creates a grey overlay in background and a modal window in foreground <!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”> <html> … Read More »Create a Lightbox effect only with CSS – no javascript needed (modal window)
# Sur linux pour avoir une interface virtuelle qui tag sur le vlan 2 et attachée à eth0 # Nécessite le package vlan (apt-get install… Read More »Tagging VLAN 802.1Q entre switch CISCO (trunk) et linux
Trabajando con archivos y directorios con Python¶ Listado de archivos en un directorio¶ Para buscar todos los archivos con una extensión, por ejemplo .jpg: import… Read More »Trabajando con archivos y directorios | Python
SI(SIERREUR(TROUVE(“K”;F107); 0); GAUCHE(F107;TROUVE(“K”;F107)-1)*1024;SI(SIERREUR(TROUVE(“M”;F107); 0); GAUCHE(F107;TROUVE(“M”;F107)-1)*1024*1024;SI(SIERREUR(TROUVE(“G”;F107); 0); GAUCHE(F107;TROUVE(“G”;F107)-1)*1024*1024*1024;F107)))
Installation des dictionnaires : – aller dans /usr/share/vim/vim7x/spell/ puis : – wget http://ftp.vim.org/pub/vim/runtime/spell/fr.utf-8.sug – wget http://ftp.vim.org/pub/vim/runtime/spell/fr.utf-8.spl Activation de l’option : :set spl=fr spell Corriger une… Read More »Correction orthographique dans VIM
#allumer les quotas : quotaon -a #éteindre les qutoas quotaoff -a #éditez un quota via l’éditeur par defaut edquota -u user -g group #éditez le… Read More »commandes de gestion des quotas sous Linux
trap “/usr/bin/mycmd; exit 255” SIGINT SIGTERM