Search the Wiki

Viewing 61 to 70 of 337 items

If you have no idea what you QNAP box is doing

Seen here on the QNAP support forum. Try to access your NAS via SSH On a Mac open up Terminal. ssh admin@192.168.0.6 [change the IP Address to suit] Use your password Type the following commands: (The output of these commands should tell you what is actually happening.) df -h cat /proc/mdstat dmesg | tail -n 50

0

Advanced Custom Fields – Shortcodes

Here’s how it works: [acf field=”{$field_name}”] or: [acf field=”{$field_name}” post_id=”{$post_id}”] or to get a value from an ‘options’ page use this: [acf field=”no_donations_notice” post_id=”option”]

0

Deleting WordPress Comments in Bulk

Run the below query if you wish to bulk delete all the pending comments in wordpress. To run the query select SQL, paste the query and click GO. DELETE from wp_comments WHERE comment_approved = ‘0’ Run the following query if you wish to bulk delete all approved comments in wordpress DELETE from wp_comments WHERE comment_approved  Full Article…

0