Page 1 of 5 123 ... LastLast
Results 1 to 10 of 41
  1. #1
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default URL rewriting from Ceon to Utimate URL.

    I have changed my URL rewriting from the CEON plugin to the Ultimate plugin when I upgraded to Zencart 1.5.3.
    I can not get the URLs exactly the same as Ultimate URLs adds the category and product id to the end so I have setup a custom 404 page to catch anyone that uses the old CEON path.

    My problem is that I am getting some soft 404 errors in Webmaster tools.

    Eg: the URL http://www.thehorsestall.com.au/stor...c-box-carousel is going to a blank white screen. If you backspace to http://www.thehorsestall.com.au/store/jewellery-boxes it goes to the 404 page like I want.
    Why is it doing this and what can I do about it?

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,925
    Plugin Contributions
    96

    Default Re: URL rewriting from Ceon to Utimate URL.

    "blank white screen" implies that there's a debug-log file present in your /logs directory; that file will identify the PHP-related issue.

  3. #3
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: URL rewriting from Ceon to Utimate URL.

    Hi lat9

    No there is nothing in the logs directory. Is there some kind of character limit somewhere because if you backspace the url to http://www.thehorsestall.com.au/stor...e-music-box-ca the 404 page then appears?

  4. #4
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: URL rewriting from Ceon to Utimate URL.

    After a bit of experimenting I have found that this part of the .htaccess that is added by Ultimate URLS is causing the problem:
    Code:
    # All other pages
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index\.php?main_page=$1&%{QUERY_STRING} [L]
    With it in the .htaccess file it seems to go to the Zen Cart 404 page for deleted shorter product URLS but for deleted longer ones it just gives the white screen??
    When I take it out all product URLs that are wrong go to the 404 page I created in Cpanel.
    Any ideas about why the above bit of code does what it does?

  5. #5
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: URL rewriting from Ceon to Utimate URL.

    With the code mentioned in the previous post still removed I have now added the following to .htaccess file:
    Code:
    # Handle when a resource is not found (404 Error Page)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index\.php?main_page=page_not_found&%{QUERY_STRING} [L]
    And all missing URLs, no matter how long they are, go to the Zen Cart 404 page.

  6. #6
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: URL rewriting from Ceon to Utimate URL.

    I don't wish to start anything. Knowing that the CEON software hasn't been fully updated for ZC 1.5.3 by including the folder with the same name in the installation package based on posts in the same forum, I was curious about why the change?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #7
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: URL rewriting from Ceon to Utimate URL.

    Quote Originally Posted by mc12345678 View Post
    I don't wish to start anything. Knowing that the CEON software hasn't been fully updated for ZC 1.5.3 by including the folder with the same name in the installation package based on posts in the same forum, I was curious about why the change?
    When I upgraded to 1.5.3 I had a problem with using the PayPal Express option. It gave the error "CancelURL is invalid". I narrowed the issue down to the CEON module. I went live without any URL remapping. Tried the Ultimate URLs on my test site and did not get the Paypal error. So I put it on my live site.

  8. #8
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: URL rewriting from Ceon to Utimate URL.

    Quote Originally Posted by robbie269 View Post
    When I upgraded to 1.5.3 I had a problem with using the PayPal Express option. It gave the error "CancelURL is invalid". I narrowed the issue down to the CEON module. I went live without any URL remapping. Tried the Ultimate URLs on my test site and did not get the Paypal error. So I put it on my live site.
    You didn't happen to have the rewritecond that is listed in the instructions as something like .htm|.html|.php did you? In the .htaccess file? If so, that is a known issue to include and is documented in the forum to not work with paypal express...

    Regardless I'm working on something with the rewriter on a 1.5.3 site and will be sure to test that aspect now that the comment has been made. Thank you for pointing that issue out, will see if it is reproducible when using the suggested .htaccess file made by the software.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #9
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: URL rewriting from Ceon to Utimate URL.

    Quote Originally Posted by mc12345678 View Post
    You didn't happen to have the rewritecond that is listed in the instructions as something like .htm|.html|.php did you? In the .htaccess file? If so, that is a known issue to include and is documented in the forum to not work with paypal express...
    I still have a copy of the original .htaccess file and there is no mention of .htm|etc. The CEON module worked fine for me on version 1.5.1.

  10. #10
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: URL rewriting from Ceon to Utimate URL.

    Quote Originally Posted by robbie269 View Post
    I still have a copy of the original .htaccess file and there is no mention of .htm|etc. The CEON module worked fine for me on version 1.5.1.
    Thank you for checking. Another question, when the new store was tested, was it located in the same location as the old store? Ie, did the return address in paypal set to go back to the 1.5.3 site or the previous version's location? (I don't recall the comparison results, but I thought there were some changes to files associated with paypal and I don't know if that means/meant ipnhandler as well... (I'm about done installing paypal credentials to test, this issue.)
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 1 of 5 123 ... LastLast

Similar Threads

  1. Ceon url mapping url issue
    By Indiasupplement in forum General Questions
    Replies: 1
    Last Post: 22 Sep 2013, 01:23 AM
  2. Remove URL Rewriting from Checkout Page - Ultimate SEO URLs
    By NewbietoEC in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 18 Aug 2010, 02:51 PM
  3. URL Rewriting?
    By John Vieth in forum General Questions
    Replies: 3
    Last Post: 3 Dec 2007, 06:53 PM

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