
Originally Posted by
toyseller
Thank you for your reply.
I put my website into live then realised that I didnt have the latest version of this module. So was in a bit of a panic.
(Its the 2nd plugin where I had installed the wrong version, the latest being held outside this forum)
Ive deleted includes/extra_datafiles/ceon_url_mapping_sessions_define.php
I dont know what to do with zcadmin/includes/javascript_loader.php as when I delete the lines it refers to ... I lose the ability to modify my filename in the products admin page. Although the installation warning message goes away.
Surely the whole point of the module is to edit your filenames.
I also have a log error message.
[17-Nov-2021 09:33:52 Europe/London] PHP Fatal error: Call to a member function collectInfoBuildURIMappingForm() on null in /admin/includes/ceon_uri_mapping_javascript.php on line 24
[17-Nov-2021 09:33:52 Europe/London] Request URI: /admin/index.php?cmd=product&page=1&cPath=199&pID=2267&action=new_product, IP address: XXX.XXX.XXX.XXX
--> PHP Fatal error: Call to a member function collectInfoBuildURIMappingForm() on null in /admin/includes/ceon_uri_mapping_javascript.php on line 24.
Your lines 23-24 of admin/includes/ceon_uri_mapping_javascript.php are they:
Code:
$languages = zen_get_languages();
echo json_encode(utf8_encode($ceon_uri_mapping_admin->collectInfoBuildURIMappingForm())); ?>;
or is there this content inserted between those two lines?:
Code:
if (empty($ceon_uri_mapping_admin) || !is_object($ceon_uri_mapping_admin)) {
if (!class_exists('CeonURIMappingAdminProductPages')) {
require_once(DIR_WS_CLASSES . 'class.CeonURIMappingAdminProductPages.php');
}
$ceon_uri_mapping_admin = empty($GLOBALS['ceon_uri_mapping_admin']) ? new CeonURIMappingAdminProductPages() : $GLOBALS['ceon_uri_mapping_admin'];
}
If the second code snippet above is not included in the store's fileset, then the files are not up-to-date with 5.1.0. This file was one of the files that was to be updated for 5.1.0. Further, if that file didn't get updated, then one would question what other files didn't get updated on the server.
Bookmarks