Results 1 to 10 of 392

Hybrid View

  1. #1
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,303
    Plugin Contributions
    1

    Default Re: Ceon URI Mapping V5.0

    ZC v1.56c
    PHP v7.2.10

    In admin > modules > payment with Paypal EC and Square enabled I get these PHP warnings on a page refresh:

    (this refers to paypal.php, the others refer to paypalwpp.php & square.php)

    Code:
    [24-Jul-2019 18:33:45 Europe/London] Request URI: /admin/modules.php?set=payment, IP address: 127.0.0.1
    #1  CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [D:\wamp64\www\mydomain.co.uk\includes\classes\class.base.php:103]
    #2  base->notify() called at [D:\wamp64\www\mydomain.co.uk\admin\includes\functions\html_output.php:50]
    #3  zen_catalog_href_link() called at [D:\wamp64\www\mydomain.co.uk\includes\languages\english\modules\payment\paypal.php:14]
    #4  include(D:\wamp64\www\mydomain.co.uk\includes\languages\english\modules\payment\paypal.php) called at [D:\wamp64\www\mydomain.co.uk\admin\modules.php:192]
    --> PHP Warning: Use of undefined constant ENABLE_SSL - assumed 'ENABLE_SSL' (this will throw an Error in a future version of PHP) in D:\wamp64\www\mydomain.co.uk\admin\includes\classes\observers\class.CeonURIMappingLinkBuildAdmin.php on line 46.
    relevant lines in admin\includes\classes\observers\class.CeonURIMappingLinkBuildAdmin.php are:

    Code:
    if ($connection == 'NONSSL') {
    						$link = HTTP_SERVER;
    				} elseif ($connection == 'SSL') {
    						if (ENABLE_SSL == 'true') {
    								$link = HTTPS_SERVER;
    						} else {
    								$link = HTTP_SERVER;
    						}
    				}
    Simon

  2. #2
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Ceon URI Mapping V5.0

    Quote Originally Posted by simon1066 View Post
    ZC v1.56c
    PHP v7.2.10

    In admin > modules > payment with Paypal EC and Square enabled I get these PHP warnings on a page refresh:

    (this refers to paypal.php, the others refer to paypalwpp.php & square.php)

    Code:
    [24-Jul-2019 18:33:45 Europe/London] Request URI: /admin/modules.php?set=payment, IP address: 127.0.0.1
    #1  CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [D:\wamp64\www\mydomain.co.uk\includes\classes\class.base.php:103]
    #2  base->notify() called at [D:\wamp64\www\mydomain.co.uk\admin\includes\functions\html_output.php:50]
    #3  zen_catalog_href_link() called at [D:\wamp64\www\mydomain.co.uk\includes\languages\english\modules\payment\paypal.php:14]
    #4  include(D:\wamp64\www\mydomain.co.uk\includes\languages\english\modules\payment\paypal.php) called at [D:\wamp64\www\mydomain.co.uk\admin\modules.php:192]
    --> PHP Warning: Use of undefined constant ENABLE_SSL - assumed 'ENABLE_SSL' (this will throw an Error in a future version of PHP) in D:\wamp64\www\mydomain.co.uk\admin\includes\classes\observers\class.CeonURIMappingLinkBuildAdmin.php on line 46.
    relevant lines in admin\includes\classes\observers\class.CeonURIMappingLinkBuildAdmin.php are:

    Code:
    if ($connection == 'NONSSL') {
                            $link = HTTP_SERVER;
                    } elseif ($connection == 'SSL') {
                            if (ENABLE_SSL == 'true') {
                                    $link = HTTPS_SERVER;
                            } else {
                                    $link = HTTP_SERVER;
                            }
                    }
    Looks like those are incorrectly trying to resolve to "admin" style links instead of the expected catalog style.

    in admin\includes\classes\observers\class.CeonURIMappingLinkBuildAdmin.php

    Change:
    Code:
    if ($connection == 'NONSSL') {
                            $link = HTTP_SERVER;
                    } elseif ($connection == 'SSL') {
                            if (ENABLE_SSL == 'true') {
                                    $link = HTTPS_SERVER;
                            } else {
                                    $link = HTTP_SERVER;
                            }
                    }
    To:
    Code:
    if ($connection == 'NONSSL') {
                            $link = HTTP_CATALOG_SERVER;
                    } elseif ($connection == 'SSL') {
                            if (ENABLE_SSL_CATALOG == 'true') {
                                    $link = HTTPS_CATALOG_SERVER;
                            } else {
                                    $link = HTTP_CATALOG_SERVER;
                            }
                    }
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #3
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,303
    Plugin Contributions
    1

    Default Re: Ceon URI Mapping V5.0

    Quote Originally Posted by mc12345678 View Post
    Code:
    if ($connection == 'NONSSL') {
                            $link = HTTP_CATALOG_SERVER;
                    } elseif ($connection == 'SSL') {
                            if (ENABLE_SSL_CATALOG == 'true') {
                                    $link = HTTPS_CATALOG_SERVER;
                            } else {
                                    $link = HTTP_CATALOG_SERVER;
                            }
                    }
    Thank you @mc12345678, that solved the issue.
    Simon

  4. #4
    Join Date
    Mar 2019
    Location
    Cornwall
    Posts
    31
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping V5.0

    I've just installed this on 1.5.6, and wanted to say, great job. It is a bloody fantastic bit of software.

  5. #5
    Join Date
    Mar 2019
    Location
    Cornwall
    Posts
    31
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping V5.0

    Has anybody got Ceon's Mapping Manager installed on 1.5.6? I would like to buy it as my store already has thousands of products and I don't want to map them manually, but just wanted to be sure it has also been updated to 1.5.6.

  6. #6
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,835
    Plugin Contributions
    31

    Default Re: Ceon URI Mapping V5.0

    On their site they have an updated version, no doubt that works.

    (I modified the old one before they had that available and haven't got a need for the new one yet.)
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  7. #7
    Join Date
    Mar 2019
    Location
    Cornwall
    Posts
    31
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping V5.0

    Quote Originally Posted by torvista View Post
    On their site they have an updated version, no doubt that works.

    (I modified the old one before they had that available and haven't got a need for the new one yet.)
    Thank you.

    Another question, has anybody got this working with Dynamic Filter plugin? IS there any way to get them to work together? The mapping works brilliantly, but any attempt to filter dynamically results in a 404 error.

 

 

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

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