Yes, it was already included.Quote:
Originally Posted by BlessIsaacola
Printable View
Yes, it was already included.Quote:
Originally Posted by BlessIsaacola
What about the "Credit Card" fix, the payment gateway does not return to the "Checkout_Success" page it returns to some "Checktout_Process" page.
I'm about to try installing this Ultimate SEO - but actually do not understand how.
The installation manual does not consider the 1.3.0.2 version, but older ones...
Can any provide an install manual for 1.3.0.2 ?
Thanks!
the old READ ME:
http://www.dream-scape.com/pub/zenca...s/install.html
it says in the very beginning:
"Open your Zen Cart file `includes/application_top.php` and find the following code around line 355:"
and
" require(DIR_WS_LANGUAGES . $template_dir_select . $_SESSION['language'] . '.php');
// include the extra language translations
include(DIR_WS_MODULES . 'extra_definitions.php');"
-I mean:
There is no require function, or no line 355... Line 247 is the last line...
But the old one (ver 1.2.7) had 962 lines...
hmm...
I found this suddenly:
http://www.zen-cart.com/forum/showth...=35034&page=10
Post #98
How could I have missed it...?
I'll try that one!
I don't know if everyone is still having the 404 vs 200 problem, or if someone posted a fix, but this is what I did. This was done on a 1.3.0.2 store, with seo_urls v. 2.102.
1) go to "Configuration", "My Store" then find "Missing Page Check" and change to "Page Not Found". this will cause wrong pages to go to the page_not_found sitemap page instead of the index.
2) open up includes/init_includes/init_sanitize.php and change this:
to this:Code:if (!is_dir(DIR_WS_MODULES . 'pages/' . $_GET['main_page'])) {
if (MISSING_PAGE_CHECK == 'On' || MISSING_PAGE_CHECK == 'true') {
$_GET['main_page'] = 'index';
} elseif (MISSING_PAGE_CHECK == 'Page Not Found') {
$_GET['main_page'] = 'page_not_found';
}
3) open up .htacces and add this line:Code:if (!is_dir(DIR_WS_MODULES . 'pages/' . $_GET['main_page'])) {
if (MISSING_PAGE_CHECK == 'On' || MISSING_PAGE_CHECK == 'true') {
$_GET['main_page'] = 'index';
} elseif (MISSING_PAGE_CHECK == 'Page Not Found') {
header('HTTP/1.1 404 Not Found');
$_SERVER["REDIRECT_STATUS"] = 404;
$_GET['main_page'] = 'page_not_found';
}
ErrorDocument 404 /index.php?main_page=page_not_found
That will give you the page_not_found for non zen cart pages.
This method seems to give the 404 header for all wrong links, like below:
mydomain.com/notreallyapage
mydomain.com/notreallyapage.htm
mydomain.com/notreallyapage.html
If anyone sees an error in my way, let me know!
I have an issue myself though.
On a new 1.3.0.2 store, the urls when hovered over are still the old URLs.
Checkout www.zencart13.jadetrue.com
So when you hover over Shipping Info, you get
index.php?main_page=shippinginfo
instead of
shippinginfo.html
Yet when you click on it, it first goes to index.php?main_page=shippinginfo, then forwards to shippinginfo.html. All pages, all products, all links do this.
When I used this mod on a 1.2.7 store, it would show the links as shippinginfo.html. There was no refreshing or anything like that. They were just ALL the SEO URL links. I prefer it that way. Am I doing something wrong, or is this the way it works with 1.3.0.2?
Thanks!
That's odd. I have just installed the 1.3.0.2 and the Ultimate SEO - with no error like that. Sure you have updated all files you need to?
First time I tried, I got to a non SEF url at all. Then I tried once more, and it behaved just like you said...
I am using Ultimate SEO on zc 1.3.0.2
and have caracters in my language that do not show in a nice way in the url.
How do I use the "Enter special character conversions" ?
(in Admin/Configuration/SEO urls )
ø=>o doesn't work
For a simpler way to achieve the same goal use the first post on this page: http://www.zen-cart.com/forum/showth...=35034&page=11Quote:
Originally Posted by jettrue
That's great - thanks! I'd just got "the warning" about my site not having proper 404's from google and was just looking around. Thanks for the link.Quote:
Originally Posted by BlessIsaacola
I hope this flaw is fixed in the next version.