dic
28
2010
Su un sito WordPress protetto da password mediante htpasswd non è possibile caricare files.
Aggiungere questo codice in .htaccess per escludere la protezione solo al caricamento dei files.
# Exclude the file upload and WP CRON scripts from authentication
<FilesMatch "(async-upload\.php|wp-cron\.php|xmlrpc\.php)$">
Satisfy Any
Order allow,deny
Allow from all
Deny from none
</FilesMatch>
no comments | posted in PHP, wordpress
dic
7
2010
Se i contatti di Facebook risultano tutti non in linea con Adium procedere in questo modo:
Cancellare l’account Facebook dalle preferenze di Adium e aggiungerne uno nuovo di tipo Jabber anziché di tipo Facebook:
Inserire come nome utente: nome_utente_facebook@chat.facebook.com
password: la tua password di facebook
UPDATE: ora pare che funzioni normalmente
3 comments | posted in Mac
dic
7
2010
editare il file classes/ps_product_category.php presente sotto administrator/components/com_virtuemart riga 726:
$html .= ‘
<a title=”‘.$catname.’” style=”display:block;’.$style.’” href=”‘. $sess->url(URL.”index.php?page=shop.browse&category_id=”.$category_tmp[$row_list[$n]]["category_child_id"]) .’” ‘.$append.’>’
. str_repeat(“ ”,$depth_list[$n]) . $catname
. ps_product_category::products_in_category( $category_tmp[$row_list[$n]]["category_child_id"] )
.’</a>’;
no comments | posted in Joomla!