-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
DivaVocals
Documented and confirmed that WOZ has never played well with other SEO mods (Simple SEO compatibility issues have been confirmed and there are likely the same compatibility issues with Ultimate SEO as well).. I'm fairly certain that this is still an issue in the latest version of WOZ as well.. The ONLY SEO mod WOZ seems to work with is Ceon URI (and that is only because Hira wrote a specific hack in the latest version of WOZ for this particular SEO mod)
If you NEED an embedded blog that works with Ultimate or Simple SEO, then you might want to check out the Numinix blog embedding solution/mod (search this thread for Numinix). This blog embedding solution does not interfere with SEO mods because it was written a lot differently than WOZ.. If you don't need an embedded blog solution and still want to tie your (separate) blog to your store, try using the WOZ Sideboxes Only mod..
in reference to numinix's solution, am I correct in saying that I would have to load the woz files then follow his steps.. Also, in using his metheod, I noticed a comment about it interfering with the look of my site, is this true, and can it easily be fixed. I dont want to mess with the look of my site. I would really just want to disable ssu for the blog itself...
Anything to note
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
wagnerguy
in reference to numinix's solution, am I correct in saying that I would have to load the woz files then follow his steps..
No.. this is incorrect.. Please go to Numinix's site and read through the full blog post (and comments) they contain the instructions on his embedding solution. This is a DIFFERENT blog embedding solution from WOZ.. It is a blog embedding solution to be used INSTEAD of WOZ.. I suggested this blog embedding solution INSTEAD OF WOZ since I know that the compatibility issues between WOZ and SSU have ALWAYS been an issue which are not resolved in ANY version of WOZ (1.3, 1.4, and 1.5). The Numinix blog embedding solution does not interfere with SEO mods because it was written a lot differently than WOZ.. If you don't need an embedded blog solution and still want to tie your (separate) blog to your store, try using the WOZ Sideboxes Only mod.. All of these solutions REQUIRE that you UNINSTALL WOZ before installing them..
Quote:
Originally Posted by
wagnerguy
Also, in using his metheod, I noticed a comment about it interfering with the look of my site, is this true, and can it easily be fixed. I dont want to mess with the look of my site. I would really just want to disable ssu for the blog itself...
Anything to note
Don't know what comment you are referring to. It's a blog embedding solution.. Just like WOZ is intended to do, the Numnix solution embeds the blog into your store. The BIG difference is that unlike WOZ there are no compatibility issues with either Ceon URI or Simple SEO. (Both work fine.. PLEASE read the blog post AND THE COMMENTS for specifics on both SEO solutions). If you've searched through this thread and read previous posts on the Numnix solution, you will see my posts which include links to a test store with this solution working..
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
DivaVocals
No.. this is incorrect.. Please go to Numinix's site and read through the full blog post (and comments) they contain the instructions on his embedding solution. This is a DIFFERENT blog embedding solution from WOZ.. It is a blog embedding solution to be used INSTEAD of WOZ.. I suggested this blog embedding solution INSTEAD OF WOZ since I know that the compatibility issues between WOZ and SSU have ALWAYS been an issue which are not resolved in ANY version of WOZ (1.3, 1.4, and 1.5). The Numinix blog embedding solution does not interfere with SEO mods because it was written a lot differently than WOZ.. If you don't need an embedded blog solution and still want to tie your (separate) blog to your store, try using the WOZ Sideboxes Only mod.. All of these solutions REQUIRE that you UNINSTALL WOZ before installing them..
Don't know what comment you are referring to. It's a blog embedding solution.. Just like WOZ is intended to do, the Numnix solution embeds the blog into your store. The BIG difference is that unlike WOZ there are no compatibility issues with either Ceon URI or Simple SEO. (Both work fine.. PLEASE read the blog post AND THE COMMENTS for specifics on both SEO solutions). If you've searched through this thread and read previous posts on the Numnix solution, you will see my posts which include links to a test store with this solution working..
ok, I will give it a shot.. just to be clear, i should load the woz files from the addons section then load numinix's files and follow the directions. I already have woz loaded, will this edit the existing files, and enable to work with ssu
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
wagnerguy
ok, I will give it a shot.. just to be clear, i should load the woz files from the addons section then load numinix's files and follow the directions. I already have woz loaded, will this edit the existing files, and enable to work with ssu
To be clear, please RE-read what I JUST posted.. (Not trying to be a smart a$$, but this is an important point which you've missed TWICE in your responses..)
Quote:
Originally Posted by
DivaVocals
No.. this is incorrect.. Please go to Numinix's site and read through the full blog post (and comments) they contain the instructions on his embedding solution. This is a DIFFERENT blog embedding solution from WOZ.. It is a blog embedding solution to be used INSTEAD of WOZ.. I suggested this blog embedding solution INSTEAD OF WOZ since I know that the compatibility issues between WOZ and SSU have ALWAYS been an issue which are not resolved in ANY version of WOZ (1.3, 1.4, and 1.5). The Numinix blog embedding solution does not interfere with SEO mods because it was written a lot differently than WOZ.. If you don't need an embedded blog solution and still want to tie your (separate) blog to your store, try using the WOZ Sideboxes Only mod.. All of these solutions REQUIRE that you UNINSTALL WOZ before installing them..
-
Re: Wordpress On Zencart / Released
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]
-
Re: Wordpress On Zencart / Released
Hey,
Great Addon. I installed it and it all went pretty smoothly. http://d1084442-2.cp.blacknight.com/...page=wordpress
There are 2 problems though.
It now caused all the bullet points & Euro signs to change into the unkown character mark.
2) The template is messed up.
Any suggestions would be really appreciated.
Thanks!
-
Re: Wordpress On Zencart / Released
I'm installing WP on ZC Sideboxes ONLY Editionn v1.0 and I have an issue. After doing the wordpress-config.php changes the site goes BLANK. The config is as follows:
Code:
/home/***/public_html/blog/
of course with the real user name.
If I take off the trailing "/" the page comes up back but the sidebox only shows the header.
Sometimes with the "/" on it shows up fine but then after a refresh or browsing goes blank again.
Something that it's confusing about the instructions (because is not the norm) is this step:
Quote:
5.Copy the includes folder of the "WordPress On ZenCart - Sideboxes Only Edition v1.0", to your store root, where the index.php is.
(DO NOT copy the "WordPress On ZenCart - Sideboxes Only Edition v1.0" folder, only the includes folder)
So I should upload:
-extra_configures
-languages
-modules
-templates
to the root of the cart? :wacko:
If so, I already tried that without success.
I search the thread without finding anyone having the same issue.
-
Re: Wordpress On Zencart / Released
Sorry about the confusion in the instructions.. Sometimes I work late at night and it's ENTIRELY possible that late night fatigue interfered with clarity.. :laugh: I wanted to make it clear that the "includes" folder inside the "WordPress On ZenCart - Sideboxes Only Edition v1.0" folder is what should be copied over.. (I had someone copy over the whole "WordPress On ZenCart - Sideboxes Only Edition v1.0" folder, and that won't work)
So let me take a look at what else might be going on, and post up an answer for you.. It's fairly straightforward, but let me see if I missed something in the instructions.. BTW, are you using this with the latest version of Zen Cart (v1.3.9a)
Quote:
Originally Posted by
ideasgirl
I'm installing WP on ZC Sideboxes ONLY Editionn v1.0 and I have an issue. After doing the wordpress-config.php changes the site goes BLANK. The config is as follows:
Code:
/home/***/public_html/blog/
of course with the real user name.
If I take off the trailing "/" the page comes up back but the sidebox only shows the header.
Sometimes with the "/" on it shows up fine but then after a refresh or browsing goes blank again.
Something that it's confusing about the instructions (because is not the norm) is this step:
So I should upload:
-extra_configures
-languages
-modules
-templates
to the root of the cart? :wacko:
If so, I already tried that without success.
I search the thread without finding anyone having the same issue.
-
Re: Wordpress On Zencart / Released
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
ideasgirl
I'm installing WP on ZC Sideboxes ONLY Editionn v1.0 and I have an issue. After doing the wordpress-config.php changes the site goes BLANK. The config is as follows:
Code:
/home/***/public_html/blog/
of course with the real user name.
Another question.. What is the actual URL for your blog?? Is it http://www.yourdomain.com/blog?
Quote:
Originally Posted by
ideasgirl
Something that it's confusing about the instructions (because is not the norm) is this step:.
I re-read the readme.. and the section in question:
Quote:
Copy the includes folder of the "WordPress On ZenCart - Sideboxes Only Edition v1.0", to your store root, where the index.php is.
(DO NOT copy the "WordPress On ZenCart - Sideboxes Only Edition v1.0" folder, only the includes folder)
Quote:
Originally Posted by
ideasgirl
So I should upload:
-extra_configures
-languages
-modules
-templates
to the root of the cart? :wacko:
No, you would copy over the "includes" folder to the root of your store. Like I stated, I wanted to make sure it was CLEAR that the "includes" folder inside the "WordPress On ZenCart - Sideboxes Only Edition v1.0" folder was what you copy over to your store root. Sorry if that wasn't completely clear..
-
Re: Wordpress On Zencart / Released
Yes, that's correct.
Ok, so it's supposed to uploaded to the includes folder just like any other mod.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
ideasgirl
Yes, that's correct.
Ok, so it's supposed to uploaded to the includes folder just like any other mod.
Yes... It's a pretty straightforward install.. The only place that some folks usually get fouled up on is the ABSPATH setting (yours looked correct.).. Do you have the mod files in the right location??
-
Re: Wordpress On Zencart / Released
Quote:
Do you have the mod files in the right location??
Yes, I'm not coder but I know ZC structure very well.
I just rechecked EVERYTHING, even the blog files to see proper permitions and to reasure the files are there.
I went through every file of the mod to see if there was something wrong or any extra line on the end of the files... NOTHING!
Here's my wordpress-config.php code:
Code:
<?php
//
// wordpress on zencart by http://www.s-page.net/
//
define ('ABSPATH','/home/***/public_html/blog/');
$woz_install=0;
if (file_exists(ABSPATH.'wp-config.php')) {
$woz_install=1;
define('WP_USE_THEMES', true);
$wp_did_header = true;
require_once(ABSPATH.'wp-config.php');
}
?>
The site is avilasterling.com (right now is blank) take a look to see if you see any light on the end of the tunel.
I don't get any errors on "myerrorlog".
Note: I just discovered that on IE the page doesn't go blank but the sidebox is not complete and looks like it's affecting the following sideboxes. If you try any of the following links it will fall into "page cannot be displayed" then when you go back it goes blank. :blink:
Also important to mention I'm using ZC v1.3.9.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
ideasgirl
Also important to mention I'm using ZC v1.3.9.
And herein lies the possible issue I think.. Sounds like there is an issue with the module and the new version of Zen Cart.. **sigh** Let me take a look and see if I can figure out what the issue is.. I wonder if the latest FULL version of WOZ also has issues with the new version Zen Cart..
-
Re: Wordpress On Zencart / Released
Hi ,
I also have a wordpress on zencart problem, the wordpress show up on the sidebox,but when click them, it shows a blank page
my website is http://www.sockswholesales.com/
I use wp2.9.2 and zc1.3.9
is it the problem of the version?
thanks
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
sub103
Hi ,
I also have a wordpress on zencart problem, the wordpress show up on the sidebox,but when click them, it shows a blank page
my website is
http://www.sockswholesales.com/
I use wp2.9.2 and zc1.3.9
is it the problem of the version?
thanks
Don't see the "issue"... looks like your embedded blog is working..
-
Re: Wordpress On Zencart / Released
very strange, I spent one wholesay to fix it,but I can't.
I don't know why it is working now.:D:D but anyway I am very glad thanks for your reply
and can you see my footer now it is "Copyright © 2003-2006 Zen Cart. Powered by Zen Cart"
english.php( in /includes/languages/english.php) is set to
define('FOOTER_TEXT_BODY', 'Copyright © ' . date('Y') . ' <a href="http://www.sockswholesales.com/">Socks Wholesale</a>,<a href="http://www.sockswholesales.com/">Mens Socks Wholesale</a>,<a href="http://www.sockswholesales.com/">Womens Socks Wholesale</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>');
I don't know why it shows "Copyright © 2003-2006 Zen Cart. Powered by Zen Cart"
appreciated for your help
-
Re: Wordpress On Zencart / Released
This subject matter is off topic, but I will say that again, I do not see whatever it is you are saying is an "issue"
Quote:
Originally Posted by
sub103
and can you see my footer now it is "Copyright © 2003-2006 Zen Cart. Powered by Zen Cart"
english.php( in /includes/languages/english.php) is set to
define('FOOTER_TEXT_BODY', 'Copyright © ' . date('Y') . ' <a href="http://www.sockswholesales.com/">Socks Wholesale</a>,<a href="http://www.sockswholesales.com/">Mens Socks Wholesale</a>,<a href="http://www.sockswholesales.com/">Womens Socks Wholesale</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>');
I don't know why it shows "Copyright © 2003-2006 Zen Cart. Powered by Zen Cart"
appreciated for your help
-
Re: Wordpress On Zencart / Released
just fixed it.
thanks for this module
-
Re: Wordpress On Zencart / Released
Hey Guys, probably a simpleton question here, I installed WOZ practically trouble free on 1.3.9 - although I do have to say that the only theme which doesnt re-write my display is woz_default, but its a fine addition...
My problem is the comments alignment issue... I would like to include comments in the posts, but when someone clicks to comment on a post the whole page aligns or floats to the far right, and thus interferes with my right sidebox. I'm sure that somewhere I can edit for the comments to not move to the right, its just escaping me right now!
Unfortunately I can't show you this live, but i'm including a screen shot of it...
Screenshot - Comments Float Right
-
Re: Wordpress On Zencart / Released
I have re-read this thread a few times and can not find what I am looking for. Hopefully someone here has the answer or can point me in the right direction.
On my test site I have installed:
Zen 1.3.8a
Wordpress 2.9.2
WOZ 1.5 (w/WOZ default theme)
Everything is working so far. :D However, when I click on a link to go to a blog page, the blog pages loads, but is much wider then the Zen Cart pages. Question 1, how do I change the with of the WP pages?
Question 2, how do I stop the WP header from loading?
Thanks.
-
Re: Wordpress On Zencart / Released
Hey DivaVocals & All - I haven't been on here in months and was hoping after finishing reading this book, that it would end with every one lived happily, ever after. Not so much yet! Sounds like there's a working version if you don't have any other
mods. :P
I'll check back in July :laugh:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
cslakans
Hey DivaVocals & All - I haven't been on here in months and was hoping after finishing reading this book, that it would end with every one lived happily, ever after. Not so much yet! Sounds like there's a working version if you don't have any other
mods. :P
I'll check back in July :laugh:
:laugh::laugh: Nope.. Still requires hacks to other mods, and the pattern seems to be that hacks are developed and built in to the mod as issues are reported.. So who knows what else blows up because of this mod.. The latest versions have built in hacks to other mods (most notably Ceons URI module) to force things to play nice together.. The sideboxes only edition apparently no longer works with the latest version of Zen Cart.... So glad I have a cleaner more flexible alternative which requires NO hacks to other mods to play nicely with them..
Gonna have a look at the sideboxes only edition this weekend (finally have some free time to have a go at it..) and see if I can figure out what about Hira's code is not playing well with 1.3.9b..:wacko:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by DivaVocals
Gonna have a look at the sideboxes only edition this weekend (finally have some free time to have a go at it..) and see if I can figure out what about Hira's code is not playing well with 1.3.9b..:wacko:
Sounds great, I've been waiting for that. :hug:
-
Re: Wordpress On Zencart / Released
Quote:
Gonna have a look at the sideboxes only edition this weekend (finally have some free time to have a go at it..) and see if I can figure out what about Hira's code is not playing well with 1.3.9b..
Dang DV, and you had the best working solution of everyone until the Zen Cart release. I feel for you all! I'll just let everyone else figure it all out before I get involved with the blog embedding again. Good luck to you and the others. :yes: Work hard for me :flex:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
ideasgirl
Sounds great, I've been waiting for that. :hug:
OMG ideasgirl!!! Soooooo sorry.. I should have gotten back to you sooner on this.. Been soooooooooooo crazy busy with work and other client projects that it slipped my mind..
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
cslakans
Dang DV, and you had the best working solution of everyone until the Zen Cart release. I feel for you all! I'll just let everyone else figure it all out before I get involved with the blog embedding again. Good luck to you and the others. :yes: Work hard for me :flex:
Well MY solution still works:laugh: (Numinix Blog Embedding with my proprietary sideboxes).. The WOZ Sideboxes Only Edition was based on Hira's code (which is very different than my custom sideboxes code) is not working **sigh**.. Gotta figure out what else I need to hack out of that thing to get it to play nice with the latest Zen..:flex:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
DivaVocals
OMG ideasgirl!!! Soooooo sorry.. I should have gotten back to you sooner on this.. Been soooooooooooo crazy busy with work and other client projects that it slipped my mind..
No problem girl! We are all in the same boat, all the free stuff is "whenever we have the time". We are :cool:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
ideasgirl
No problem girl! We are all in the same boat, all the free stuff is "whenever we have the time". We are :cool:
Awesome!!!:wink:
-
Re: Wordpress On Zencart / Released
Hi Conor,
just wondering if you might have some good news for us...:smile:any update?
Quote:
Originally Posted by
conor
Hi,
Just letting you know that I've got 1.5.1 from hira and that I see the code he's added for handling Ceon URI Mapping.
It's a public holiday here for Easter from tomorrow, so I don't think I can get this all sorted until I get back from my holidays on Wednesday but I will get this sorted as soon as possible so that that hopefully Ceon URI Mapping/Advanced Shipper can be handled properly in 1.5.1.
All the best..
Conor
ceon
-
Re: Wordpress On Zencart / Released
Hi,
Quote:
Originally Posted by
loosefast
just wondering if you might have some good news for us...:smile:any update?
I've been snowed under releasing new versions of various modules.. 3.6.0 of URI Mapping has just been finished and will be released shortly.
Do you mind getting in contact with me privately via this address so I can send you some test code? Might make the process go a bit quicker!
All the best..
Conor
ceon
-
Re: Wordpress On Zencart / Released
Just sent contact, thanks!
Quote:
Originally Posted by
conor
Hi,
I've been snowed under releasing new versions of various modules.. 3.6.0 of URI Mapping has just been finished and will be released shortly.
Do you mind getting in contact with me privately via
this address so I can send you some test code? Might make the process go a bit quicker!
All the best..
Conor
ceon
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
conor
Hi,
I've been snowed under releasing new versions of various modules.. 3.6.0 of URI Mapping has just been finished and will be released shortly.
Do you mind getting in contact with me privately via
this address so I can send you some test code? Might make the process go a bit quicker!
All the best..
Conor
ceon
So Conor is your plan to re-write this goofy little mod??? Seems to be what is REALLY needed -- which is why ultimately the last client I had (who wanted an embedded blog) opted for paying for custom code versus messing around with WOZ at all. I'm happy with this code as it plays nice with EVERYTHING.. However, based on the Ceon URI mod, I have no doubt that you would turn out a module that is going to play nicely with other modules without requiring hacks..
So I would be more inclined to use a mod with your touch on it versus the current WOZ codebase.. (Sorry.. that's my HONEST opinion)
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
asorethumb
I dont want it on the main page. Could I use a page_2 or any other pages?
Hi guys,
In my case, i need the blog to be on the home page of my zen cart. how would i go about doing that ? because right now its only on happytravelvacations.com/index.php?main_page=wordpress
but i want it on
happytravelvacations.com/index.php?main_page=index
I've looked at the files, and was going to integrate all the files. but define page was conflicting with each other, because there is 2. :( and i dont understand how i can make this work.
Thanks a lot in advance!
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
misty
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; ?>
as at
http://dezinacart.co.uk
I found out how to make my posts show up on front page. :P
I shoulda read earlier posts first, thought no one figured it out but i was wrong. Thanks so much to Misty.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
MaLong
I found out how to make my posts show up on front page. :P
I shoulda read earlier posts first, thought no one figured it out but i was wrong. Thanks so much to Misty.
This and similar solutions have been posted a few time throughout this thread.. This is why I always read the full support thread.. I have usually found what I am looking for has already been posted..
-
Re: Wordpress On Zencart / Released
Hello,
I have had a good search through this thread and can't find the answers I need so here goes -
I have WordPress 2.9.2 integrated with my Zen Cart 1.3.9c via Numinix's method here
The blog worked perfectly pre 'WordPress On ZenCart - Sideboxes Only Edition v1.0' install but ever since installing the addon & then activating the 'wp_sidebar.php' sidebox in Zen layout boxes controller I get the following message -
Not Found
Sorry, but you are looking for something that isn't here.
Has anyone got any ideas?
Thanks.
-
Re: Wordpress On Zencart / Released
I have posted several times here and in the Numinix blog that the WordPress on Zen Cart Sideboxes Only edition WILL NOT work with the Numinix blog embedding solution.. From what I can tell the reason for this is that the WOZ codebase (on which the WOZ Sideboxes Only solution is based) uses the WordPress "The Loop" codex in an odd manner, and therefore will NOT work with the Numinix blog embedding solution. I don't have an exact fix for getting the WordPress on Zen Cart Sideboxes Only to work with the Numinix solution.. I personally had a friend help me develop properly coded sideboxes that work standalone as well as with the Numinix blog embedding solution..
Quote:
Originally Posted by
gaffettape
Hello,
I have had a good search through this thread and can't find the answers I need so here goes -
I have WordPress 2.9.2 integrated with my Zen Cart 1.3.9c via Numinix's method
here
The blog worked perfectly pre 'WordPress On ZenCart - Sideboxes Only Edition v1.0' install but ever since installing the addon & then activating the 'wp_sidebar.php' sidebox in Zen layout boxes controller I get the following message -
Not Found
Sorry, but you are looking for something that isn't here.
Has anyone got any ideas?
Thanks.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
DivaVocals
I have posted several times here and in the Numinix blog that the WordPress on Zen Cart Sideboxes Only edition WILL NOT work with the Numinix blog embedding solution..
Thank you :smile:
-
Re: Wordpress On Zencart / Released
I am back for more help. I was here a few month ago when I installed WordPress for ZenCart. The problem then was that my whole website was https. I changed it back to http and WP started to work.
However I still have a few bugs to iron out. Here is my first questions:
1. When I publish a new article google picks up the main description to my site, not the new article title. I also have the same problem with the RSS feed. Once you click on expand the article it directs me to the home page. Here is the RSS feed link:feed://unlockology.com/blog/?feed=rss2
I noticed that when redirected it sends me to: http://unlockology.com/?p=210
This url is missing the (blog) directory. The url should be http://unlockology.com/blog/?p=210
So my question is what is the file/s I need to change to make sure the Blog directory is added and where is the file/s located?
Any help will be appreciated. Thank you.
-
Re: Wordpress On Zencart / Released
I have just installed wordpress and woz professional on www.classicalchandeliers.co.uk
Is it possible to get permanlinks working with ceon so that the wordpress URLS are improved?
If so please advise on how this can be done.
many thanks
Paul
-
Re: Wordpress On Zencart / Released
Hello.
As for you, URLS is improved by changing the following setting :smile:
wp-admin: Settings: Permalink
Quote:
Originally Posted by
ptowers49
I have just installed wordpress and woz professional on
www.classicalchandeliers.co.uk
Is it possible to get permanlinks working with ceon so that the wordpress URLS are improved?
If so please advise on how this can be done.
many thanks
Paul
-
Re: Wordpress On Zencart / Released
The version that you use?
The latest edition is v1.5.
Quote:
Originally Posted by
Unlockology
I am back for more help. I was here a few month ago when I installed WordPress for ZenCart. The problem then was that my whole website was https. I changed it back to http and WP started to work.
However I still have a few bugs to iron out. Here is my first questions:
1. When I publish a new article google picks up the main description to my site, not the new article title. I also have the same problem with the RSS feed. Once you click on expand the article it directs me to the home page. Here is the RSS feed link:feed://unlockology.com/blog/?feed=rss2
I noticed that when redirected it sends me to:
http://unlockology.com/?p=210
This url is missing the (blog) directory. The url should be
http://unlockology.com/blog/?p=210
So my question is what is the file/s I need to change to make sure the Blog directory is added and where is the file/s located?
Any help will be appreciated. Thank you.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
hira
The version that you use?
The latest edition is v1.5.
I have WOZ version 1.5 and Zen Cart 1.3.8a
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
hira
Hello.
As for you, URLS is improved by changing the following setting :smile:
wp-admin: Settings: Permalink
If you change the Permalink setting (from Default) to either:
1. Day and Name or
2. Month and Name
Then you do get the custom URI with the key words that are so important. However, I tried this and went onto the blog home page. My articles are long so the have the MORE or READ THE REST buttons. When you click on these buttons, it sends you to the website's homepage and not to the blog article.
I had to change the Permalink back to Default.:(
Is there a way to fix this?
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
Unlockology
If you change the Permalink setting (from Default) to either:
1. Day and Name or
2. Month and Name
Then you do get the custom URI with the key words that are so important. However, I tried this and went onto the blog home page. My articles are long so the have the MORE or READ THE REST buttons. When you click on these buttons, it sends you to the website's homepage and not to the blog article.
I had to change the Permalink back to Default.:(
Is there a way to fix this?
Unfortunately one of the many issues I frequently ran into with WOZ was the inability to use permalinks. I was never able to make permalinks work with WOZ or even the WOZ Sideboxes Only edition.. I know this wasn't much help.. Maybe Hira has a magic solution to this.. Good luck..
-
Re: Wordpress On Zencart / Released
Hi, and thank you for this mod .. I got everything worked but I found a few thing didn't work in this mod and I'm wondering if it's bugs or I did something wrong.
1. First noticed is that the search function in wordpress didn't work and I didn't see wp_search included, only these was included in the mod "wp_archive, wp_cats, wp_links, wp_pages, and wp_sidebar".
2. Second noticed is permalinks didn't work and when I did make a new post, the view post button in wordpress will not lead direct to the post but lead to zen-cart home page.
3. Third noticed is the wordpress directory will not display correctly by itself. It's only display right under zen-cart directory.
Note: My wordpress and zen-cart are in seperated directory and DB.
My site with WOZ is: http://phamcs.dyndns.org/store/index...page=wordpress
My blog address is: http://phamcs.dyndns.org/portal/
Please, let me know if I did something wrong.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
Shiginami
1. First noticed is that the search function in wordpress didn't work and I didn't see wp_search included, only these was included in the mod "wp_archive, wp_cats, wp_links, wp_pages, and wp_sidebar"..
It's likely that since this is an embedded WP solution that the WP files don't contain everything you would have in a standalone WordPress install
Quote:
Originally Posted by
Shiginami
2. Second noticed is permalinks didn't work and when I did make a new post, the view post button in wordpress will not lead direct to the post but lead to zen-cart home page..
Just discussed in the post RIGHT above yours..
Quote:
Originally Posted by
Shiginami
3. Third noticed is the wordpress directory will not display correctly by itself. It's only display right under zen-cart directory.
It's an EMBEDDED WordPress solution, therefore the template included is designed to best display an embedded blog.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
DivaVocals
It's likely that since this is an embedded WP solution that the WP files don't contain everything you would have in a standalone WordPress install
Just discussed in the post RIGHT above yours..
It's an EMBEDDED WordPress solution, therefore the template included is designed to best display an embedded blog.
So is there a solution to fix this? If I merged 2 directories and 2 DB together wil it works? Thanks.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
Shiginami
So is there a solution to fix this? If I merged 2 directories and 2 DB together wil it works? Thanks.
There isn't a "fix" for this.. With the exception of the issue with the permalinks (which if you read my recent post you'll see I DON'T have a fix for) The WOZ module is working the way it's supposed to. It embeds WordPress into your blog. If you want your blog to work as a standalone blog as well as an embedded blog you MIGHT be able to create a WordPress template that could serve both purposes and replace the WordPress template that comes with WOZ...
-
Re: Wordpress On Zencart / Released
Hello, I installed WOZ and it embeds nicely. Works with Connor's URI mod nicely as well. :)
I have one issue - with this mod installed, the shipping estimator does not work.
When I enter data into the fields, such as State and Zip Code, nothing happens. The screen just refreshes and no data output is shown.
Any ideas?
Thank you in advance.
-
Re: Wordpress On Zencart / Released
I need it but not as good as I need.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
agelleen
I need it but not as good as I need.
Then improve it. That's what open source is all about.
-
Re: Wordpress On Zencart / Released
Has anyone found a fix to truly use WOZ with SSU.. I could not use numinix's hack because it would have meant uninstalling WOZ which worked fine. Is there a way I can turn off SSU for woz at all
-
Re: Wordpress On Zencart / Released
I have tried to upgrade my previous version of wordpress that was working perfectly fine on my zen cart site. I originally upgraded to Wordpress 3.0 and it makes my site go completely blank. So I then tried to do a fresh installation of wordpress 2.9 with a fresh database and when I do to my zen cart admin side and install it from there it wipes the whole website blank. As soon as i click the uninstall button it makes the website work fine again. I have tried to read the instructions over and over again and I believe I have installed everything correctly but the instructions are a bit hard to understand.
Has anyone else been having this problem and if soe does anyone know how to fix it? Any help would be great.
-
Re: Wordpress On Zencart / Released
@Elvis: ssiigghh. Join the club, dude. I'm also struggling mightily with this issue. As soon as I figure it out, I'll post my results *Immediately*. But until then, you might try this:
http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/
...I'm hoping that Dr. Byte himself will look at this solution and comment on it here. This is the solution I'm working with currently, until the zencart team comes up with something.
:cry:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
Pudnik
@Elvis: ssiigghh. Join the club, dude. I'm also struggling mightily with this issue. As soon as I figure it out, I'll post my results *Immediately*. But until then, you might try this:
http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/
...I'm hoping that Dr. Byte himself will look at this solution and comment on it here. This is the solution I'm working with currently, until the zencart team comes up with something.
:cry:
*sigh* I have deleted the WOZ install on my cart and installed the numinix one and am still having problems. I can see my blog and and I can see my site but can not get them to work together on the same page.
http://grunionfabrication.com/blog/
Just gets me my blog and I have checked and rechecked the installation instructions and I dont have any idea why i am not getting the correct results. I am using Ultimate URLS i dont know if this might be the problem....?
-
Re: Wordpress On Zencart / Released
Unless Dr Byte plans to re-write WOZ (which is unlikely) I'm not sure what you expect from him for this particular module. As far as I'm aware there are no plans by the Zen Cart team to include WordPress embedding in any future Zen Cart release..
WOZ has been problematic for YEARS.. Reading through this support thread will give a full list of all the issues and solutions/patches. IMO the Numinix solution works much better and has better support.. if you are having issues with it, you should post your questions on the Numinix blog/forum. (I suggest checking your install and make sure you followed ALL of the instructions.. You should also read through the existing comments before posting new questions)
Quote:
Originally Posted by
Pudnik
@Elvis: ssiigghh. Join the club, dude. I'm also struggling mightily with this issue. As soon as I figure it out, I'll post my results *Immediately*. But until then, you might try this:
http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/
...
I'm hoping that Dr. Byte himself will look at this solution and comment on it here. This is the solution I'm working with currently, until the zencart team comes up with something.
:cry:
Quote:
Originally Posted by
elvis44
*sigh* I have deleted the WOZ install on my cart and installed the numinix one and am still having problems. I can see my blog and and I can see my site but can not get them to work together on the same page.
http://grunionfabrication.com/blog/
Just gets me my blog and I have checked and rechecked the installation instructions and I dont have any idea why i am not getting the correct results. I am using Ultimate URLS i dont know if this might be the problem....?
-
Re: Wordpress On Zencart / Released
...Welp, nKay, I have to the best of my ability captured the entire sordid story Here. ...Looks like I've got a loooooong road ahead of me trying to get the two to work, hacking my own PHP server-side code and maintaining that hacked code to keep up with wordpress and zencart updates. Wish I knew PHP nearly as well as I know ASP...
:yuck:
-
Re: Wordpress On Zencart / Released
......I guess my final thought on this issue - and this one is directed to DrByte himself - is: will zencart *ever* have proper support for *any* CMS embedding, not just WordPress. Or, proper exposure of the Zencart API so that CMS authors and users can safely call Zencart API functions so that CMS embedding is not necessary. Nix geeks and IT pros, if of a high enough skill level, sure they can just hack away...but it should be seamless and robust for administrators and tech-savvy users as well. Standing by....
:unsure:
-
Re: Wordpress On Zencart / Released
hello all, I am reloading woz. I just downloaded the latest version.. I have copied all the files to the appropiate place, and I am using "blog" as the folder location. when I go to admin and woz manager. and confirm the location I get the following message
Warning WordPress config(wp-config.php) was not found.
I have checked the location using check-path.php.
the wierd thing is, I cant find the (wp-config.php) in the original folder anywhere. in the older versions, its located in extra_configures folder. Shoudl I just load an older version?
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
wagnerguy
hello all, I am reloading woz. I just downloaded the latest version.. I have copied all the files to the appropiate place, and I am using "blog" as the folder location. when I go to admin and woz manager. and confirm the location I get the following message
Warning WordPress config(wp-config.php) was not found.
I have checked the location using check-path.php.
the wierd thing is, I cant find the (wp-config.php) in the original folder anywhere. in the older versions, its located in extra_configures folder. Shoudl I just load an older version?
Sounds like a Wordpress support question.
Oh what the hell ... in the latest version of WP the config file is in the root folder, sound like that's "blog" on your site.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
kuroi
Sounds like a Wordpress support question.
Oh what the hell ... in the latest version of WP the config file is in the root folder, sound like that's "blog" on your site.
ok, I saw i there.. why is my manager looking for the older version name.
Could it be that I uninstalled it incorrectly the first time?
-
Re: Wordpress On Zencart / Released
I'm trying to get some flash mp3 players to work with WOZ, but none of them seem to work. I guess the issue is with the code in header/footer, but can't seem to work it out. I noticed that <?php wp_head(); ?> was missing from the header.php, but it still doesn't work. Anything else to check?
-
Re: Wordpress On Zencart / Released
OK guys. Just a reminder that this is the Zen Cart support forum.
If you have questions about Wordpress (as opposed to Wordpress integration with Zen Cart) then the Wordpress support forum is the place to ask them.
-
Re: Wordpress On Zencart / Released
I seem to have just got this working - early days not fully tested, but now have side boxes and blog details showing, but is it possible to put this side box anywhere.
What I would like to do is call the last couple of posts into a box with in my define_main_page (front page). I think this is would be using wp_post side box. But what is the code to call this in to any page (front page - define_page or a EZpages)
Thank you in advance for any help.
MikeyG
-
Re: Wordpress On Zencart / Released
Hi I am using zencart vsn 1.38 and wordpress 3, i have tried installing the wordpress plugin but it seems that everytime i select the default theme it all crashes and says page not found and then i have to delete wordpress and start again. I have followed all of the instructions, but it just doesn't seem to make any difference.
Any suggestions would be appreciated.
Thanks
Lee
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
Pudnik
...Welp, nKay, I have to the best of my ability captured the entire sordid story
Here. ...Looks like I've got a loooooong road ahead of me trying to get the two to work, hacking my own PHP server-side code and maintaining that hacked code to keep up with wordpress and zencart updates. Wish I knew PHP nearly as well as I know ASP...
:yuck:
...Give up on this, and switch to ecwid.
http://wordpress.org/extend/plugins/ecwid-shopping-cart/
:flex: :clap: :bigups:
-
Re: Wordpress On Zencart / Released
Right.. I don't want to go in to the many reasons why this is comparing apples to oranges, but here's a FEW reasons that folks who would want to use the WOZ plug in or add-ons like it (AKA the Numinix solution) with Zen Cart over ECWID..
Let me start with the OBVIOUS.
- ECWID is NOT FREE.. (http://www.ecwid.com/compare-plans.html) The Basic plan is free if you only have 100 products. After that you can pay $17 per month for the Silver plan.
- ECWID is a HOSTED solution. Meaning?? You do not own nor can you easily transfer your data since it will be stored on ECWID's servers.
- ECWID is NOT customizable without PAYING ECWID for that customzation.
You should be using WOZ and other blog embedding solutions with Zen Cart is you are looking to pair WordPress' features with the best ecommerce solution. Clearly you are looking to add e-commerce features to WordPress (which is a DIFFERENT site setup scenario). So blog embedding may not be the solution for you.
Good luck with your site..:smile: I'm glad you found a solution that you will be happy with.
Quote:
Originally Posted by
Pudnik
...Or better yet, switch to ecwid.
http://wordpress.org/extend/plugins/ecwid-shopping-cart/
Quote:
Originally Posted by
Pudnik
...Give up on this, and switch to ecwid.
http://wordpress.org/extend/plugins/ecwid-shopping-cart/
:flex: :clap: :bigups:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
DivaVocals
Right.. I don't want to go in to the many reasons why this is comparing apples to oranges
You're right, it's just incorrect to compare Ecwid and "WordPress on Zencart". They have completely different approaches.
Ecwid is a SaaS shopping cart. "WordPress on Zencart" is a script which you use on your own server/hosting.
SaaS and "your own app on your own server" models have different pros and cons. So we cannot really say that for example any of them is definitely better than the other one. It depends on what you want to get.
SaaS`s pros: no issues or problems with upgrades, security, performance.
Cons: no access to the source code, thus limited customization abilities
"Your own app on your own server"`s pros: access to the source code, so you can modify anything you want
Cons: you should tweak, change and maintain everything (code, servers, upgrades) yourself.
The different apps for people with different needs.
-
Re: Wordpress On Zencart / Released
Hi Diva, I've been away for over a month and want to know if you solve the issues with WOZ sideboxes issues? I don't see any updates on the downloads but not sure if you have done a beta version or even had any time to work on it?
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
ideasgirl
Hi Diva, I've been away for over a month and want to know if you solve the issues with WOZ sideboxes issues? I don't see any updates on the downloads but not sure if you have done a beta version or even had any time to work on it?
Sorry girl.. I haven't had time to work on this at all. I've been busy with other projects as well as updates to Image Handler and SUper Orders.. and since I have a better working solution for WordPress sideboxes for Zen Cart that I use for my clients, I've been less motivated to make time for this..:blush: I will try and make some time this weekend to take a peek just for YOU..:smile: Will let you know what I come up with..
-
Re: Wordpress On Zencart / Released
Hi,
I've got two problems.
Firstly my htaccess file is blocking my sub directory to open the blog page (blog directory is mysite.co.uk/blog) I know this to be true as my blog post page will open when i remove the ht access file from the server Currently my htaccess file is as follows:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.co.uk$ [OR]
RewriteCond %{HTTP_HOST} ^www.mysite.co.uk$
RewriteRule ^/?$ http://www.mysite.co.uk/shop [R=301,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mysite.co.uk
RewriteRule (.*) http://www.mysite.co.uk/$1 [R=301,L]
Could someone please tell me what i need to add to stop getting this error "This web page has a redirect loop.
The web page at http://mysite.co.uk/blog/ has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer."
My second problem is in WOZ manager. When i have imputed my root path and click confirm > install the front page of my site becomes white. Does anyone know why this may be?
Kind regards,
Elliot
P.S. "mysite.co.uk" is not my actual domain name
-
Re: Wordpress On Zencart / Released
Does anyone have this mod up and running? It seems buggy and crashes my website if I attempt to install it.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
asorethumb
[/b]
The answer to this question can be found here
I'm insterested in talking to anyone who is using this contribution. I'm having trouble getting my links to show, and I'm wondering if this is add-on that I need to code, or ??
I'm reading up on the Wordpress site, trying to figure out some customizing. Would love to hear from anyone doing the same.[/QUOTE]
Why do I get this clicking the above link????
dmm2020, you do not have permission to access this page. This could be due to one of several reasons:
1. Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
2. If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
-
Re: Wordpress On Zencart / Released
can anyone help with wordpress on zen cart please.
We have installed everything and got the blog all working fine. However, we just cannot seem to get it viewing withing our website.
Firstly we have our blog page set up as an ez page so hopefully this willl be ok.
We have followed all the instructions and got as far as:
Access zen cart admin>tools> WOZ manager.
We have looked in our main admin site where we add the products but its not there, is this the right place, if not where should we look,
Completely confused as to what to do next :frusty:so any help would be great :D
-
Re: Wordpress On Zencart / Released
using this nod is so tricky that the only generic advice would be:
Read this entire thread carefully to decide if its worth the trouble
Read all install instructions carefully, assume you will be installing WOZ twice at least.
Install plain vanilla Wordpress and Zen in a test folder, no addon mods active and get it working
If it works, expect odd interaction with Zen basic and addon mods
We are all hoping for a better implementation to come along
Cheers
Quote:
Originally Posted by
artifaxworthing
can anyone help with wordpress on zen cart please.
We have installed everything and got the blog all working fine. However, we just cannot seem to get it viewing withing our website.
Firstly we have our blog page set up as an ez page so hopefully this willl be ok.
We have followed all the instructions and got as far as:
Access zen cart admin>tools> WOZ manager.
We have looked in our main admin site where we add the products but its not there, is this the right place, if not where should we look,
Completely confused as to what to do next :frusty:so any help would be great :D
-
Re: Wordpress On Zencart / Released
I personally stopped messing with this mod because (IMHO) it's poorly written, poorly supported, and seems to die with every new Wordpress or Zen Cart update.. I use the Numinix Blog Embedding solution instead.. I paid a friend to help me develop custom Wordpress sideboxes for Zen Cart developed which can be used with the Numinix solution or as standalone Wordpress sideboxes..
Best of luck.. Wish I had better advice to give..
Quote:
Originally Posted by
artifaxworthing
can anyone help with wordpress on zen cart please.
We have installed everything and got the blog all working fine. However, we just cannot seem to get it viewing withing our website.
Firstly we have our blog page set up as an ez page so hopefully this willl be ok.
We have followed all the instructions and got as far as:
Access zen cart admin>tools> WOZ manager.
We have looked in our main admin site where we add the products but its not there, is this the right place, if not where should we look,
Completely confused as to what to do next :frusty:so any help would be great :D
-
Re: Wordpress On Zencart / Released
thanks for your replies, looks like a few hours wasted time to write off!!!! draw a line under it and start again!!
:D
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
DivaVocals
I paid a friend to help me develop custom Wordpress sideboxes for Zen Cart developed which can be used with the Numinix solution or as standalone Wordpress sideboxes..
Yes, if you are looking for "out of the box" predictable functionality from this mod, such as one expects when using a Ceon mod, for example, you will probably not get it. Real world usage is going to require some code tweaking.
-
Re: Wordpress On Zencart / Released
I'm looking for consistency -- something IMHO in which this mod has never really had a history of.. I've been through 1 major Zen Cart (and several minor) upgrades, and 3+ WordPress updates and the solutions I am using for blog embedding have required few to no updates to continue to work. The WordPress sideboxes required NO changes, and the only updates to the Numnix blog solution were changes to core Zen Cart files as a result of the Zen Cart changes..
THIS solution on the other hand?? Well when I initially started trying to use it stopped working when Wordpress went from 2.5 to 2.7.. Then it was fine (kinda) once kiddo posted her awesome fix, and I switched my client from SSU to Ceon URI.
Then the last update to WOZ seemed to cause issues for quite a few folks (I stopped testing at that point since I had a better blog embedding solution in place and didn't like or think the SSU and Ceon hacks were necessary or even GOOD changes to WOZ)
Then along comes several WordPress updates (including the awesome new WP v3.X) and the Zen Cart 1.3.9 updates, and BAM this mod is back where it was when I first stumbled into this support thread..
So it's not "out of the box predictable functionality" I'm after as much as it is just plain old consistency, and this I'm afraid is what has always been lacking in this mod.. (IMHO) I decided that if there was any code tweaking to be done, my time would be better spent tweaking a more solid solution to meet my needs versus trying to put lipstick on a pig..:laugh: Adding sideboxes to the Numnix solution gave me a solid, stable, flexible, and most importantly a consistent WORKING blog embedding solution..
IMHO, WOZ was not then and is not now a solid solution and it needs a SERIOUS re-write.
Quote:
Originally Posted by
loosefast
Yes, if you are looking for "out of the box" predictable functionality from this mod, such as one expects when using a Ceon mod, for example, you will probably not get it. Real world usage is going to require some code tweaking.
-
Re: Wordpress On Zencart / Released
I am using this mod on two 'real-world' zen cart sites and it's working OK on them.
Both are Zen 1.3.8 and using older versions of WOZ and Wordpress and, I believe there are no conflicting add-on mods:
asialuna.com
bmaaudio.com
I think the asialuna site is using a custom tpl-wp-pages sidebox for the posts display.
I admit that I have no idea what might happen if I attempted to update the zen, wordpress and WOZ to current versions on them. :unsure:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
loosefast
I am using this mod on two 'real-world' zen cart sites and it's working OK on them.
Both are Zen 1.3.8 and using older versions of WOZ and Wordpress and, I believe there are no conflicting add-on mods:
asialuna.com
bmaaudio.com
I think the asialuna site is using a custom tpl-wp-pages sidebox for the posts display.
I admit that I have no idea what might happen if I attempted to update the zen, wordpress and WOZ to current versions on them. :unsure:
The ONLY sites I have running WOZ are running Zen 1.3.8a with the old version of WOZ (with Kiddos fix) or the WOZ Sideboxes Only mod.. If I upgrade any of these sites (WP and Zen), I will not bother with the latest version of WOZ, I will simply convert to the Numinix solution (with or without my custom sideboxes)
Current version of WOZ doesn't work with current versions of WP or Zen Cart. I just cleaned up a real world site for a client where neither he or I could get WOZ working with Zen Cart 1.3.9 and WordPress 3.0.x. (and I did not plan to waste a lot of time trying to "figure out" how to "make" it work) I scrubbed out all the WOZ files, installed the Numinix blog embedding solution, and BAM, it all worked out the box..
-
Re: Wordpress On Zencart / Released
Is it still working? I saw the last update version is for v1.3.8. I don't know if it works on v1.3.9. Many people says it's out of work now.:no:
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
sansan0831
Is it still working? I saw the last update version is for v1.3.8. I don't know if it works on v1.3.9. Many people says it's out of work now.:no:
Hmmm.. see posts right above this one.. status on this mod hasn't changed since those posts were written..
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
sansan0831
Is it still working? I saw the last update version is for v1.3.8. I don't know if it works on v1.3.9. Many people says it's out of work now.:no:
I installed WOZ on the current version of ZenCart with Wordpress 2.9.2 last night and everything seems to work fine so far.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
Bakaichi
I installed WOZ on the current version of ZenCart with Wordpress 2.9.2 last night and everything seems to work fine so far.
Well for those using SEO mods or running the latest version of WP (3.0.1) that is NOT the case..
-
Re: Wordpress On Zencart / Released
It is after a long absence, everybody.
Work was busy and was not able to check it at all.
Quote:
Originally Posted by
sansan0831
Is it still working? I saw the last update version is for v1.3.8. I don't know if it works on v1.3.9. Many people says it's out of work now.:no:
I installed WOZ v1.5 on ZenCart v1.3.9f with Wordpress v3.0.1 today and almost seems to work fine so far.
In addition, the SEO module is non-inspection.
http://demo.s-page.net/woz/en_v139/Z...page=wordpress
-
Re: Wordpress On Zencart / Released
I Just installed this mod and the latest stable version of word press. Currently when im on the blog and i click on the categories or comment it redirects to another page.
My url is: truwater.com.au/wordpress
-
Re: Wordpress On Zencart / Released
Please ignore the above post got it working.
Another question i noticed that on my homepage after iinstalled wordpress and woz i noticed i have black question marks in my text.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
hira
Please comment out the following.
wordpress-config.php file
Code:
$i = strlen(DIR_WS_CATALOG);
$req = substr($_SERVER['REQUEST_URI'],$i,1);
if($req == '?'){
$_GET['main_page'] = FILENAME_WORDPRESS;
}
I think whether the problem of ezpage is solved in this.
There is possibility of the solution in the problem of the emulator, too. Please feed back.
Where do i find this file wordpress-config.php? Im having the same shipping estimator problems.
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
gee38l
Where do i find this file wordpress-config.php? Im having the same shipping estimator problems.
There is not this file now.
What kind of error will occur to be concrete?
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
hira
There is not this file now.
What kind of error will occur to be concrete?
[17-Sep-2010 02:18:13] PHP Warning: Attempt to assign property of non-object in /home/truwater/public_html/includes/modules/shipping_estimator.php on line 92
[17-Sep-2010 02:18:13] PHP Warning: Attempt to assign property of non-object in /home/truwater/public_html/includes/modules/shipping_estimator.php on line 124
I installed woz manager and wordpress last night. It all works fine but when i have woz set to true in the configuration menu it breaks my shipping estimator. If i disable woz it works fine.
-
Re: Wordpress On Zencart / Released
I also noticed that on your demo site the shipping estimator works fine when you are a visitor. Can you please assist me with what i need to do?
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
gee38l
[17-Sep-2010 02:18:13] PHP Warning: Attempt to assign property of non-object in /home/truwater/public_html/includes/modules/shipping_estimator.php on line 92
[17-Sep-2010 02:18:13] PHP Warning: Attempt to assign property of non-object in /home/truwater/public_html/includes/modules/shipping_estimator.php on line 124
I installed woz manager and wordpress last night. It all works fine but when i have woz set to true in the configuration menu it breaks my shipping estimator. If i disable woz it works fine.
What is the version of Zen-Cart?
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
hira
What is the version of Zen-Cart?
Zen Cart 1.3.8a
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
gee38l
[17-Sep-2010 02:18:13] PHP Warning: Attempt to assign property of non-object in /home/truwater/public_html/includes/modules/shipping_estimator.php on line 92
[17-Sep-2010 02:18:13] PHP Warning: Attempt to assign property of non-object in /home/truwater/public_html/includes/modules/shipping_estimator.php on line 124
I installed woz manager and wordpress last night. It all works fine but when i have woz set to true in the configuration menu it breaks my shipping estimator. If i disable woz it works fine.
Thank you.
Please try the following.
(I added a red part)
includes\init_includes\init_woz.php
Code:
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
if(
$_GET['main_page'] == 'popup_shipping_estimator'
){
// do nothing
}else
if (defined('WOZ_CONFIG_STATUS') && WOZ_CONFIG_STATUS == 'true') {
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
hira
Thank you.
Please try the following.
(I added a red part)
includes\init_includes\init_woz.php
Code:
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
if(
$_GET['main_page'] == 'popup_shipping_estimator'
){
// do nothing
}else
if (defined('WOZ_CONFIG_STATUS') && WOZ_CONFIG_STATUS == 'true') {
Thanks for the reply.
I added the red into my includes/init_includes/init_woz.php, Now it seems the shipping estimator doesnt load any more i just get a blank page. Any other suggestions?
-
Re: Wordpress On Zencart / Released
I also disabled my shipping methods one by one to see if one was causing a problem but i dont think any of them were. Also downloaded the latest version of woz and reinstalled everything but that didnt work either. There is no problem with the shipping estimator when you are logged in just if your a visitor?
-
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
gee38l
Thanks for the reply.
I added the red into my includes/init_includes/init_woz.php, Now it seems the shipping estimator doesnt load any more i just get a blank page. Any other suggestions?
A mistake was discovered on the last cord.
I'm sorry.:(
includes\init_includes\init_woz.php
Code:
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
if(
$_GET['main_page'] == 'popup_shipping_estimator';
){
// do nothing
}else
if (defined('WOZ_CONFIG_STATUS') && WOZ_CONFIG_STATUS == 'true') {