Zen Cart Logo
Forums / All Other Contributions/Addons / Wordpress On ZC [Support Thread]

Wordpress On ZC [Support Thread]

Views: 620,602

Results 941 to 960 of 1,861
10 Sep 2009, 2:38 AM
#941
gueston avatar

gueston

Zen Follower

Join Date:
Apr 2009
Posts:
118
Plugin Contributions:
0

Wordpress On ZC [Support Thread]

misty:

Did you install wordpress into same database as zencart?
Post details of wp-config.php here, minus database password.

Hi,misty.help me please
http://www.zen-cart.com/forum/showthread.php?p=779476#post779476

10 Sep 2009, 4:03 AM
#942
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Wordpress On ZC [Support Thread]

http://wordpress.org/extend/plugins/...r-integration/ (zencart-and-wordpress-user-integration.0.5.zip)
Only works using wordpress version 2.5
Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7

10 Sep 2009, 4:22 AM
#943
gueston avatar

gueston

Zen Follower

Join Date:
Apr 2009
Posts:
118
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

misty:

Only works using wordpress version 2.5
Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7

Oh,my god,so i must use wordpress version 2.5 or 2.7 for http://cbwp.us?

10 Sep 2009, 9:07 AM
#944
gueston avatar

gueston

Zen Follower

Join Date:
Apr 2009
Posts:
118
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

misty:

Only works using wordpress version 2.5
Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7

Hi
I got new error after use wordpress2.8 to 2.5.:
<a href="
Fatal error: Call to undefined function: wp_login_url() in /home/content/l/i/q/liqinghua/html/blog/wp-content/themes/fidi-2/metasite.php on line 18

