guxo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Solution for 2.3 database errors / wp_post2cat does not existI’m sorry if I’m quite boring, but i take 3 month to find my actual template.. so i won’t let anyone take it from me!!!!!!!!!!!!!!!!!
looooool
can i change all old terms with the new table terms?
if i left the wp_category empty what’s going to happen? does my posts disappear? i don’t use the tags system.. bu i still use the categories.. will something with categories system fail?tks for you patience.
Forum: Fixing WordPress
In reply to: Solution for 2.3 database errors / wp_post2cat does not existwhat’s the wp_categories funcionality? what’s used for?
Forum: Fixing WordPress
In reply to: Solution for 2.3 database errors / wp_post2cat does not existi create a table named wp_categories, create a 3 values: cat_id, cat_name and link_count.
the error disappear.
is this getting me troubles in the future?Forum: Fixing WordPress
In reply to: Solution for 2.3 database errors / wp_post2cat does not existhow can i upgrade my theme manualy?
what functions do i need to rename to get my theme compatible with wp2.3?Forum: Requests and Feedback
In reply to: WordPress database error @ 2.3i deactivate all plug-ins, one by one, and the message didn’t disappear
the problematic code is:
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘sidebar_right’) ) : ?>
<h2>Archives</h2>-
<?php wp_get_archives(‘type=yearly’); ?>
<?php
if (wp_version() == ’20’) {
$link_cats = $wpdb->get_results(“SELECT cat_id, cat_name FROM $wpdb->linkcategories”);
}
else {
$link_cats = $wpdb->get_results(“SELECT cat_id, cat_name FROM $wpdb->categories WHERE link_count >= 1”);
}
foreach ($link_cats as $link_cat) {
?><?php } ?>
<?php endif; ?>Forum: Requests and Feedback
In reply to: some errors I got in ver2.3 beta