Zen Cart Logo
Forums / All Other Contributions/Addons / Ceon URI Mapping V5.0

Ceon URI Mapping V5.0

Views: 88,598

Results 121 to 140 of 392
5 May 2020, 9:37 PM
#121
doomm avatar

doomm

New Zenner

Join Date:
Sep 2008
Posts:
54
Plugin Contributions:
0

Ceon URI Mapping V5.0

Hi, guys,

I´m getting this PHP Warning in my logs folder:

[05-May-2020 21:27:50 UTC] Request URI: /admin/orders.php?search=xxx&page=1&oID=9695&action=update_order, IP address: xxx
#1  CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2  base->notify() called at [/site.com/html/admin/includes/functions/html_output.php:50]
#3  zen_catalog_href_link() called at [/site.com/includes/functions/functions_osh_update.php:119]
#4  zen_update_orders_history() called at [/site.com/html/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_SSL - assumed 'ENABLE_SSL' (this will throw an Error in a future version of PHP) in /site.com/html/admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.

tried a solution from the post nr. 50, but didn´t work out here. Do you have any suggestion, please, what could I try?

Thanks

6 May 2020, 12:30 AM
#122
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

Doomm:

Hi, guys,

I´m getting this PHP Warning in my logs folder:

[05-May-2020 21:27:50 UTC] Request URI: /admin/orders.php?search=xxx&page=1&oID=9695&action=update_order, IP address: xxx
#1 CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2 base->notify() called at [/site.com/html/admin/includes/functions/html_output.php:50]
#3 zen_catalog_href_link() called at [/site.com/includes/functions/functions_osh_update.php:119]
#4 zen_update_orders_history() called at [/site.com/html/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_SSL - assumed 'ENABLE_SSL' (this will throw an Error in a future version of PHP) in /site.com/html/admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.

> 
> tried a solution from the post nr. 50, but didn´t work out here. Do you have any suggestion, please, what could I try?
> 
> Thanks
Please provide your current code content of admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php from about line 40 to line 50.
6 May 2020, 7:36 AM
#123
doomm avatar

doomm

New Zenner

Join Date:
Sep 2008
Posts:
54
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

