Update Dynamic Host’s IP at NOIP.ORG
To update IP address for NOIP.ORG’s hostname use following command at terminal. curl “http://username:[email protected]/nic/update?hostname=mylocalhostname.noip.me&myip=10.0.1.173”
Theres Light At The End Of Every Tunnel, Keep Moving

To update IP address for NOIP.ORG’s hostname use following command at terminal. curl “http://username:[email protected]/nic/update?hostname=mylocalhostname.noip.me&myip=10.0.1.173”

For setting up new hostname with WordPress database is required while moving site to new hostname. For this following SQL commands. In following example we are moving site with hostname dev.example.com to hostname www.example.com. UPDATE wp_options SET option_value = REPLACE(option_value,’http://dev.example.com’,’http://www.example.com’); UPDATE wp_postmeta SET meta_value = REPLACE(meta_value,’http://dev.example.com’,’http://www.example.com’); UPDATE wp_posts SET guid = REPLACE(guid,’http://dev.example.com’,’http://www.example.com’);

Get content with specified number of characters [php] [/php]

Use following commands for updating WordPress directory permissions chown -R username:workgroup . find . -type d -exec chmod 775 {} \; find . -type f -exec chmod 664 {} \;

Use function wpautop to format text with line with html content. It changes double line-breaks in the text into HTML paragraphs [php] [/php]