lowspeed2000
Forum Replies Created
-
I updated to 5.6 still same error.
I uninstall wordfence and when I install it again, also did a clean install.
- This reply was modified 7 years, 1 month ago by lowspeed2000.
The table is not there.
and yes there is database privileges.
So you think it’s php?
Forum: Fixing WordPress
In reply to: domain/tag/tagnameActually just solved i had a code that forced it to think that’s its a category so i removed it by checking to see if it’s a tag.
Cheers.
Forum: Fixing WordPress
In reply to: domain/tag/tagnameAny idea ?
Forum: Fixing WordPress
In reply to: domain/tag/tagnamehttps://discovere.binghamton.edu/tag/arra
And https://discovere.binghamton.edu/tag/international
There are 3 posts tagged with arra and 41 posts tagged with international.
Forum: Plugins
In reply to: [Plugin: WordPress Popular Posts] Data Reset after Updatei’m having the same issue.
I dont care about the previous stats that much. But it doesnt seem to populate new statistics.
Any idea how to check what’s going on ?
(Reverting back to the older version is now not working either)
Forum: Themes and Templates
In reply to: Customize how many posts show for each categorymissed this before:
$category = get_the_category();
Forum: Themes and Templates
In reply to: Customize how many posts show for each categoryi ended up doing this:
global $query_string; if ($category[0]->cat_ID==4) query_posts($query_string . '&category_name=cat1&posts_per_page=5'); else if ($category[0]->cat_ID==3) query_posts($query_string . '&category_name=cat2&posts_per_page=5'); else if ($category[0]->cat_ID==5) query_posts($query_string . '&category_name=cat3&posts_per_page=10'); while (have_posts()) : the_post(); ..........
Forum: Themes and Templates
In reply to: Customize how many posts show for each categoryYour method shows all categories plus it break the wp_pagenavi plugin
Forum: Themes and Templates
In reply to: Customize how many posts show for each categoryWell i’m doing something like this before the loop:
query_posts('category_name=features&posts_per_page=5');
It works but next pages show the same stuff the the first page shows …
Any idea why ?