9114619
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media Library ImportFortunatley, I have a friend that is comfortable with MySQL command, so he help me out by suggesting this command below:
update $tablename set $field=replace( $field, '/oldfolder/' , '/newfolder/')Of course I needed to do this for 3 tables, which were wp_options, wp_postmeta and wp_posts, but it worked!
Forum: Installing WordPress
In reply to: “wp_categories’ doesn’t exist” error in database wp 2.3i found this great explanation here:
just need to edit theme templates a little bit by replacing 3 stuffs:* cat_ID –> term_ID
* categories –> terms
* cat_name –> nameTHIS IS EXACLY THE KIND OF THING WE NEED IN THE DOCUMENTATION OF WORDPRESS 2.3.1… I can’t believe this is the only place (asside from that original blog post) where it’s talked about! You change WP at it’s CORE and fail to mention simple name changes?! WOW…
Forum: Fixing WordPress
In reply to: post_category not being updatedYeah… in two years when you’ll notice this message, I need it NOW! ;_;
Forum: Fixing WordPress
In reply to: Atom / RSS Feed problem since WP 2.0Come on… Anyone?
Forum: Fixing WordPress
In reply to: Dropdown Fix?No being able to control the
<select>using thedropdown_cats()was stupid to begin with. I don’t understand why WordPress isn’t constant in his flexibility (thewp_get_archives()is a perfect example).