Page 173 of 186 FirstFirst ... 73123163171172173174175183 ... LastLast
Results 1,721 to 1,730 of 1859
  1. #1721
    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 MeeM View Post
    Thanks DivaVocals. Which Numinix blog embedding solution are you referring to?
    Don't have the link off the top of my head (not at home right now).. but search his site for "WordPress" or search THIS thread for "Numinix" and the link is posted there..
    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.

  2. #1722
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    I wish i found this link before i used WOZ.

    Here it is:

    http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/

  3. #1723
    Join Date
    Aug 2008
    Posts
    333
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hello all, I just loaded the sideboxes only mod. I would only like to show recent posts. How do I prevent the other pieces(archives, etc.) from showing?

  4. #1724

    Default Re: Wordpress On Zencart / Released

    great right i want

  5. #1725
    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 wagnerguy View Post
    Hello all, I just loaded the sideboxes only mod. I would only like to show recent posts. How do I prevent the other pieces(archives, etc.) from showing?
    If I recall there is a recent posts sidebox that I included in the package.. You could use that instead of the WordPress sidebox (which displays ALL your active widgets)
    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. #1726
    Join Date
    May 2007
    Location
    Los Angeles
    Posts
    13
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hello, I looked for an answer to my problem but did not see one. I just installed the WOZ add on and made it so the blog categories show up in the sidebar. When I click on any of the blogs it leads me to a page with no css and my zen cart layout is completely gone. I probably missed a step somwhere. Anyone know what direction to point me to?
    Also I saw on some people's websites that they have a latest article section in the sidebar. How do I activate that?
    I'm using Zen Cart 1.3.8a and WordPress Version 3.0.3.
    Here is a link to the site I'm working on: http://www.thechocolatebaronline.com/

  7. #1727
    Join Date
    May 2006
    Posts
    62
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hira,
    What is the path I enter for /admin/tools/woz manager as the wordpress physical root? When I go to /admin/tools/woz manager it says: WordPress root physical path the following path is a COMPLETE path to your WordPress files. Then it lists a path (which I don't want to paste here for security reasons). I enter that path and click "confirm" and
    I always get the message that wp-config.php can't be found, even though it's located in a directory called wp on the root of my server. I've tried several variations to the path with no luck. I've installed everything else, and modified the files per your instructions, just can't get it to accept the path that I believe is the correct one.

    Thanks for your help,
    Ken

  8. #1728
    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 Ken Joy View Post
    Hira,
    What is the path I enter for /admin/tools/woz manager as the wordpress physical root? When I go to /admin/tools/woz manager it says: WordPress root physical path the following path is a COMPLETE path to your WordPress files. Then it lists a path (which I don't want to paste here for security reasons). I enter that path and click "confirm" and
    I always get the message that wp-config.php can't be found, even though it's located in a directory called wp on the root of my server. I've tried several variations to the path with no luck. I've installed everything else, and modified the files per your instructions, just can't get it to accept the path that I believe is the correct one.

    Thanks for your help,
    Ken
    You might wanna let this mod go.. IMHO, it's been a LOAD of problems and the support from Hira (no offense) has always been spotty until you complain about it.. if ya wanna embed your blog inside Zen Cart this is a BETTER way to do this:
    http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/
    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. #1729
    Join Date
    May 2006
    Posts
    62
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    You might wanna let this mod go.. IMHO, it's been a LOAD of problems and the support from Hira (no offense) has always been spotty until you complain about it.. if ya wanna embed your blog inside Zen Cart this is a BETTER way to do this:
    http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/
    Thanks! I'll give it a shot :)

  10. #1730
    Join Date
    Jan 2010
    Posts
    65
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hira View Post
    A method to use WOZ v1.5 and Ultimate SEO URLs

    Open /includes/init_includes/init_woz.php
    Please edit a red part
    Code:
      require_once(ABSPATH . 'wp-config.php');
      wp();
    
      if ($_GET['main_page'] == FILENAME_WORDPRESS && ( is_feed() || is_trackback() )) {
        gzip_compression();
        require_once(ABSPATH . WPINC . '/template-loader.php');
        exit();
      }
    Open includes\classes\ssu\cores\link.php
    Please add a red part
    Code:
    			
    			// if the index.php is in the url, lets see if we need to rebuild the path and redirect.
    			if((strpos($this->original_uri, 'index.php') !== false)){
    				if(!isset($_GET['main_page']) || empty($_GET['main_page'])){ 
    					$_GET['main_page'] = 'index';
    					$this->original_uri = $this->original_uri. '&main_page=index';
    				}
    				if($this->checkPageExcludedList($_GET['main_page']))
    					return false;
    				$this->redirect_type = 2;
    				return false;
    			}
    			// for WordPress On ZenCart BOF
    			else if($_GET['main_page'] == FILENAME_WORDPRESS){ return false; }
    			// for WordPress On ZenCart EOF
    			
    			// if we are using multi-lang, then we should have language code at the very beginning
    			if(SSUConfig::registry('configs', 'multilang_status')){
    				$languages_code = substr($this->original_uri, 0, 2);
    				if(!array_key_exists($languages_code, SSUConfig::registry('languages')))
    					$this->redirect_type = 1;
    				else{
    					$_get['language'] = $languages_code;
    					$this->original_uri   = trim(substr($this->original_uri, 2), '/');
    				}
    			}
    you'll need to set the Ultimate SEO URL rewrite rules to ignore direct client requests for the /blog folder by using an additional RewriteCond.
    eg)

    Code:
    # Don’t rewrite blog directory
    RewriteCond %{REQUEST_URI} !^/blog.* [NC]
    RewriteCond %{REQUEST_URI} !^/wordpress.* [NC]
    
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) /index.php?%{QUERY_STRING} [L]
    
    # Do rewrite blog directory
    RewriteRule ^blog(.*)$ /index.php?main_page=wordpress&$1 [E=VAR1:$1,QSA,L]
    Thank you! Works awesome with SSU too.

 

 

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