Schlagwort: wordpress

WordPress: Change User Password manual on mysql prompt

If you don’t want to use Passwords generated by wordpress itself, you can do it manual on a MYSQL Console howto: Login to your Webserver with the Database via encrypted SSH!! Login to the MYSQL Server Conssole with $ mysql -u username -p Enter Password, and change database with mysql>use database-name-of-blog Now Set Password for […]

WordPress: SEO Ranking bad after setting „read more“ tags

After some weeks of cleaning up my blog, i remarked a very bad ranking from under the first 10 on google to nirvana What did i change? saved wp-login with htaccess to non-public set post content with „read more“ buttons Background: Search engine like google wasn’t able to pull content of posts which are cut […]

WordPress: Move Blog to new URL Domain HTTP HTTPS on the MYSQL Console

Info: Today most Search Engines prefer Blogs who are offering „HTTPS“ at the URL for secure direct connects to the Websites but this results a lot of headaches to the Website Developers. To be effective you should know: You have to offer HTTPS beside HTTP You should use a validated Domain Certificate, most Domain Resellers […]

WordPress: RSS Widget Bug builtin Widget (class-wp-widget-rss.php)

Details: If you enable the basic builtin RSS Widget Module and set the RSS Feed URL like http://www.domainname.com/feed/ the widget set the URL only on the little „RSS Icon“ but NOT on the RSS Hyperlink ! The Hyperlink is pulling the Value of $url (www.domainname.com) but not adding „/feed/“ subdir value. Solution: go ../wp-includes/widgets/ edit […]

WordPress: Change Editor Font Size without Plugins

Problem: If you use wordpress and use a high resolution Screen on your Laptop or Workstation the dehault font size is too small. Solution: Edit with: #sudo nano ../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css change value 13 to 16 or 19 at: body { font: 16px/19px Georgia, "Times New Roman", "Bitstream Charter", Times, serif; margin: 10px; color: #000; }

MySQL : Backup and Restore Database without phpmyadmin (commandline)

Problem: phpmyadmin interfaces are slow and often attacked by script kids, if you can don’t use it! Solution: To backup and restore use command line To Backup a database: $mysqldump -u root -p wordpressdb > /backups/wordpressdb-dump.sql [Enter root password] To restore: $mysql -u root -p wordpressdb < /backups/wordpressdb-dump.sql[Enter root password] Remark: this is not recogized […]

WordPress MySQL: Cleanup old revisions old posts old entrys

Problem: If you use wordpress and edit often your posts a high count of old revisions are backuped inside the mysql database: Solution: Login mysql $mysql -u root -p [Enter root password] at mysql command line select wordpress your database mysql>use wordpressdb; [Enter] System echo=Database changed.. delete old backups of posts mysql>DELETE FROM wp_posts WHERE […]

WordPress Bug 2.9 „Your attempt to edit this post:“

Problem: After upgrade to Version 2.9 of WordPress on PHP4 Posts are saved as Draft Error: Message = Your attempt to edit this post: Solution: Install Plugin WP CMS Post Control http://wordpress.org/extend/plugins/wp-cms-post-control/ go Settings Post Control Core disable „Autosave“

Design copyright www.linuxonlinehelp.com - Linux PC & Server Support