preset
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_list_categories() doesn’t list categoriesseems like the service provider messed up his data base settings.
Result was that for what ever reason everything but the categories was parsed by wordpress.
restarting the db a couple of times brought it back into shape.
lucky me that other users had similar problems, else it would be hard to prove that the db is corrupt.Forum: Fixing WordPress
In reply to: wp_list_categories() doesn’t list categoriesLooks like the db connection is somewhat corrupt.
As a print statement in taxonomy.php’s function get_terms
outputs the query string. The same query returns tons of categories when run directly in sql.
but $terms = $wpdb->get_results($query);just returns an empty array …Forum: Fixing WordPress
In reply to: wp_list_cats doesn’t display categoriesan additional note:
adding a new category on the edit post page removes all listed categories from the list … the new category is displayed until it is selected.
After saving the post, the category vanishes.Same for the category manager.
The new categories show up in the database.
I am using wp 2.7.1
Forum: Fixing WordPress
In reply to: wp_list_cats doesn’t display categoriesI am using wp_list_categories() but the categories aren’t listed.
They are in the database, though and show up when creating a post.
They don’t show up on the categories manager.Is there any way to debug this?
It worked fine until a server reboot.Any tips are apreciated.
GeorgForum: Fixing WordPress
In reply to: Image uploading WP 2.0marchern,
if you want to drag’n’drop the images to the editor, my solution isn’t the right one for you.
I changed the original source *not* to change the thumbnail to be draged to the editor in the right size.In a previous stage of hacking the file the thumbnail changed its dimensions when choosing ‘use thumbnail’/’use original’.
I think the original version of inline-uploading.php is a mixture of ‘use the pop-up menu’ and ‘drap’n’drop’ the image.
rdg
Forum: Fixing WordPress
In reply to: Image uploading WP 2.0Hello,
I starred a long time at inline-uploading.php and this is my hack:
http://shutdown.preset.de/web-development/2006/01/upload-feature-20-hack/This way the correct pixel sizes are inserted for both thumbnails and original image.
please let me know if it works for you, too!
regards
rdg