Here it is:

						$ceon_uri_mapping_href_link_builder = new CeonURIMappingHREFLinkBuilder();
				}

				if ($connection == 'NONSSL') {
						$link = HTTP_CATALOG_SERVER;
				} elseif ($connection == 'SSL') {
						if (ENABLE_CATALOG_SSL == 'true') {
								$link = HTTPS_CATALOG_SERVER;
						} else {
								$link = HTTP_CATALOG_SERVER;
						}
6 May 2020, 8:29 AM
#124
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

Doomm:

Here it is:

                    $ceon_uri_mapping_href_link_builder = new CeonURIMappingHREFLinkBuilder();
            }

            if ($connection == 'NONSSL') {
                    $link = HTTP_CATALOG_SERVER;
            } elseif ($connection == 'SSL') {
                    if (ENABLE_CATALOG_SSL == 'true') {
                            $link = HTTPS_CATALOG_SERVER;
                    } else {
                            $link = HTTP_CATALOG_SERVER;
                    }
And *still* getting the same error repeatedly? Curious about how if ENABLE_SSL is not present in that area...
6 May 2020, 8:41 AM
#125
doomm avatar

doomm

New Zenner

Join Date:
Sep 2008
Posts:
54
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

I´m sorry, my bad, it seems that I pasted a wrong file, here is the correct one:

[06-May-2020 08:32:39 UTC] Request URI: /admin/orders.php?selected_box=customers&status=6&page=1&oID=9695&action=update_order, IP address: xxx
#1  CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2  base->notify() called at [/admin/includes/functions/html_output.php:50]
#3  zen_catalog_href_link() called at [/site.com/html/includes/functions/functions_osh_update.php:119]
#4  zen_update_orders_history() called at [/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_CATALOG_SSL - assumed 'ENABLE_CATALOG_SSL' (this will throw an Error in a future version of PHP) in /admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.

[06-May-2020 08:32:39 UTC] Request URI: /admin/orders.php?selected_box=customers&status=6&page=1&oID=9695&action=update_order, IP address: xxx
#1  CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2  base->notify() called at [/admin/includes/functions/html_output.php:50]
#3  zen_catalog_href_link() called at [/site.com/html/includes/functions/functions_osh_update.php:127]
#4  zen_update_orders_history() called at [/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_CATALOG_SSL - assumed 'ENABLE_CATALOG_SSL' (this will throw an Error in a future version of PHP) in /admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.
6 May 2020, 9:57 AM
#126
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

Doomm:

I´m sorry, my bad, it seems that I pasted a wrong file, here is the correct one:

[06-May-2020 08:32:39 UTC] Request URI: /admin/orders.php?selected_box=customers&status=6&page=1&oID=9695&action=update_order, IP address: xxx
#1 CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2 base->notify() called at [/admin/includes/functions/html_output.php:50]
#3 zen_catalog_href_link() called at [/site.com/html/includes/functions/functions_osh_update.php:119]
#4 zen_update_orders_history() called at [/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_CATALOG_SSL - assumed 'ENABLE_CATALOG_SSL' (this will throw an Error in a future version of PHP) in /admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.

[06-May-2020 08:32:39 UTC] Request URI: /admin/orders.php?selected_box=customers&status=6&page=1&oID=9695&action=update_order, IP address: xxx
#1 CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2 base->notify() called at [/admin/includes/functions/html_output.php:50]
#3 zen_catalog_href_link() called at [/site.com/html/includes/functions/functions_osh_update.php:127]
#4 zen_update_orders_history() called at [/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_CATALOG_SSL - assumed 'ENABLE_CATALOG_SSL' (this will throw an Error in a future version of PHP) in /admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.

Then what are the contents of the admin/includes/configure.php up to the point of the DB_ type defines? (Only need the left side of the defines if wanting to keep other information private).
Also what version of Zen Cart is being used to be able to compare the above results with what is expected?
6 May 2020, 10:02 AM
#127
doomm avatar

doomm

New Zenner

Join Date:
Sep 2008
Posts:
54
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

This is a 1.5.6c Zencart (updated recently from 1.5.4),

here are details from configure.php (I hope you thought these, right?)

define('HTTP_SERVER', '');
define('HTTP_CATALOG_SERVER', '');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'true');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_FS_CATALOG', '');
6 May 2020, 10:16 AM
#128
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

Doomm:

Here it is:

                    $ceon_uri_mapping_href_link_builder = new CeonURIMappingHREFLinkBuilder();
            }

            if ($connection == 'NONSSL') {
                    $link = HTTP_CATALOG_SERVER;
            } elseif ($connection == 'SSL') {
                    if (ENABLE_CATALOG_SSL == 'true') {
                            $link = HTTPS_CATALOG_SERVER;
                    } else {
                            $link = HTTP_CATALOG_SERVER;
                    }

> **Doomm:**
>
> I´m sorry, my bad, it seems that I pasted a wrong file, here is the correct one:
> 
> ```
[06-May-2020 08:32:39 UTC] Request URI: /admin/orders.php?selected_box=customers&status=6&page=1&oID=9695&action=update_order, IP address: xxx
#1  CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2  base->notify() called at [/admin/includes/functions/html_output.php:50]
#3  zen_catalog_href_link() called at [/site.com/html/includes/functions/functions_osh_update.php:119]
#4  zen_update_orders_history() called at [/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_CATALOG_SSL - assumed 'ENABLE_CATALOG_SSL' (this will throw an Error in a future version of PHP) in /admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.

[06-May-2020 08:32:39 UTC] Request URI: /admin/orders.php?selected_box=customers&status=6&page=1&oID=9695&action=update_order, IP address: xxx
#1  CeonURIMappingLinkBuildAdmin->updateNotifySEFUInterceptAdmcathref() called at [/site.com/html/includes/classes/class.base.php:103]
#2  base->notify() called at [/admin/includes/functions/html_output.php:50]
#3  zen_catalog_href_link() called at [/site.com/html/includes/functions/functions_osh_update.php:127]
#4  zen_update_orders_history() called at [/admin/orders.php:158]
--> PHP Warning: Use of undefined constant ENABLE_CATALOG_SSL - assumed 'ENABLE_CATALOG_SSL' (this will throw an Error in a future version of PHP) in /admin/includes/classes/observers/class.CeonURIMappingLinkBuildAdmin.php on line 46.

Doomm:

This is a 1.5.6c Zencart (updated recently from 1.5.4),

here are details from configure.php (I hope you thought these, right?)

define('HTTP_SERVER', '');
define('HTTP_CATALOG_SERVER', '');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'true');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_FS_CATALOG', '');




> **Doomm:**
>
> This is a 1.5.6c Zencart (updated recently from 1.5.4),
> 
> here are details from configure.php (I hope you thought these, right?)
> 
> ```
define('HTTP_SERVER', '');
define('HTTP_CATALOG_SERVER', '');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'true');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_FS_CATALOG', '');