And have same problem as last error(can't login/logout/change password.....)

And what function for this file?:class.rlwp.php(it is in zencart_demo_templates_1.1.zip)

<?php /** * @package TPP * @copyright Copyright 2003-2007 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * @version $Id: class.rlwp.php 511 2009-02-17 07:20:44Z hugo13 $ * * @author rainer AT langheiter DOT com // <http://www.filosofisch.com> // <http://edv.langheiter.com> * example: <!--%WordPress%--><!--###getWPTag###--> * first part == name of tab ( <!--%WordPress%--> ) * second part == name of called function; param: products_id ( <!--###getWPTag###--> ) */ define ('ABSPATH','/home/content/l/i/q/liqinghua/html/blog'); // abs-path to wp if (file_exists(ABSPATH.'wp-config.php')) { require_once(ABSPATH.'wp-config.php'); $wpinstall = true; } class rlWP { public $wpinstall; private $tag; function __construct(){ $this->wpinstall = false; if (file_exists(ABSPATH.'wp-config.php')) { $this->wpinstall = true; require_once(ABSPATH.'wp-config.php'); } } public function getWPTag($tag = 'zen-cart'){ $content = ''; $this->tag = $tag; if($this->wpinstall == true) { $lastposts = get_posts('tag=' . $this->tag); if(empty($lastposts)){ $content = 'NIX gefunden'; } else { foreach ($lastposts as $post) { $content .= '<div style="padding:4px; border: 1px solid green;"><h3>' . $post- >post_title . '</h3><p>' . $post->post_content . '</p></div>'; } } } else { $content = 'WP nicht installiert/richtig konfiguriert'; } return $content; } } function getWPTag($tag = 'zen-cart'){ $wp = new rlWP(); return $wp->getWPTag($tag); } ?>

https://www.cbwp.us

11 Sep 2009, 4:00 AM
#945
gueston avatar

gueston

Zen Follower

Join Date:
Apr 2009
Posts:
118
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

misty:

Only works using wordpress version 2.5
Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7

Hi,i have new error again,help me please,i know you are great man:D
Thanks

11 Sep 2009, 4:43 PM
#946
richardr avatar

richardr

New Zenner

Join Date:
Jul 2009
Location:
Maryland
Posts:
34
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

Hi there, I have searched every where for this problem so I'm assuming that I am doing something wrong that I'm missing since nobody has ever posted about this problem that I could find. What is happening is that my sidebar is perfect in all pages except that when you click to open the blog page itself, the sidebar all of a sudden jumps to the middle of the blog and the sidebar is blank. Here are 2 screen shots of what I'm talking about:

Home Page (perfect):

and Blog Page (messed up):

Please any help would be appreciated.

Thank You,

11 Sep 2009, 8:08 PM
#947
lankeeyankee avatar

lankeeyankee

Totally Zenned

Join Date:
Jan 2007
Posts:
1,514
Plugin Contributions:
1

Re: Wordpress On ZC [Support Thread]

richardr:

Hi there, I have searched every where for this problem so I'm assuming that I am doing something wrong that I'm missing since nobody has ever posted about this problem that I could find. What is happening is that my sidebar is perfect in all pages except that when you click to open the blog page itself, the sidebar all of a sudden jumps to the middle of the blog and the sidebar is blank.

I think this is one of two things. You have CSS conflicts because zen cart and wp share some element names, and/or there is a missing </div> tag somewhere. It is most likely the name conflict, I ran into this too. If you don't have firebug plugin for firefox get it, then highlight the messed up area and right click, select inspect element from the context menu and see what the class or id name is. Compare your stylesheets and I bet you will find there are elements with the same name. Rename the wordpress elements and then go to the relevant theme files and change those element names. It's easiest to do with a find and replace function in notepad++ or other text editor.

11 Sep 2009, 8:53 PM
#948
richardr avatar

richardr

New Zenner

Join Date:
Jul 2009
Location:
Maryland
Posts:
34
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

lankeeyankee:

I think this is one of two things. You have CSS conflicts because zen cart and wp share some element names, and/or there is a missing </div> tag somewhere. It is most likely the name conflict, I ran into this too. If you don't have firebug plugin for firefox get it, then highlight the messed up area and right click, select inspect element from the context menu and see what the class or id name is. Compare your stylesheets and I bet you will find there are elements with the same name. Rename the wordpress elements and then go to the relevant theme files and change those element names. It's easiest to do with a find and replace function in notepad++ or other text editor.

Thank you, going to try this now, I appreciate the answer and glad to know that I wasn't the only one :)

15 Sep 2009, 7:36 AM
#949
rachelgreen avatar

rachelgreen

New Zenner

Join Date:
Sep 2009
Posts:
1
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

Great module, but interfere with the rss feed mod.

16 Sep 2009, 2:48 PM
#950
robmor avatar

robmor

New Zenner

Join Date:
Sep 2009
Posts:
2
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

Hi,

I'm using zencart 1.38 along with wordpress 2.84. They are all installed in the same directory and I have the woz plugin installed. My problem is with the woz sidebox links.
On my site https://www.bfit.ie/store the link to the categories is https://www.bfit.ie/store/?cat=1 . However this doesnt work and it returns me to the main page. If I type in https://www.bfit.ie/store/?main_page=wordpress&cat=1 then It works fine. The same is the case with the archive link. I tried the wp-admin to adjust the permalinks but nothign seems to work. I've read back over the forum and have seen similar problems but not sure of the exact fix in my case. Any ideas??

Rob

16 Sep 2009, 9:37 PM
#951
medibiz avatar

medibiz

New Zenner

Join Date:
Feb 2009
Posts:
12
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

Gueston

How did you resolve your registration problem with wordpress?

I am having the same problem as you mentioned earlier in this forum. That being the "Fatal error: Call to undefined function: username_exists() n /home/content/l/i/q/liqinghua/html/includes/classes/observers/class.registerWordPress.php on line 17"

I just registered on your site with the user name "Ben Franklin" and I saw that your registration is now working. You can delete that user. Sorry. How did you resolve the registration problem?

I am sure hoping that you can help me with this.

I'm Using:
Zencart: 1.3.8a
Wordpress: 2.8.4
WOZ: 1.301
zencart-and-wordpress-user-integration: .5

16 Sep 2009, 10:39 PM
#952
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Wordpress On ZC [Support Thread]

Sorry to b-u-t-t in.. (excuse the spelling.. but the forum seems to have a slightly over enthusiastic word filter :yes: :laugh:)

I'm not sure Gueston even has his blog up anymore.. If he/she does, it's not integrated with Zen Cart using this mod as far as I can tell:

Based on his posts a direct link to his blog (http://gueston.com/blog) redirects to the store

and the standard WOZ URL
http://gueston.com/index.php?main_page=wordpress gets a "page not found" error.

MediBiz:

Gueston

How did you resolve your registration problem with wordpress?

I am having the same problem as you mentioned earlier in this forum. That being the "Fatal error: Call to undefined function: username_exists() n /home/content/l/i/q/liqinghua/html/includes/classes/observers/class.registerWordPress.php on line 17"

I just registered on your site with the user name "Ben Franklin" and I saw that your registration is now working. You can delete that user. Sorry. How did you resolve the registration problem?

I am sure hoping that you can help me with this.

I'm Using:
Zencart: 1.3.8a
Wordpress: 2.8.4
WOZ: 1.301
zencart-and-wordpress-user-integration: .5

19 Sep 2009, 10:06 AM
#953
jeet_kune_do avatar

jeet_kune_do

Zen Follower

Join Date:
Nov 2008
Location:
Slovenija
Posts:
119
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

I'm using:
Zencart: 1.3.8a
Wordpress: 2.8.4
WOZ: 1.301

I installed using the readme in separate directories.
My shop url:

www.myshopurl.com

Wordpress is in:

www.myshopurl.com/blog

The wordpress url is working, but it take's me to the blog, without the zen cart shop surrounded.

In the wordpress admin I have set up the blog adress url to:

http://www.myshopurl.com/

When I access in the sidebox to the blog it displayed the link:

http://www.myshopurl.com/en/index/m/200909

but the blog is not showing, only my shop with products.

When I go to

www.myshopurl.com/index.php?main_page=wordpress

it displayed the error:

Warning: Cannot modify header information - headers already sent by (output started at /home/myusername/public_html/includes/templates/template_default/common/html_header.php:22) in /home/myuser/public_html/wp-includes/pluggable.php on line 850

As I read true the forum, for that error should be applaied the kiddo patch to includes/extra_configures/wordpress-config.php, witch is:

// kiddos patch for WP 2.7
	$i=strlen(DIR_WS_CATALOG);
	$req=substr($_SERVER['REQUEST_URI'],$i,1);
	if(($req=='i') && ($_GET['main_page']=='wordpress')) {
		$_SERVER['REQUEST_URI'] = str_replace("index.php","",$_SERVER['REQUEST_URI']);
	}

Now, when I access that url it' take's me to the home page. The blog is not showing, only the shop with products.

I hope I was clear enought.

Thank's for your help.

20 Sep 2009, 3:38 PM
#955
jeet_kune_do avatar

jeet_kune_do

Zen Follower

Join Date:
Nov 2008
Location:
Slovenija
Posts:
119
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

Yes. It take's me to the home page. No blog is displayed.

22 Sep 2009, 4:35 AM
#957
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Wordpress On ZC [Support Thread]

a_berezin:

http://www.zen-cart.com/forum/showpost.php?p=774394&postcount=617
Well this post gave me a hint and a place to look for resolving an issue I am having with running the Google Base mod and WOZ..:lookaroun

I have been testing using Google Base Feeder and WOZ together. Like others before me, I discovered that many folks have gotten stuck due to errors when running the Google Base feeds with WOZ. I may have come up with a solution..

Now my disclaimer.. I am NOT using the blog embedding features of WOZ. I only use the WOZ sideboxes. This "fix" does not appear to affect the WOZ sideboxes (your mileage may vary).. but admittedly I have NOT tested how this change affects the blog embedding features WOZ..

As for the "fix" (at least this is working for me so far..):
In the includes/extra_configures/wordpress-config.php file

Around line 29 find this:

if(isset($_GET['feed'])){
```Comment out lines 29-36 as follows:
```php
//if(isset($_GET['feed'])){
    //wp();
    //gzip_compression();
    //require_once('./wordpress/wp-includes/template-loader.php');
    //require_once(ABSPATH . WPINC . '/template-loader.php');

        //exit();
    //}
```Like I said, your mileage may vary.. So far I can run my Google Base feeds and my WOZ sideboxes still work.. So far so good..:smile:
Google Base Wordpress error
ERROR: fy_un_tp is not a valid feed template
23 Sep 2009, 2:01 PM
#958
gueston avatar

gueston

Zen Follower

Join Date:
Apr 2009
Posts:
118
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

DivaVocals:

Sorry to b-u-t-t in.. (excuse the spelling.. but the forum seems to have a slightly over enthusiastic word filter :yes: :laugh:)

I'm not sure Gueston even has his blog up anymore.. If he/she does, it's not integrated with Zen Cart using this mod as far as I can tell:

Based on his posts a direct link to his blog (http://gueston.com/blog) redirects to the store

and the standard WOZ URL
http://gueston.com/index.php?main_page=wordpress gets a "page not found" error.

cbwp.us/blog please
or blog.cbwp.us

23 Sep 2009, 5:31 PM
#959
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Wordpress On ZC [Support Thread]

gueston:

cbwp.us/blog please
or blog.cbwp.usSooooooo.. Totally off topic.. :laugh: When is your store going to be open for business?? Is the other store NOT open?? I've been eyballing some of your purses..:laugh::laugh: You can PM the response.. :smile:

25 Sep 2009, 5:06 PM
#960
gueston avatar

gueston

Zen Follower

Join Date:
Apr 2009
Posts:
118
Plugin Contributions:
0

Re: Wordpress On ZC [Support Thread]

DivaVocals:

Sooooooo.. Totally off topic.. :laugh: When is your store going to be open for business?? Is the other store NOT open?? I've been eyballing some of your purses..:laugh::laugh: You can PM the response.. :smile:

ok,gueston.com opened , and coach.gueston.com