Firefox
De Bricosoft.
Le renard qui a le feu au cul part de plus en plus en couille mais est toujours bien pratique.
Sommaire |
[modifier] Désactiver les suggestions dans la barre d'adresse
about:config
Dans le filtre, saisissez la clé :
browser.urlbar.maxRichResults
Modifiez la valeur, 0 pour désactiver.
[modifier] Désactiver la demande intempestive du certificat SSL client / stop client certificate popup annoyance
about:config
Dans le filter, la clé :
security.default_personal_cert
Puis modifier la valeur
Ask Every Time
en :
Select Automatically
[modifier] update.locale file doesn't exist in either the XCurProcD or GreD directories
Dans firebug : update.locale file doesn't exist in either the XCurProcD or GreD directories ... blabla blabla ...
sudo touch /usr/lib/firefox-3.X.X/update.local
Plus d'erreur ! C'est Lesieur.
[modifier] prefetch
Le protocole HTTP autorise ce genre de nouveau lien :
<link rel="prefetch" href="/images/big.jpeg">
Va précharger une grosse image
<link rel="prefetch" href="http://bricosoft.com">
Pour un site.
[modifier] cache
Le cache rend fou c'est connu, les problèmes de caches sont la cause première de dépression chez le développeur web.
En hypertext markup language :
<meta http-equiv="pragma" content="no-cache" /> <meta http-equiv="cache-control" content="no-cache, must-revalidate" /> <meta http-equiv="expires" content="0" /> <meta http-equiv="last-modified" content="" /> <meta http-equiv="cache" Content="no store">
Avec problème d'hygiène personnelle :
if ( isset($HTTP_USER_AGENT)) { $sUa= $_SERVER['HTTP_USER_AGENT']; } else { $sUa= getenv("HTTP_USER_AGENT"); } if ( preg_match('#MSIE [56789]#i', $sUa) { $cache= ", pre-check=0, post-check=0, max-age=0"; } else { $cache= ''; } $now = gmdate('D, d M Y H:i:s') . ' GMT'; header("Expires: $now"); header("Last-Modified: $now"); header("Cache-Control: no-cache, must-revalidate".$cache); header("Pragma: no-cache");
En plus bourrin :
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache");
Les explications sur l'encyclopédie.
[modifier] Désactiver IPv6
Dans about:config mettre :
network.dns.disableIPv6
à true
[modifier] about:about
about:about donne la liste des about(à propos) :
List of About pages
- about:about
- about:appcache-internals
- about:blob-internals
- about:view-http-cache
- about:credits
- about:dns
- about:flags
- about:gpu
- about:histograms
- about:memory
- about:net-internals
- about:plugins
- about:stats
- about:sync-internals
- about:tasks
- about:tcmalloc
- about:terms
- about:version
- about:sandbox
For Debug
The following pages are for debugging purposes only. Because they crash or hang the renderer, they're not linked directly; you can type them into the address bar if you need them.
- about:crash
- about:kill
- about:hang
- about:shorthang
- about:gpucrash
- about:gpuhang
[modifier] Liens
- Les RC http://www.mozilla.com/en-US/firefox/all-beta.html
- Les nightlies : http://nightly.mozilla.org/

