Results 1 to 10 of 1859

Hybrid View

  1. #1
    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. #2
    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.

  3. #3
    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.

  4. #4
    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)

  5. #5
    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)

  6. #6
    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.

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    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..
    Of course. It is the customization of that purpose.
    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. #8
    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
    Of course. It is the customization of that purpose.
    Great.. Now how does this address the concerns we've been discussing (the incompatibility issues, etc..)?? IMO there's still the basic issue with how you've addressed these items.. (particularly the "solution" to getting WOZ to work with Ceon URI)
    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.

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

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    Great.. Now how does this address the concerns we've been discussing (the incompatibility issues, etc..)?? IMO there's still the basic issue with how you've addressed these items.. (particularly the "solution" to getting WOZ to work with Ceon URI)
    If it does not have any problem, I want to release it as v1.5.1
    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. #10
    Join Date
    Jun 2004
    Location
    Japan
    Posts
    169
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    Great.. Now how does this address the concerns we've been discussing (the incompatibility issues, etc..)?? IMO there's still the basic issue with how you've addressed these items.. (particularly the "solution" to getting WOZ to work with Ceon URI)
    I downloaded solution of Numinix.
    '\includes\classes\ssu\cores\link.php' included in it overwrites with a same name file of SSU.
    This resembles measures to Ceon URI.
    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)

 

 

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