Details

SEO osCommece Package XII

Loaded Features:
  • Spider Session Remover ( SID Killer )
  • Ultimate SEO URLs
  • Header Tags Controller
  • Google XML Sitemap
  • SEO Assistant
  • AJAX Attribute Manager
  • Product Extra Fields
  • X-Sell v2-MS2 - Cross Sell for MS2
  • Credit Class & Gift Voucher
  • TinyMCE WYSIWYG HTML EDITOR
  • Multi/extra images
  • Purchase Without Account
  • Newsletter & Subscribers

AJAX Attribute Manager bug

Another bug

Fatal error: Cannot redeclare class amdb in z:/home/localhost/www/adminattributeManager/classes/amDB.class.php on line 18

How to fix?

Open file admin/attributeManager/attributeManager.php

Find :

// db wrapper
require_once(’classes/amDB.class.php’);

// session functions

require_once(’includes/attributeManagerSessionFunctions.inc.php’);
replace to:

// db wrapper
if(class_exists(”amDB”))require_once(’classes/amDB.class.php’);

// session functions

if(function_exists(”amSessionUnregister”))

require_once(’includes/attributeManagerSessionFunctions.inc.php’);

Thats all ;)

Contribution page: http://www.oscommerce.com/community/contributions,4063

Posted by admin 12.Dec.07

You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.