Page 18 of 186 FirstFirst ... 816171819202868118 ... LastLast
Results 171 to 180 of 1859
  1. #171
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by Dhaya View Post
    Hi..

    I have installed wordpress in root diractory and zencart in a folder of same root directory. I didnt get the idea to integrate both. Please anyone explain me..

    thanks,

    Dhaya
    http://www.s-page.net/products/62.html
    WordPress Zencart Module from above url..
    To integrate, wordpress and zencart should be in same
    directory/folder and use same database

  2. #172
    Join Date
    Jun 2007
    Location
    India
    Posts
    15
    Plugin Contributions
    0

    help question Re: Wordpress On Zencart / Released

    Hi,

    Thanks i got it. I installed all the files in same folder but how can i install wp_archives and wp_cats in Layout Boxes Controller? it shows error when i enable those two in layout boxes..

    It doesn't look like you've installed WP yet. Try running install.php.

    But i installed wordpress already. where i did mistake?

    dhaya

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

    Default Re: Wordpress On Zencart / Released

    how can i install wp_archives and wp_cats in Layout Boxes Controller?
    These files are of secondary importance and only allow for
    sidebox integration.. best to wait until wordpress mod is
    installed correctly
    It doesn't look like you've installed WP yet. Try running install.php.
    But i installed wordpress already. where i did mistake?
    Suggest you read previous posts on this thread, from past couple of days, by myself and member, hollydoodledesigns..he had same problem
    but fixed it with my help..

  4. #174
    Join Date
    May 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hi all - this mod looks great, I wish I could get it to work. Can anyone post some instructions that make sense? I'm on my 7th install and am still having problems with (I think) the wp-config.php - and the mysterious wordpress-config.php in (/includes/extra_configures). Should these files be the same?

    And what is ABSPATH and how do we define it properly? I believe this is the cause of most of the errors about missing files and functions.
    Do what thou wilt shall be the whole of the Law.
    www.occultsupplies.co.uk
    Love is the law, love under Will.

  5. #175
    Join Date
    May 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released


    Aaarrrgghhh!

    HELP!!!

    I've been working at this for an entire week and I am going insane - virtually no progress.

    This is harder than getting Paypal to work.

    PLEASE - someone with some knowledge of this mod - I BEG OF YOU - post a working set of files with instructions that make sense.
    Do what thou wilt shall be the whole of the Law.
    www.occultsupplies.co.uk
    Love is the law, love under Will.

  6. #176
    Join Date
    Apr 2007
    Posts
    117
    Plugin Contributions
    1

    Default Wp_Sideboxes to show only after login

    Here is the link to my original post. I am having a little difficultly with this. http://www.zen-cart.com/forum/showthread.php?t=69300

    From what I have been told, the side box .php files for this mod are from an older ver of ZC. Is there a simple way to make the WP side boxes only visible after someone has logged in? It has been suggested that I rewrite the code for the sideboxes. I am not a programmer and my boxes work fine other than being there all the time.

    This php file is from the Wordpress on Zencart Mod.

    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2004 The zen-cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | license AT zen-cart DOT com so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+

    require($template->get_template_dir('tpl_wp_archives.php',DIR_WS_TEM PLATE, $current_page_base,'sideboxes'). '/tpl_wp_archives.php');

    $title = BOX_HEADING_WP_ARCHIVES;
    $left_corner = false;
    $right_corner = false;
    $right_arrow = false;
    $title_link = false;

    require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
    ?>

    Is there some code simular to:

    // test if box should display
    if (!$_SESSION['customer_id']) {
    $show_featured= false;
    } else {
    $show_featured= true;
    }

    That would allow the same results? I have looked at other sideboxes and I can see the differences in the styles that the code were written in. However, they are very different in the way the work. At least to me.

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

    Default Re: Wordpress On Zencart / Released

    Wp_Sideboxes to show only after login.......

    Code:
    //Comment in next line if only registered members can view this sidebox 
    //if ($_SESSION['customer_id'] != '') 
      require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
    should do what you require..remove the two forward slashes
    before
    Code:
    if ($_SESSION['customer_id'] != '')

  8. #178
    Join Date
    Jun 2007
    Location
    India
    Posts
    15
    Plugin Contributions
    0

    help question Re: Wordpress On Zencart / Released

    Hi Misty,

    I got everything fine in sidebox i.e WP category,pages, archives and links. I replaced my old database(WP) with this integrated WP database. The category,links lists well in sidebox. But i cant able to get the posts in content area. I dont know how to get the post content when user clicks category. did i miss any configuration? . Post content are in WP database.

    regards,

    Dhaya

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by Dhaya View Post
    Hi Misty,

    I got everything fine in sidebox i.e WP category,pages, archives and links. I replaced my old database(WP) with this integrated WP database. The category,links lists well in sidebox. But i cant able to get the posts in content area. I dont know how to get the post content when user clicks category. did i miss any configuration? . Post content are in WP database.

    regards,

    Dhaya
    Have you installed zencart wordpress mod, or are trying to integrate
    an existing version of standalone wordpress install?
    Url of your site is???

  10. #180
    Join Date
    Jun 2007
    Location
    India
    Posts
    15
    Plugin Contributions
    0

    help question Re: Wordpress On Zencart / Released

    Hi,

    I have installed WP separately.
    site url is http://ciscodeals.com/routers/

    am confused where to get post pages.. Help me..

    Dhaya

 

 

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3662
    Last Post: 30 Apr 2025, 04:14 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR