Guides

You are currently browsing articles tagged Guides.

How to recover a dead WordPress site

I discovered this by accident and it worked! I had a blank white page on my local WP test after installing a plugin or maybe another problem, who knows? I could not even login, as the pages were just stuck loading.

Any way if you append your base URL with this “wp-/plugins.php?deactivate-all=true” it allows you to deactivate all plugins from the outside of . I did this and now my is functional again. Of course you get the login screen first, to authenticate the call

Prior to this, I could not get past the login screen even to disable stuff in in the usual way.

The full url call looks like this on my machine. http://localhost/wordpress/wp-admin/plugins.php?deactivate-all=true

Tags: , , ,

Using Mimbo theme

Writing and manging content in Worpress using theme

- Required: 2.3 - theme installed, active and configured. - Image manager plugin installed and configured. - Basic image resizer software such as PhotoFiltre

The theme makes extensive use of front page images. It does this by utilizing the powerful ‘custom fields’ feature to add exclusive images to excepts displayed in the front page of the . There is no auto-resize feature in this process and in order for the page to look presentable, these images need to be correctly prepared and optimized to load quickly and fit into the layout dimensions of the template. Image preparation can be done locally using an ordinary and free image/photo manipulation software such as the gimp or http://photofiltre.free.fr/ In addition, has an excellent browser based image manager http://www.soderlind.no/archives/2006/01/03/imagemanager-20/ that provides all the cropping, resizing, compression and formatting required. We will make extensive use of this tool, as it simplifies the whole process.

NOTE If you are going to use pictures generated from original high quality digital photos or artwork, you do need to add an extra step in the process. High quality images usually provide excellent resolution and dimensions. This is essential for print and artwork display, but is quite unsuitable for website use. A web page has to display images by transferring digital information to your browser. Put simply, the more digital information the image has, the longer it will take to render that image in the browser. Original digital images are often many megabytes in size, which is way too big and would take several seconds to load on a page. Likewise their dimensions are often far to large for the web page template. Many people make the mistake of resizing their images into a smaller dimension, without optimizing the digital data. This means, the images are still too large and render slowly on the page.

Tags: , , ,

How to move a WordPress site

This applies to the within your own webspace, or if you want to move it to another host server. I have read a few versions of how to this and many details have been missed that are important.

Notes

  1. When a you have to consider if you have ever modified (hacked) any core files in

  2. If you have and you want to maintain the functionality you must copy these over to the new installation

  3. stores all user data in the wp-content folder and sub-directories and its database. This means all plugins, , images and other added fies will be in wp-content folder. NOTE. Some plugins DO put files elsewhere. Be aware!

  4. If your file mods/ hacks are in the wp-content folder then carry on as below.

  5. If you have hacked/modified files anywhere else, these must be copied over separately.

  6. If you have no special mods/hacks, simple ignore the above.

Preparation on the old

  1. log into the original as

  2. Deactivate all cache settings and cache plugins. Make sure all cache files are cleared/ deleted.

  3. If you have Askimet installed make sure you delete any spam comments in the moderation queue.

  4. Log in to the FTP account and copy the wp-content folder and config.php to your desktop.

  5. Copy any other files from other locations if they have been modified! (see notes above)

  6. Some plugins are poor at removing their database tables and configs from the database. Login to phpMyadmin and delete any tables that are no longer being used by your existing activated plugins.

  7. Now optimize your database using the cpanel or other utility

  8. Make a database backup, using cpanel, phpmyadmin, db backup, or some other utility.

Tags: , , ,