Page 8 of 186 FirstFirst ... 6789101858108 ... LastLast
Results 71 to 80 of 1859
  1. #71
    Join Date
    Jan 2007
    Posts
    35
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    skunkworx,

    take a look at a HOWTO I posted here: http://n0tablog.wordpress.com/howtos...t-integration/

    BTW, I am CERTAIN that it is mentioned earlier in this thread.

    Good luck!

    A>

  2. #72
    Join Date
    Jun 2006
    Posts
    111
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    I'm sure I'm missing something very obvious here, but I can't seem to figure out how to find the index page of wordpress - does this exist? On a regular wordpress install there's an index page that displays all of the latest posts regardless of category, but on my Zen install I can only seem to bring up the various category pages through the sidebar. I'd like to be able to link to the blog itself from other sites, not just specific categories. Is there a way to do this?

    Here's my site: http://dichroicjewelry.net/glass/

  3. #73
    Join Date
    Mar 2005
    Posts
    99
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by andrabr View Post
    skunkworx,

    take a look at a HOWTO I posted here: http://n0tablog.wordpress.com/howtos...t-integration/

    BTW, I am CERTAIN that it is mentioned earlier in this thread.

    Good luck!

    A>
    thanks mate..im sure its a great help to some...but its too much editing for me...is there a way to just make a contrib to do this?

    looks like theres no hope for a FAQ in zencart for me...

    the ''actual'' faq contrib doesnt work...sigh..

  4. #74
    Join Date
    Jan 2007
    Posts
    35
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by skunkworx View Post
    thanks mate..im sure its a great help to some...but its too much editing for me...is there a way to just make a contrib to do this?

    looks like theres no hope for a FAQ in zencart for me...

    the ''actual'' faq contrib doesnt work...sigh..
    Sorry. You will have to plead with Hira (author of the original contrib) - I am not going to fork the code, since I am NOT qualified to support it.

    A>

  5. #75
    Join Date
    Feb 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Just a quick note referring to these instructions: http://n0tablog.wordpress.com/howtos...t-integration/

    it says:
    "includes/extra-configures/wordpress.php supplied in the integration package seemed to contain a copy of the standard wordpress configuration files. The problem with having a copy is that when (not if) you change the originals you got to remember to change the copy as well."
    This is not a problem in unix systems, just create a symbolic link from the original conf files to the place where a mirrored copy is needed. this way you'll only have one set of conf-files to worry about. ln -s /originaldir/originalfile.php /destdir/originalfile.php will do the job just fine.

  6. #76
    Join Date
    Jan 2007
    Posts
    35
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by pi-xi View Post
    Just a quick note referring to these instructions: http://n0tablog.wordpress.com/howtos...t-integration/

    it says:


    This is not a problem in unix systems, just create a symbolic link from the original conf files to the place where a mirrored copy is needed. this way you'll only have one set of conf-files to worry about. ln -s /originaldir/originalfile.php /destdir/originalfile.php will do the job just fine.
    pi-xi, you do have a point. It's my purist side that prefers to include the original the way I did.

    The only other reason to do it the way I did is that there is a check for wordpress presence further down, and I am not sure how it will work out with a broken symbolic link.

    This discussion probably belongs on the HOWTO page - closer to the actual document...

  7. #77
    Join Date
    Mar 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hi,

    I'm no php whizz and am struggling with both the integration using Hira's guide and the NOT a Blog guide.

    I thought I had done it all and then I found I can access the Zen-Cart admin but everything on the home page and WP-Admin page is now blank.

    Any ideas?

    I am trying to make Zen-Cart and WP work with the N.Design Studio theme as used on s-page.net.

    Can anybody advise what it might be?

    My url is:

    http://www.freeinternetguides.com/


    Does anyone have an install set of Zen-Cart 1.3.7/WP2.0.x (can't use 2.1) and the N.Design Studio theme that can be modified and used. Maybe that would be quicker for me as I'm stumped and want to get the site up and not spend time learning php.
    Regards, David[B]

  8. #78
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released ***SOLVED***

    Quote Originally Posted by TrinitySEO View Post
    I went to the database then wp_options table. Changed siteurl and home field. Problem solved.
    It may have been settled. You can change it with a management screen of WordPress(TOP>Options).
    http://www.s-page.net/en/
    I develop the module which Zen-Cart integrates with other CMS. (WordPress and XOOPS)
    It may be funny English, but please endure it. (I am weak in English)

  9. #79
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by Pablosan View Post

    Am I supposed to add this the zens stylesheet.css ?

    or style.css from wordpress?

    Confused. I'm having a hardtime getting this thing to squeeze in between the two columns.
    Please add this zens stylesheet.css.
    http://www.s-page.net/en/
    I develop the module which Zen-Cart integrates with other CMS. (WordPress and XOOPS)
    It may be funny English, but please endure it. (I am weak in English)

  10. #80
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by misty View Post
    Wordpress (where wordpress is installed in its own folder) on main page via admin/define main page is
    Code:
    <?php
    require('./wordpress/wp-blog-header.php');
    ?><?php
    $posts = get_posts('numberposts=1'); // change to whatever number of posts to show
    foreach($posts as $post) :
    setup_postdata($post);
    ?>
    <h2><strong><font color="red"><?php the_title(); ?></font></strong></h2>
    <?php the_date(); ?>
    <?php the_content(); ?><hr />
    <?php endforeach; ?>
    Thank you for support.
    I want to introduce this method in readme.
    http://www.s-page.net/en/
    I develop the module which Zen-Cart integrates with other CMS. (WordPress and XOOPS)
    It may be funny English, but please endure it. (I am weak in English)

 

 
Page 8 of 186 FirstFirst ... 6789101858108 ... LastLast

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