Page 14 of 146 FirstFirst ... 412131415162464114 ... LastLast
Results 131 to 140 of 1456
  1. #131
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by BlessIsaacola
    Please note that the above IPN patch may have been included in DrByte's fix but I did not check it.
    Yes, it was already included.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #132
    Join Date
    Oct 2005
    Posts
    287
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    What about the "Credit Card" fix, the payment gateway does not return to the "Checkout_Success" page it returns to some "Checktout_Process" page.

  3. #133
    Join Date
    Jan 2005
    Location
    Scandinavia, North of Europe.
    Posts
    200
    Plugin Contributions
    0

    Re: Chemo's Ultimate URL's

    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...
    ##########################################################################################____
    Where there's a question, -there may be an answer!

    Did I mention that the ZC team rules(!!!) ???

  4. #134
    Join Date
    Jan 2005
    Location
    Scandinavia, North of Europe.
    Posts
    200
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    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!
    ##########################################################################################____
    Where there's a question, -there may be an answer!

    Did I mention that the ZC team rules(!!!) ???

  5. #135
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Chemo's Ultimate URL's

    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:

    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';
        }
    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') {
    	   header('HTTP/1.1 404 Not Found');
           $_SERVER["REDIRECT_STATUS"] = 404;
          $_GET['main_page'] = 'page_not_found';
        }
    3) open up .htacces and add this line:
    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!

  6. #136
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Chemo's Ultimate URL's

    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!

  7. #137
    Join Date
    Jan 2005
    Location
    Scandinavia, North of Europe.
    Posts
    200
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    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...
    ##########################################################################################____
    Where there's a question, -there may be an answer!

    Did I mention that the ZC team rules(!!!) ???

  8. #138
    Join Date
    Jan 2005
    Location
    Scandinavia, North of Europe.
    Posts
    200
    Plugin Contributions
    0

    Default Convert caracters - how do I do it?

    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
    ##########################################################################################____
    Where there's a question, -there may be an answer!

    Did I mention that the ZC team rules(!!!) ???

  9. #139
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by jettrue
    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:

    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';
        }
    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') {
    	   header('HTTP/1.1 404 Not Found');
           $_SERVER["REDIRECT_STATUS"] = 404;
          $_GET['main_page'] = 'page_not_found';
        }
    3) open up .htacces and add this line:
    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!
    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=11

  10. #140
    kelvyn Guest

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by BlessIsaacola
    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=11
    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.
    I hope this flaw is fixed in the next version.

 

 

Similar Threads

  1. v151 with ultimate seo Url,how to change the ez-page url ?
    By whywell in forum General Questions
    Replies: 1
    Last Post: 17 Jan 2013, 09:12 AM
  2. Chemo's Ultimate SEO URL's and EZPages?
    By Doodlebuckets in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 5 Aug 2008, 08:36 PM
  3. Fix for Easy Populate Froogle with Chemo's Ultimate URL's
    By mccord42 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 8 Feb 2007, 04:06 PM
  4. Can NOT access Admin after installing Chemo's Ultimate URL's
    By hankliu in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 12 Dec 2006, 10:33 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR