I am using the latest version of Zen Cart and the latest version of WOZ. I have read through the entire forum extensively, and there seems to be a lot of conflicting information and even some technical help for related mods that does not apply to WOZ.
My website is:
http://www.OurCollegeTown.net
The blog address is:
http://www.ourcollegetown.net/BearZone/
I have the mod installed and the sidebar shows up correctly on the zen cart website. However, whenever any of the links are clicked, I get blank pages.
The links appear as:
http://www.ourcollegetown.net/?p=156
Is this the correct format of the links? I noticed that on the websites that work, the links sometimes carry a different prefix: ?main_page=wordpress&p=3
However, on my site, even
http://www.ourcollegetown.net/?main_page=wordpress shows a blank page.
I have the following code in my html_header file:
PHP Code:
<!-- for woz BOF -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php woz_wp_head(); ?>
<!-- for woz EOF -->
I have the following in my Wordpress-config file:
PHP Code:
$woz_install=0;
if (ABSPATH != NULL && file_exists(ABSPATH . 'wp-config.php')) {
$woz_install = 1;
define('WP_USE_THEMES', true);
$wp_did_header = true;
require_once(ABSPATH . 'wp-config.php');
wp();
$i = strlen(DIR_WS_CATALOG);
$req = substr($_SERVER['REQUEST_URI'],$i,1);
if($req == '?'){
$_GET['main_page'] = FILENAME_WORDPRESS;
}
if(is_feed()){
gzip_compression();
require_once(ABSPATH . WPINC . '/template-loader.php');
exit();
}
}
?>
Do you have any idea of how to get the content to show up? I have already tried Kiddos fix, and not noticed any difference. I have since uninstalled it.
Bookmarks