Postagens

Mostrando postagens de março, 2010

Mozilla Thunderbird com mensagens integradas ao Ubuntu

Imagem
Que tal receber as mensagens do Thunderbird integradas às do Ubuntu? Use o complemento Mozilla Notification Extensions. 1) Dependências: $ sudo apt-get install libnotify-bin 2) Baixe o complemento Mozilla Notification Extensions : https://addons.mozilla.org/pt-BR/thunderbird/addon/11530?collection_id=6de2ca0b-ad80-d708-a76d-812a4ed04779 OBS: Se você estiver com a versão 3.XX do Thunderbird e o complemento acima for incompatível, baixe a versão beta: http://launchpad.net/libnotify-mozilla/0.1/beta/+download/libnotify-mozilla-0.1.4-beta.xpi 3) Thunderbird: No Thunderbird, Ferramentas > Complementos, botão 'Instalar...' Carregue o arquivo baixado e reinicie o Thunderbird. Pronto!

AUMENTANDO O TIMEOUT DO PHPMYADMIN

SE VOCÊ ESTÁ CANSADO DE TER QUE LOGAR NOVAMENTE TODA VEZ QUE VAI TESTAR ALGO NO PHPMYADMIN DA SUA MÁQUINA DE PRODUÇÃO: ADICIONE O PARÂETRO ABAIXO NA CONFIGURAÇÃO DELE: $ sudo gedit /etc/phpmyadmin/config.inc.php adicione a linha em negrito no local: if (!empty($dbname)) { $cfg['LoginCookieValidity'] = 3600 * 9; // 9 horas /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* Server parameters */ if (empty($dbserver)) $dbserver = 'localhost'; $cfg['Servers'][$i]['host'] = $dbserver; if (!empty($dbport)) { $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['port'] = $dbport; }