Quote Originally Posted by lankeeyankee View Post
Something is still not right with a setting. It shouldn't be going to /?main_page=wordpress/?p=226 but to /?p=226. I think that Kiddo's fix might not be needed for the latest wordpress. What happens when you remove that from the wordpress-config file? Are you using an htaccess rewrite rule for wordpress?

lankeeyankee-

This is what's in my wordpress-configure.php file.

<?php
//
// wordpress on zencart by http://www.s-page.net/
//
define ('ABSPATH','/home/divabou/public_html/blog/');
$woz_install=0;
if (file_exists(ABSPATH.'wp-config.php')) {
$woz_install=1;
define('WP_USE_THEMES', true);
$wp_did_header = true;

require_once(ABSPATH.'wp-config.php');
$i=strlen(DIR_WS_CATALOG);
$req=substr($_SERVER['REQUEST_URI'],$i,1);
if($req=='?'){
$_GET['main_page']='wordpress';
}
if (isset($_GET['feed']) && ($_GET['feed'] == 'rss2' || $_GET['feed'] == 'comments-rss2')) {
wp();
gzip_compression();
// require_once('./wordpress/wp-includes/template-loader.php');
require_once(ABSPATH . WPINC . '/template-loader.php');
exit();
}
}
?>
Where do I take the ? out to see what happens.

Also I don't know if I'm using a htaccess to rewrite. How would I kow if I'm using a htaccess to rewrite wordpress