Congelar proyecto de symfony
# Se incluye el directorio data de symfony para ejecutar sin necesidad de tenerlo instalado. #(se sincluye a symfony dentro del proyecto) $ symfony project:freeze… Read More »Congelar proyecto de symfony
# Se incluye el directorio data de symfony para ejecutar sin necesidad de tenerlo instalado. #(se sincluye a symfony dentro del proyecto) $ symfony project:freeze… Read More »Congelar proyecto de symfony
Voici comment éditer la sortie standard d’une commande unix avec vim. grep apache2.log | vim –
<?php $file = “ip_data.dat”; $duration = 30*60; //30 minutes $lines = file($file); foreach($lines as $line) { list($ip, $time) = explode(“µ”, $line); if($time > time()–$duration) { $ips[$ip] = trim($time); } } $ip = $_SERVER[‘REMOTE_ADDR’]; if(@array_key_exists($ip, $ips)) { if($ips[$ip] > time()–$duration) { // TRUE $ips[$ip] = time(); $was_here = TRUE; } } else { $ips[$ip] = time(); $was_here = FALSE; } $fp = fopen($file, “w”); foreach($ips as $ip=>$time) { fputs($fp, $ip.“µ”.$time.“\n“);… Read More »filebased ip lock
<input type=“file” onchange=“this.submit()” name=“myfile” /> Note html / javscript
Go to /path/to/phpmyadmin/config.inc.php (or something similar) Change these settings: $cfg[‘Servers’][$i][‘controluser’] = ‘pma’; $cfg[‘Servers’][$i][‘controlpass’] = ‘yourpass’; (don’t forget to give user pma a password otherweise people… Read More »Enable PHPMyAdmin Designer mode (diagrams to show relationships between tables)
DirectoryIndex first_index.html second_index.html third_index.html #if “first_index.html” does not found apache tries to find the next index (“second_index.html”), if the index lists ends apache # gives… Read More »change the folder index / cambiar el indice de una carpeta
#ajouter une route par defaut route add default gw 192.168.0.1 #afficher les routes route -n # supprimer une route route del -net 192.168.0.1/24
1) put in asound.conf : pcm.!default { type plug slave.pcm “surround51” slave.channels 6 route_policy duplicate } 2) restart alsa => sudo /etc/init.d/alsa-utils restart
En en-tête du script, apres le shebang (#!/usr/bin/env python en général, ou #!/usr/bin/python), insérer la ligne suivante afin de forcer l’encodage a utf-8 (car python… Read More »Non-ASCII character when running Python scripts
#1 from django.db import models from django.contrib.auth.models import User, UserManager class CustomUser(User): birthday = models.DateField() activation_key = models.CharField(max_length=255, blank=True, default=”) … Read More »extender auth_user django modificando campos — (aplicando herencia)