I just setup drupal 4.3.2 in my site.and download Amazon module Amazon 4.2.0 (event CVS version) .
After I install amazon module,and set it enable. but not found any setting menu in "administer panel".

Any suggestions?

Thank you ver much.

Comments

Steven’s picture

4.2 modules will not work for 4.3 without modifications. You will have to contact the author (check the README file that comes with it) to upgrade it, or make modifications yourself.

bertboerland’s picture

despite the fact that it is a 4.2 module amazon module does work in 4.3.1

--
groets

bertb

--
groets
bert boerland

mathew’s picture

I check "Converting 4.2 modules to 4.3" section in "Module developer's guide" . And modify code in "amzon.module"

function amazon_help($type = "administrator") {
if ($type == "user") {
$output = "

". t("Here you can buy stuff at our shop") ."

";
} else {
$output = "The Amazon module allows sites to offer a store via the web-services of Amazon.com";
}
return $output;
}

AND REPLACE WITH

function amazon_help($session) {
switch ($section) {
case 'admin/system/modules#description':
$output = "

". t("Here you can buy stuff at our Amazon shop") ."

";
break;
case 'admin/system/modules/amazon':
$output = "The Amazon module allows sites to offer a store via the web-services of Amazon.com";
break;
}
return $output;
}

It's seem show the setting menu correct now. but after I save settings, the "amazon" still not show in mian page .