dmalloc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Automatic Image wraparound – Possible?Thank you, excellent answers! That works like a charm. You might want to consider enabling something like this in a plugin or making specific hooks for it, as this is a very common feature someone comming from type-setting will request ??
Forum: Fixing WordPress
In reply to: Automatic Image wraparound – Possible?Just to follow up on my own post. I also see things like this:
<div class="post-content">
<p><img src="*" width="179" height="300" alt="" title="" /> My girl isBut even then the wraparound does not happen. This is something that I have seen with many themes, I wonder why?
Forum: Installing WordPress
In reply to: WordPress not working with mysql 5.0-alpha1 ?and on we go with the odd effects.
The original error code:
SQL/DB Error:
[Specified key was too long. Max key length is 500]
ALTER TABLEwp_posts
ADD INDEX (post_name
)
SQL/DB Error:
[Specified key was too long. Max key length is 500]
ALTER TABLEwp_categories
ADD INDEX (category_nicename
)
The one I used which works:
ALTER TABLEwp_posts
ADD INDEX (post_name(166));
ALTER TABLEwp_categories
ADD INDEX (category_nicename(166));
I just double checked. With the steps I mentioned here, the WP install now works without any flaws. The options show in the drop downs now.Forum: Installing WordPress
In reply to: WordPress not working with mysql 5.0-alpha1 ?Ok. Using this statement works:
CREATE TABLE wp_optionvalues ( option_id int(11) NOT NULL, optionvalue tinytext, optionvalue_desc varchar(255), optionvalue_max int(11), optionvalue_min int(11), optionvalue_seq int(11), UNIQUE (option_id, optionvalue(85)), INDEX (option_id, optionvalue_seq) );
Apparenlty the optionvalue(85) vs optionvalue(255) triggers the error.Forum: Installing WordPress
In reply to: WordPress not working with mysql 5.0-alpha1 ?Hello ?? Thank you for you answers but the blog does not work correctly. All drop down fileds which should have some preset values in the Options area are empty. Sometimes errors pop open when I try to set an option, possibly indicating that the table is missing while trying to read the value.