Problem apache: rewritemap
Fermé
styllau
-
25 mars 2008 à 00:38
baldo.sebastien Messages postés 1 Date d'inscription mardi 28 avril 2009 Statut Membre Dernière intervention 28 avril 2009 - 28 avril 2009 à 19:23
baldo.sebastien Messages postés 1 Date d'inscription mardi 28 avril 2009 Statut Membre Dernière intervention 28 avril 2009 - 28 avril 2009 à 19:23
A voir également:
- Problem apache: rewritemap
- Apache open office gratuit - Télécharger - Suite bureautique
- Curl apache - Forum Linux / Unix
- Redémarrer apache - Forum Réseau
- Redemarrer apache ✓ - Forum Linux / Unix
- Uwamp apache ne démarre pas ✓ - Forum Créer un site
1 réponse
baldo.sebastien
Messages postés
1
Date d'inscription
mardi 28 avril 2009
Statut
Membre
Dernière intervention
28 avril 2009
28 avril 2009 à 19:23
28 avril 2009 à 19:23
Le RewriteMap utilise stdin/stout pour comuniquer
http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html#RewriteMap
``Keep it simple, stupid'' (KISS), because if this program hangs it will hang the Apache server when the rule occurs.
Avoid one common mistake: never do buffered I/O on stdout! This will cause a deadloop! Hence the ``$|=1'' in the above example...
Use the RewriteLock directive to define a lockfile mod_rewrite can use to synchronize the communication to the program. By default no such synchronization takes place.
Donc attention a bien utiliser stdout ...
http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html#RewriteMap
``Keep it simple, stupid'' (KISS), because if this program hangs it will hang the Apache server when the rule occurs.
Avoid one common mistake: never do buffered I/O on stdout! This will cause a deadloop! Hence the ``$|=1'' in the above example...
Use the RewriteLock directive to define a lockfile mod_rewrite can use to synchronize the communication to the program. By default no such synchronization takes place.
Donc attention a bien utiliser stdout ...