I believe when you click on a category it is supposed to show all the posts in that specified category. When i click on a category on my website it just returns a 404 error. here is the website in question. please let me know if you think you could help. it would be greatly appreciated.
what does your htaccess say? Do you know how to "access" it? Copy the code and we'll see what's wrong
Here is my htaccess file. # -FrontPage- IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* <Limit GET POST> order deny,allow deny from all allow from all </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit> AuthName vgstash.com AuthUserFile /home/vgstash/public_html/_vti_pvt/service.pwd AuthGroupFile /home/vgstash/public_html/_vti_pvt/service.grp # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Code (markup):
still looking for help with this problem if anyone is available. Please. I would really like to get the categories working.
Hi BrendanGall, I'll try to help.... In Settings, do you have Permalinks set to "Custom Structure" and did you set a Category Base or Tag Base? Does your host support mod_rewrite? Those are a few possible issues off the top of my head. Your theme uses a “More from this category†module. Is it enabled and configured? I'm not familiar with the module, so I can't help much. It sounds like the Mimbo 2.2 author did something special there. You may want to ask him on his site, which noted that the original Mimbo theme required: "In the “index.php†and “sidebar.php†templates, you will find a series of query_posts functions which refer to specific category ID numbers from my database. Example: <?php query_posts('showposts=1&cat=4'); ?> You will need to change them to reflect the ID numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this process.
i do have permalinks set to custom structure and i did se a category base also. Yes my host supposrts mod-Rewrite or the individual pages wouldnt work either correct? I changed the query posts on the main page. I will check the sidebar now.
I checked sidebar.php and i didnt see anything really. The problem is with the "browse category section". when clicked i want it to go to the page for that category. The only code for the "browse category" section is: <?php wp_list_categories('title_li='); ?> PHP:
I downloaded the theme and found the the authors instructions are accurate, but not clear. In sidebar.php and index.php, you should find the query_post commands. query_posts('showposts=3&cat=2'); You edit the cat=2 to cat=3,5, or whatever categories numbers you want to display posts from. Your Category numbers can be found in your control panel under Manage->Categories. Otherwise you'll get 404 errors.
Did you recently update your wordpress version? If so, please go to the permalinks and again click update/save. A similar issue happened to me as well and that simple thing actually solved it.
Hey BrendanGall, I also had to update my Wordpress install to 2.5 to get the browse categories function to work too, but you still have to enter the cat numbers, but not in the browse categories section (its counterintuitive).
Updated permalinks, still doesnt work. The section in question does not need me to change category numbers. On the right only under the "Browse category" section is a list of categories. I want these categories when clicked to go to a page listing posts in that category. Instead it just returns a 404 error. The only code for the browse category section is as follows. <li><h3>Browse Categories</h3> <ul class="subnav"> <?php wp_list_categories('title_li='); ?> </ul> </li> HTML: I got the change the category id part. I just want when a category specific url is clicked i want it to show the posts that are in that category. http://www.vgstash.com/video-games/cheat-codes/ For example.That is the category for cheat codes and instead of returning the 2 posts that are in the category it returns a 404.
My site threw 404s on the category subposts until I edited the query_post entries. Did you put the category numbers in the query_posts('showposts=3&cat=XX'); codes? You don't need to edit the "Browse category" code. Like I said, its counterintuitive.