Page 51 of 146 FirstFirst ... 41495051525361101 ... LastLast
Results 501 to 510 of 1456
  1. #501
    Join Date
    Nov 2003
    Posts
    783
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Bug Report

    SEO URLs Version: Any
    Zen Cart Version: Any
    PHP Version: Any
    MySQL Version: Any
    Web Server: Any
    Server Platform: Any

    Bug Summary: Product type URLs don't contain the product name.

    Bug Details:
    URLs generated for custom product types don't contain the product name, and it is tedious to hack the SEO URLs source code to add support for custom product types.

  2. #502
    Join Date
    Nov 2003
    Posts
    783
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Bug Report

    SEO URLs Version: Any
    Zen Cart Version: Any
    PHP Version: Any
    MySQL Version: Any
    Web Server: Any
    Server Platform: Any

    Bug Summary: Incorrectly rewrites real file URLs

    Bug Details:
    URLs to real files generated with the zen_href_link() funciton are incorrectly rewritten by SEO URLs. For example thefile.php is rewritten as thefile.php.html.

    This issue is known to most commonly affect the PayPal IPN script (fixed since version 2.102) and phpBB installations, but will impact any real files run through zen_href_link() with SEO URLs enabled.

  3. #503
    Join Date
    Aug 2005
    Location
    Cincinnati
    Posts
    334
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    That's all of mine, plus a few I didn't know existed. Anyone manage to reproduce the customer login error when recreate sessions = true and CHEMOS is running?

    Sean

  4. #504
    Join Date
    May 2006
    Location
    Texas
    Posts
    565
    Plugin Contributions
    4

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by tvadpro View Post
    That's all of mine, plus a few I didn't know existed. Anyone manage to reproduce the customer login error when recreate sessions = true and CHEMOS is running?

    Sean
    I can reproduce that.. had to disable recreate sessions with this mod installed due to it. Whenever I set up a test store without SEO, recreate sessions works just fine

  5. #505
    Join Date
    May 2006
    Location
    Texas
    Posts
    565
    Plugin Contributions
    4

    Default Re: Chemo's Ultimate URL's

    Bug Report

    SEO URLs Version: 2.103 (possibly any)
    Zen Cart Version: Any
    PHP Version: Any
    MySQL Version: Any
    Web Server: Any
    Server Platform: Any

    Bug Summary: Admin's link to "Online Catalog" broken

    Bug Details: When you click on the "Online catalog" link inside the administration panel, it loads to a blank page. This may be due to that link pointing to a null page (index.php?main_page=)

  6. #506
    Join Date
    Nov 2003
    Posts
    783
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    RE: Bug #507, Admin's link to "Online Catalog" broken

    samad64, I'm not able to reproduce this problem. It shouldn't be a problem.

    What are your SEO URL settings?

    Also, a blank page indicates that there was a PHP Fatal Error and display_errors is turned off. Could you temporarily turn display_errors on, get the full error message, and post it here?

    You can turn display_errors on in .htaccess by using:
    Code:
    php_flag display_errors on
    Thanks

  7. #507
    Join Date
    May 2006
    Location
    Texas
    Posts
    565
    Plugin Contributions
    4

    Default Re: Chemo's Ultimate URL's

    display_errors is on.. this has been an issue for me on both php4 and php5.. currently on php5

    Here's a screenshot of my settings: http://www.samad64.com/screen.gif

    Also.. here's my HTACCESS file in case its something i screwed up :)

    Code:
    ##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:
    
    Options +FollowSymLinks
    RewriteEngine On
    RewriteBase /
    
    # Rewrite /store/ to /
    #redirect 301 /store http://www.getyourgameshere.com
    #redirect 301 /store/ http://www.getyourgameshere.com/
    
    # Rewrite non-www to www
    #RewriteCond %{HTTP_HOST} !^www\.getyourgameshere\.com [NC]
    #RewriteRule ^(.*) http://www.getyourgameshere.com/$1 [L,R=301]
    
    # From Ultimate SEO URLs
    RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
    
    # For Open Operations Info Manager
    RewriteRule ^(.*)-i-([0-9]+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING} [L]
    
    # For dreamscape's News & Articles Manager
    RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING} [L]
    RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING} [L]
    RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING} [L]
    RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING} [L]
    RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING} [L]
    RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]
    
    # All other pages
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f [NC] 
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING} [L]
    One last thing - I use firefox.. haven't tried this in IE

  8. #508
    Join Date
    Nov 2003
    Posts
    783
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Ok samad64, it appears to be a problem between SEO URLs and the wordpress in Zen Cart mod. Thanks for the report ;-)

  9. #509
    Join Date
    Nov 2003
    Posts
    783
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by tvadpro View Post
    Anyone manage to reproduce the customer login error when recreate sessions = true and CHEMOS is running?
    Yes, but the trouble is everyone who reported it says it is only "intermittent" or once every 100 logins or something of that nature. Tracking down bugs is extremely difficult if you don't have a test case that will reproduce the bug 100% of the time.

    But I put a little time in since many seem to have this problem and have come up with a 100% reproducible test case, which should allow me to make sure the issues is fixed.

    Bug Report

    SEO URLs Version: Any
    Zen Cart Version: Any
    PHP Version: Any
    MySQL Version: Any
    Web Server: Any
    Server Platform: Any

    Bug Summary: Customer login may fail when "Recreate Session" is true and "Force Cookie Use" is false.

    Bug Details:
    In order for this bug to appear all of the following criteria must be met. If one or more is not met, the bug will have no impact, making it appear to be an intermittent problem.
    • The Session setting Force Cookie Use must be False
    • The Session setting Recreate Session must be True
    • The Session ID (zenid=xxxx...) must appear in the login URL


    If all of the above are met, then upon attempting to login, a user will be redirected back to the page they were on prior to login with the old Session ID in the URL instead of the regenerated Session ID, causing them to remain logged out.

    The most easy way to reproduce the bug is to start a new session at a store and try to login as the first thing you do.

  10. #510
    Join Date
    Nov 2003
    Posts
    783
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Bug Reports Status Update

    The following bugs are now confirmed to being fixed in Version 3.0.0-beta1:
    • #499, Breaks EZ Pages internal links
    • #501, MySQL “Unknown column” errors
    • #503, Product types not supported
    • #504, Incorrectly rewrites real file URLs
    • #507, Admin link to “Online Catalog” is broken when “Wordpress On Zencart” is also installed
    • #511, Customer login may fail when “Recreate Session” is True and “Force Cookie Use” is False


    The following feature requests are now confirmed to being implemented in Version 3.0.0-beta1:
    • #275, International and transliterated URL support
    • #502, EZ Pages support


    I'll allow a little more time for any more bug reports for the current version before releasing Version 3.0.0-beta1 for public testing.

 

 
Page 51 of 146 FirstFirst ... 41495051525361101 ... LastLast

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