Double check the changes directed from back at post 50 that are copied below:

mc12345678:

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:

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

> To:
> ```
if ($connection == 'NONSSL') {
                        $link = HTTP_CATALOG_SERVER;
                } elseif ($connection == 'SSL') {
                        if (ENABLE_SSL_CATALOG == 'true') {
                                $link = HTTPS_CATALOG_SERVER;
                        } else {
                                $link = HTTP_CATALOG_SERVER;
                        }
                }

Notice the difference in how the "To:" section of code differs from what was provided above in this post about how the content appears... Specifically how in the problem file it says ENABLE_CATALOG_SSL instead of ENABLE_SSL_CATALOG.

(Don't worry it wasn't obvious (to me anyways) when that section of code was posted a few posts back and really it was only when the proper error message was provided that the real issue was identified.)

6 May 2020, 11:19 AM
#129
doomm avatar

doomm

New Zenner

Join Date:
Sep 2008
Posts:
54
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

OMG, I see it now :-(

Thank you very much for your patience and help! I didn´t even think that could be the problem.

17 May 2020, 1:39 PM
#130
jimmie avatar

jimmie

Totally Zenned

Join Date:
Jan 2013
Location:
New Port Richey, Florida
Posts:
969
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

zen 1.56c php7.0
im getting this in logs.
PHP Fatal error: Uncaught Error: Call to a member function table_exists() on null in /var/www/clients/xxx/xxx/me/includes/classes/class.CeonURIMappingAdminEZPages.php:87

19 May 2020, 10:04 PM
#131
jimmie avatar

jimmie

Totally Zenned

Join Date:
Jan 2013
Location:
New Port Richey, Florida
Posts:
969
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

here is line 87 and surrounding lines

		if (is_null($name)) {
			// Assume name will be used.. load name from database
	Line 87 -> 		$ez_page_table = (defined('TABLE_EZPAGES_CONTENT') && $sniffer->table_exists(TABLE_EZPAGES_CONTENT)) ? TABLE_EZPAGES_CONTENT : TABLE_EZPAGES;
			
			$ez_page_name_result = $db->Execute("
				SELECT
					pages_title
				FROM
					" . $ez_page_table . "
				WHERE
					pages_id = " . (int) $id . "
				AND
					languages_id = " . (int) $language_id);
			
			$name = $ez_page_name_result->fields['pages_title'];
		}
20 May 2020, 2:33 PM
#132
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

jimmie:

zen 1.56c php7.0
im getting this in logs.
PHP Fatal error: Uncaught Error: Call to a member function table_exists() on null in /var/www/clients/xxx/xxx/me/includes/classes/class.CeonURIMappingAdminEZPages.php:87

Looks like on line 84 need to change:

global $db;

to:

global $db, $sniffer;
17 Jun 2020, 6:05 PM
#133
ink avatar

ink

Zen Follower

Join Date:
Jul 2004
Posts:
140
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

Apparently this is where to post, just did on the old whatever...

Just did a fresh install of latest 1.5.6, piece of cake to setup like usual. I thought Id try and add the late legend Conors' SEO module as it has been invaluable since first using all those years ago when he first came here on an old 1.3vs site.

So I set it up y/day on another test site but after I had installed a couple of other modules and it didnt work, so set it up on this fresh install and it just loops through and wont stop until the script stops.

I used the recommended .htaccess data, then tried the "/" fix neither works.

There is no error log and furthermore the test page says everything is installed correctly.

Does anyone have some idea that I could check, Im stumped and cant proceed with my website upgrde until I get this setup as my index page is fixed with all of the rewritten links for a start.

Congratulations! All the checks passed!
No problems were found with the settings in the store's configuration files, and all the modified core files have the correct modifications present!

This installation check does not check the rewrite rule for the store though, so please read and apply the following if you have not already done so..

This is the error:
This page isn’t working [website name] redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTS


BEGIN CEON URI MAPPING REWRITE RULE

RewriteEngine On

Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])

RewriteCond %{REQUEST_URI} !.[a-z]{2,5}$ [NC]

Don't rewrite any URIs for some, popular specific file format extensions,

which are not covered by main file extension condition above

RewriteCond %{REQUEST_URI} !.(mp3|mp4|h264)$ [NC]

Don't rewrite any URIs for some specific file format extensions,

which are not covered by main file extension condition above

Uncomment the following line to apply this condition! (Remove the # at the start of the next line)

#RewriteCond %{REQUEST_URI} !.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]

Don't rewrite admin directory

RewriteCond %{REQUEST_URI} !^/[xxxxxxxxxxxx] [NC]

Don't rewrite editors directory

RewriteCond %{REQUEST_URI} !^/editors/ [NC]

Don't rewrite .well-known directory

RewriteCond %{REQUEST_URI} !^/.well-known/ [NC]

Don't rewrite logs directory

RewriteCond %{REQUEST_URI} !^/logs/ [NC]

Don't rewrite cgi-bin directory

RewriteCond %{REQUEST_URI} !^/cgi-bin/ [NC]

Handle all other URIs using Zen Cart (its index.php)

RewriteRule .* index.php [QSA,L]

END CEON URI MAPPING REWRITE RULE

Also tried this as suggested:

BEGIN CEON URI MAPPING REWRITE RULE

RewriteEngine On

Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])

RewriteCond %{REQUEST_URI} !.[a-z]{2,5}$ [NC]

Don't rewrite any URIs for some, popular specific file format extensions,

which are not covered by main file extension condition above

RewriteCond %{REQUEST_URI} !.(mp3|mp4|h264)$ [NC]

Don't rewrite any URIs for some specific file format extensions,

which are not covered by main file extension condition above

Uncomment the following line to apply this condition! (Remove the # at the start of the next line)

#RewriteCond %{REQUEST_URI} !.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]

Don't rewrite admin directory

RewriteCond %{REQUEST_URI} !^/xxxxxxxxxxxx [NC]

Don't rewrite editors directory

RewriteCond %{REQUEST_URI} !^/editors/ [NC]

Don't rewrite .well-known directory

RewriteCond %{REQUEST_URI} !^/.well-known/ [NC]

Don't rewrite logs directory

RewriteCond %{REQUEST_URI} !^/logs/ [NC]

Don't rewrite cgi-bin directory

RewriteCond %{REQUEST_URI} !^/cgi-bin/ [NC]

Handle all other URIs using Zen Cart (its index.php)

RewriteRule .* /index.php [QSA,L]

END CEON URI MAPPING REWRITE RULE

17 Jun 2020, 6:18 PM
#134
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,081
Plugin Contributions:
56

Re: Ceon URI Mapping V5.0

@ink, see post #45 in this support-thread for the solution.

17 Jun 2020, 6:29 PM
#135
ink avatar

ink

Zen Follower

Join Date:
Jul 2004
Posts:
140
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

Thanks very much, I just saw the 99 to 95 fix and yr right. I just tried that and we loaded, just came back to update and saw your kind post.

This forum is crazy everytime I post I find the answer 5 minutes later, so annoying as I dont want to waste peoples valuable time, after spending hours racking the few brain cells left, at least that is a technique.

17 Jun 2020, 7:20 PM
#136
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

ink:

Thanks very much, I just saw the 99 to 95 fix and yr right. I just tried that and we loaded, just came back to update and saw your kind post.

This forum is crazy everytime I post I find the answer 5 minutes later, so annoying as I dont want to waste peoples valuable time, after spending hours racking the few brain cells left, at least that is a technique.

There's also an update at least as compared to what is here on the forum site last I looked... it covers that particular issue as well...

12 Jul 2020, 2:29 AM
#137
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,682
Plugin Contributions:
0

Re: Ceon URI Mapping V5.0

Has anyone fix this yet? When I create a .htaccess file in the root directory and when I enable ceon will not come up on the store front. When I disable it works fine....

lat9:

I'm also having "The page isn't redirecting properly". I've got a test site set up in my local XAMPP environment,
having made the modifications suggested by @torvista on this support-thread posting for v4 of the URI mappings.

My local site's configuration, provided in /local/configure.php identifies the **HTTP_SERVER ** as 'http://www.mysite.local' and the **DIR_WS_SERVER ** is set to '/'.

The .htaccess file contains the ceon-generated defaults:

BEGIN CEON URI MAPPING REWRITE RULE

RewriteEngine On

Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])

RewriteCond %{REQUEST_URI} !.[a-z]{2,5}$ [NC]

Don't rewrite any URIs for some, popular specific file format extensions,

which are not covered by main file extension condition above

RewriteCond %{REQUEST_URI} !.(mp3|mp4|h264|woff2)$ [NC]

Don't rewrite admin directory

RewriteCond %{REQUEST_URI} !^/myadmin [NC]

Don't rewrite editors directory

RewriteCond %{REQUEST_URI} !^/editors/ [NC]

Don't rewrite feed directory

RewriteCond %{REQUEST_URI} !^/feed/ [NC]

Don't rewrite logs directory

RewriteCond %{REQUEST_URI} !^/logs/ [NC]

Handle all other URIs using Zen Cart (its index.php)

RewriteRule .* index.php [QSA,L]

END CEON URI MAPPING REWRITE RULE

> 
> The multiple redirects are, as identified by @wvasconselos [here](https://www.zen-cart.com/showthread.php?225478-Ceon-URI-Mapping-V5-0&p=1359739#post1359739), within the `_checkForAndHandleIndexPage` processing for the index page.
> 
> I enter **<https://www.mysite.local>** in the browser address bar, I'm seeing that on entry to that function that `$request_uri` is set to '/', `$_GET['main_page']` is set to 'index' and no other $_GET variables are present.  The `$redirection_uri` to which the request is sent is '/' (same as entered); that's where the loop arises.
> 
> I'll also note that the site displays once the URI mappings are disabled in the admin.
23 Jul 2020, 2:09 PM
#138
diptimoy avatar

diptimoy

Zen Follower

Join Date:
Apr 2012
Location:
Bardhaman , Bharat
Posts:
217
Plugin Contributions:
1

Re: Ceon URI Mapping V5.0

Installed the module in zencart 157 and php 7.4 and I am getting this error

ERR_TOO_MANY_REDIRECTS

where to fix ?

23 Jul 2020, 3:16 PM
#139
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

diptimoy:

Installed the module in zencart 157 and php 7.4 and I am getting this error

ERR_TOO_MANY_REDIRECTS

where to fix ?
Should be able to log out of your admin, log back in then go to Modules->Ceon URI Mapping (SEO) Config. Then in the bottom right hand corner should be an indication to update the software. Ie. there has been an update issued that addresses this and has been discussed several times over the recent past in this forum thread. Basically there was a change to load sequence in Zen Cart that required a change in load sequence of this software.

23 Jul 2020, 3:18 PM
#140
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Ceon URI Mapping V5.0

wmorris:

Has anyone fix this yet? When I create a .htaccess file in the root directory and when I enable ceon will not come up on the store front. When I disable it works fine....
Have you applied the update identified in post #45 which appears to have been incorporated into the latest release of this plugin?