PLEASE HELP ASAP:
http://ringtalk.com
Categories are not linking to a page with all the posts within that category (link should direct to: http://ringtalk.com/category/uncategorized), instead it is linking to a static page I made called archive.php (not archives.php) and my EventCalendar3 widget is sending the next and previous months to that same archive.php page I created. Clicking on the post title and comments both seem to work perfectly (thankfully).
1. I insalled Wordpress on the root directory of the site (http://ringtalk.com)
2. But then, I moved all content into wordpress folder
3. MOVED (not copied) Index.php and .htaccess
4. Added:
/** Loads the WordPress Environment and Template */
require('./wordpress/wp-blog-header.php');
?>
To the index.php file in the root directory
5. Updated the .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
# Hey-ho let's go!
RewriteEngine On
# Base is the URL path of the home directory
RewriteBase /
# Base goes to WordPress
RewriteRule ^$ /wordpress/index.php [L]
# Skip real files and directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise send it to WordPress
RewriteRule .* /wordpress/index.php [L]
</IfModule>
# END WordPress
I'm at my ropes end here and hope to hear from ANYone as soon as possible with some help. Thanks...