Page 1 of 2 12 LastLast
Results 1 to 10 of 1859

Hybrid View

  1. #1
    Join Date
    Jul 2007
    Posts
    36
    Plugin Contributions
    0

    red flag Problem with installation

    I just installed WordPress via a SimpleScript to a directory ("blog") at the root level within my Zen-Cart. It installed perfectly and I followed instructions in regard to the ZC implementation. The blog is working (www.db8zone.com/blog) but my storefront has disappeared. PLEASE HELP - I haven't modified any other files. Is this due to a database error of some kind? WordPress is not using the same database as ZC. Any advice would be greatly appreciated!

  2. #2
    Join Date
    Jul 2007
    Posts
    36
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Disregard - fixed!

  3. #3
    Join Date
    Jul 2007
    Posts
    36
    Plugin Contributions
    0

    Default RSS Built In Stream?

    Hi out there,

    So I finally got WordPress working. I would like to add a built in stream of my blog posts to my homepage (utilizing define pages and define_main_page.php) ... what is the code I need to insert into the HTML?

  4. #4
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: RSS Built In Stream?

    Quote Originally Posted by gingertea View Post
    Hi out there,

    So I finally got WordPress working. I would like to add a built in stream of my blog posts to my homepage (utilizing define pages and define_main_page.php) ... what is the code I need to insert into the HTML?
    You might wanna do a seach on this thread.. This has been asked an answered a few times.. HTH..

  5. #5
    Join Date
    Jan 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    I am getting the following error "Fatal error: Call to a member function add_current_page() on a non-object in /njoy/nezen/includes/autoload_func.php on line 90" I saw a few other posts regarding this issue but I could not find a solution to. Does anyone know of to resolve this issue. Thanks

  6. #6
    Join Date
    Jan 2009
    Posts
    33
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    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.

  7. #7
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On Zencart / Released

    If you read through the support thread you will see that the general consensus on ver 1.4 of WOZ (the latest version) is as follows: It doesn't work, and no one has a clue how to get it to work..

    Quote Originally Posted by ourcollegetown View Post
    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.

  8. #8
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Wordpress On Zencart / Released

    I am using the latest version of Zen Cart and the latest version of WOZ.
    Should be using latest version of zencart, and VERSION 1.3 of WOZ,
    with kiddo's fix...this setup is outlined in this thread,
    few pages back from this one...

  9. #9
    Join Date
    Jan 2009
    Posts
    33
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Ok, I have followed your advice and removed WOZ 4.0 and downgraded to 3.1. Unfortunately, I am back to the same problem and have blank pages again.

    My site is: http://www.OurCollegeTown.net
    Wordpress is: http://www.OurCollegeTown.net/BearZone
    I have kiddos script up and running.

    Interestingly, the post titles do show up on the blank pages.

    http://www.ourcollegetown.net/?main_...ordpress&p=156

  10. #10
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by babyface View Post
    I am getting the following error "Fatal error: Call to a member function add_current_page() on a non-object in /njoy/nezen/includes/autoload_func.php on line 90" I saw a few other posts regarding this issue but I could not find a solution to. Does anyone know of to resolve this issue. Thanks
    I am getting the same error when trying to activate e-commerce plugin. I have my site setup separate and am using sideboxes for blog part. I have not activated zencart with blog sideboxes yet.

    Every time I activate e-commerce from WP admin, my site goes blank with same error code.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 22
    Last Post: 26 Jan 2026, 06:47 AM
  2. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3672
    Last Post: 11 Sep 2025, 05:07 PM
  3. WordPress® for Zen Cart® (wp4zen) [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 109
    Last Post: 1 Dec 2024, 01:36 PM
  4. PurpleShades Support Thread
    By kobra in forum Addon Templates
    Replies: 122
    Last Post: 18 May 2011, 07:18 PM
  5. ZJ Black 2 support thread
    By Liamv in forum Addon Templates
    Replies: 1
    Last Post: 15 Feb 2010, 02:53 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg