Page 30 of 39 FirstFirst ... 202829303132 ... LastLast
Results 291 to 300 of 386
  1. #291
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,314
    Plugin Contributions
    125

    Default Re: Ceon URI Mapping V5.0

    How do you go about updating a UMM copy of Ceon? It's not clear to me that ceon.net is still operating.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  2. #292
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,770
    Plugin Contributions
    30

    Default Re: Ceon URI Mapping V5.0

    I usually get a reply when I query something.
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  3. #293
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,314
    Plugin Contributions
    125

    Default Re: Ceon URI Mapping V5.0

    OK I'll try again.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  4. #294
    Join Date
    Nov 2005
    Location
    France
    Posts
    595
    Plugin Contributions
    8

    Default Re: Ceon URI Mapping V5.0

    Quote Originally Posted by swguy View Post
    OK I'll try again.
    Did you get a reply? I've never once had a response from them, even when using a non work related email address.
    Managing Director of https://jsweb.uk

    Zen Cart developer since 2009

  5. #295
    Join Date
    Nov 2005
    Location
    France
    Posts
    595
    Plugin Contributions
    8

    Default Re: Ceon URI Mapping V5.0

    I've experienced issues with URI Mapping on ZC 1.5.8

    EZ-pages rewrites don't work correctly. Although the correct url is applied to the link in the header, when clicked it simply reloads the admin page.

    Tried again using a fresh install of 1.5.8 and URI 5.1.0 to ensure it wasn't caused by some other edits, but the same issue.

    Can anyone else confirm this?

    @swguy Are you aware of any changes in 1.5.8 that would impact on URI Mapping functionality?
    Managing Director of https://jsweb.uk

    Zen Cart developer since 2009

  6. #296
    Join Date
    Nov 2005
    Location
    France
    Posts
    595
    Plugin Contributions
    8

    Default Re: Ceon URI Mapping V5.0

    That'll teach me to not read the thread fully. I see it was reported by neekfenwick a while ago on https://github.com/zencart/zencart/issues/5366 and a solution was provided by lat9.
    Managing Director of https://jsweb.uk

    Zen Cart developer since 2009

  7. #297
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,314
    Plugin Contributions
    125

    Default Re: Ceon URI Mapping V5.0

    Quote Originally Posted by strelitzia View Post
    Did you get a reply? I've never once had a response from them, even when using a non work related email address.
    No sir. Not a peep.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #298
    Join Date
    Feb 2018
    Posts
    11
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping V5.0

    There is an XSS vulnerability in this. Patch below.

    manufacturers_id one is definitely exploitable, other ones I added to be safe, not sure if they are sanitized elsewhere.

    Code:
    +++ new/includes/classes/class.CeonURIMappingHandler.php     2023-05-25 12:26:02.822504000 -0700
    @@ -408,7 +408,7 @@
                    // A product review's page needs the ID included as part of the canonical URI
                    if (defined('FILENAME_PRODUCT_REVIEWS_INFO') && $main_page == FILENAME_PRODUCT_REVIEWS_INFO &&
                                    isset($_GET['reviews_id'])) {
    -                       $ceon_uri_mapping_canonical_uri .= '?reviews_id=' . $_GET['reviews_id'];
    +                       $ceon_uri_mapping_canonical_uri .= '?reviews_id=' . (int)$_GET['reviews_id'];
                    }
                    if (isset($GLOBALS['zco_notifier'])) {
                            $GLOBALS['zco_notifier']->notify('CEON_CLASS_HANDLER_HANDLE_STATIC_URI_END', compact('mapping_info', 'uri_to_match'));
    @@ -689,11 +689,13 @@
                                    global $ceon_uri_mapping_canonical_uri;
    
                                    $ceon_uri_mapping_canonical_uri = HTTP_SERVER . DIR_WS_CATALOG .
    -                                       'index.php?main_page=index&manufacturers_id=' . $_GET['manufacturers_id'];
    +                                       'index.php?main_page=index&manufacturers_id=' . (int)$_GET['manufacturers_id'];
    
                            } else if (isset($_GET['typefilter']) && $_GET['typefilter'] != '' &&
                                            isset($_GET[$_GET['typefilter'] . '_id']) && $_GET[$_GET['typefilter'] . '_id'] != '') {
                                    global $ceon_uri_mapping_canonical_uri;
    +
    +                               $_GET['typefilter'] = htmlspecialchars($_GET['typefilter']);
    
                                    $ceon_uri_mapping_canonical_uri = HTTP_SERVER . DIR_WS_CATALOG . 'index.php?main_page=index' .
                                            '&typefilter=' . $_GET['typefilter'] . '&' . $_GET['typefilter'] . '_id=' .

  9. #299
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,314
    Plugin Contributions
    125

    Default Re: Ceon URI Mapping V5.0

    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #300
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,770
    Plugin Contributions
    30

    Default Re: Ceon URI Mapping V5.0

    ok, done
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

 

 
Page 30 of 39 FirstFirst ... 202829303132 ... LastLast

Similar Threads

  1. Ceon URI Mapping v4.x
    By conor in forum All Other Contributions/Addons
    Replies: 2444
    Last Post: 7 Oct 2020, 03:13 AM
  2. v139d Ceon uri mapping, how to generate uri mapping for bulk bulk-imported products?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 8 Jan 2013, 06:52 AM
  3. CEON URI Mapping
    By jmkent in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 22 Nov 2012, 04:28 PM
  4. Ceon URI Mapping v4
    By conor in forum All Other Contributions/Addons
    Replies: 110
    Last Post: 14 Aug 2011, 02:51 PM

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