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