WF AQ

Knowledge base

31 Ottobre 2013
di admin@admin
Commenti disabilitati su Bug: quando un cambiamento hardware non si riflette nell’Health Monitor di Plesk

Bug: quando un cambiamento hardware non si riflette nell’Health Monitor di Plesk

When you add a new hard drive and increase available diskspace, add RAM to the server, or replace the CPU with a more powerful one, these hardware changes are not reflected in Health Monitor. The old values of the hardware … Continua a leggere

31 Ottobre 2013
di admin@admin
Commenti disabilitati su Abilita accesso remoto al db MySql in Plesk

Abilita accesso remoto al db MySql in Plesk

Since Plesk 8 MySQL users and databases are created with permissions that allow access to the database from outside. In previous Plesk versions MySQL users and databases are created with permissions that allow to access the database from localhost only. … Continua a leggere

31 Ottobre 2013
di admin@admin
Commenti disabilitati su Aggiungere un contatore di visite degli articoli in WordPress

Aggiungere un contatore di visite degli articoli in WordPress

Nel file functions.php vanno inserite queste due funzioni. /** * Add Most Viewed Post feature via post meta */ function setPostViews ($postID) { $count_key = ‘post_views_count’; $count = get_post_meta($postID, $count_key, true); if($count==”){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, ‘0’); … Continua a leggere