Page 150 of 186 FirstFirst ... 50100140148149150151152160 ... LastLast
Results 1,491 to 1,500 of 1859
  1. #1491
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    This is uniquely an issue with regards to permalinks. Permalinks work just fine, but I have never had good success getting permalinks to work. I am not fully sure what the issues have been.. (I'm fairly certain that it is not a bug of any sorts, but merely something that I am doing wrong when setting them up.. I'll admit that I never really had time to test to fully understand HOW to get WordPress permalinks to work correctly.. When my time permits, I'll REALLY spend some time testing and researching permalinks to fully understand how to get them to work..

    You'll see that the default feed URL works fine
    ../testsite/blog/?feed=rss2

    I just turned off permalinks on this test site until I can set them up to work correctly across the board.. That said, I think you will agreee that this is still a CLEANER solution than WOZ, and it is how WOZ should be working.. (Hence why I will continue to be of the opinion that your development approach for WOZ is not the right one..)
    Roger.
    I tested, but after all fail in feed.
    I want to examine a cause.
    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)

  2. #1492
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by kburner View Post
    No. I started out with www.burnerbooks.com/blog. As I loaded e-commerce for Word Press I received lots of errors. I went back and forth between WP forum and host..and finally host said it would be better to just have different domain name. Could not get it to work. As soon as I switched to new domain name and reloaded...WP site works with e-commerce.

    Zencart site was fine. After I got WP site working, I have been trying to get zencart sidebox to work. Kim
    Is it that an error happened in WOZ v1.5?
    Please try it by all means if you do not try it.
    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)

  3. #1493
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    Hi kburner
    Quote Originally Posted by hira View Post
    Is it that an error happened in WOZ v1.5?
    Please try it by all means if you do not try it.
    In v1.5, please be careful to there not being includes/extra_configures/wordpress-config.php.
    Please delete it if there is it on a server.
    When there is it, an error may occur.
    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)

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hira View Post
    Hi kburner

    In v1.5, please be careful to there not being includes/extra_configures/wordpress-config.php.
    Please delete it if there is it on a server.
    When there is it, an error may occur.
    Hi Hira,

    She's using the Sideboxes Only version as she wanted to keep her blog separate (not embedded).. Her issue is related to the fact that her blog is on a different domain than her site..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hira View Post
    Roger.
    I tested, but after all fail in feed.
    I want to examine a cause.
    Yep.. I will be examining this as well.. I've never had good luck with getting permalinks to work correctly for the feeds..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hira View Post
    Roger.
    I tested, but after all fail in feed.
    I want to examine a cause.
    While the feed links may not work correctly on my other test site using the Numinix blog embedding (ONLY while permalinks are active), I just tested and permalinks don't seem to work at all with WOZ.. (They also work funny when using the Sideboxes Only version too..)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #1497
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    While the feed links may not work correctly on my other test site using the Numinix blog embedding (ONLY while permalinks are active), I just tested and permalinks don't seem to work at all with WOZ.. (They also work funny when using the Sideboxes Only version too..)
    I succeeded in working of feed!
    I insert the following code just after wp();.

    WOZ v1.5 over: includes/init_includes/init_woz.php
    Other : includes/extra_configures/wordpress-config.php

    Code:
      if ($_GET['main_page'] == FILENAME_WORDPRESS && is_feed()) {
        gzip_compression();
        require_once(ABSPATH . WPINC . '/template-loader.php');
        exit();
      }
    Please try it.
    And I am glad when you feed back.

    -- Postscript --
    When it is an old version, FILENAME_WORDPRESS may not be defined.
    In that case, please add the following.
    Code:
    define('FILENAME_WORDPRESS', 'wordpress');
    Last edited by hira; 23 Mar 2010 at 03:51 PM.
    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)

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hira View Post
    I succeeded in working of feed!
    I insert the following code just after wp();.

    WOZ v1.5 over: includes/init_includes/init_woz.php
    Other : includes/extra_configures/wordpress-config.php

    Code:
      if ($_GET['main_page'] == FILENAME_WORDPRESS && is_feed()) {
        gzip_compression();
        require_once(ABSPATH . WPINC . '/template-loader.php');
        exit();
      }
    Please try it.
    And I am glad when you feed back.

    -- Postscript --
    When it is an old version, FILENAME_WORDPRESS may not be defined.
    In that case, please add the following.
    Code:
    define('FILENAME_WORDPRESS', 'wordpress');
    Because the trackback did not work like feed normally, I changed it on the following code.
    Code:
      if ($_GET['main_page'] == FILENAME_WORDPRESS && ( is_feed() || is_trackback() )) {
        gzip_compression();
        require_once(ABSPATH . WPINC . '/template-loader.php');
        exit();
      }
    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. #1499
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    Hi Hira,

    She's using the Sideboxes Only version as she wanted to keep her blog separate (not embedded).. Her issue is related to the fact that her blog is on a different domain than her site..
    Thanks for replying back DivaVocals...Looks like I will have to give up on this module at this time. Still have a help ticket into my host. Kim

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hira View Post
    I succeeded in working of feed!
    I insert the following code just after wp();.

    WOZ v1.5 over: includes/init_includes/init_woz.php
    Other : includes/extra_configures/wordpress-config.php

    Code:
      if ($_GET['main_page'] == FILENAME_WORDPRESS && is_feed()) {
        gzip_compression();
        require_once(ABSPATH . WPINC . '/template-loader.php');
        exit();
      }
    Please try it.
    And I am glad when you feed back.

    -- Postscript --
    When it is an old version, FILENAME_WORDPRESS may not be defined.
    In that case, please add the following.
    Code:
    define('FILENAME_WORDPRESS', 'wordpress');
    Sounds good, but do permalinks work?? Friendly feed URLs are one thing (though not terribly important IMO) but permalinks working with WOZ would be a really nice thing..


    Quote Originally Posted by DivaVocals View Post
    While the feed links may not work correctly on my other test site using the Numinix blog embedding (ONLY while permalinks are active), I just tested and permalinks don't seem to work at all with WOZ.. (They also work funny when using the Sideboxes Only version too..)
    Thanks Hira for bringing the blog feed URLs on my testsite to my attention.. I turned back on permalinks this morning on my testsite.. after researching and testing this I have come to the conclusion that search engine friendly URLs for blog feeds is not a MUST HAVE or even a NEED to have..

    Even with permalinks on and configured correctly the default feed URLs work PERFECTLY!! IMO this and the permalinks working correctly is more than acceptable.

    I add rules to my robots.txt file to disallow search-engine crawlers from indexing the blog feed anyway (since I want to avoid POSSIBILITY of duplicate content). I will be using an XML sitemap so there isn't any need for web crawlers to index the RSS feeds too. And yes I do understand that the search engine robots can recognize an xml feed page and treat it separately. However, I still prefer to err on the side of caution and tell the robots not to crawl my blog feeds.

    Therefore, since I will be excluding the blog feeds from search engine robots, search engine friendly RSS feed URLs are not a MUST HAVE at all.. So when I display RSS links to my blog feed, the link behind the little RSS chicklet will be pointing to the default blog RSS feed URL (which is JUST fine), and the problem is solved..

    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 

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