I'm going to be creating a Drupal site that requires the use of a Discography. I noticed there's a module in existence, but that it doesn't support Drupal 5.
I have two questions really: 1) would someone with a basic grasp of Drupal's workings and PHP (but who's a developer by trade, just not a PHP one) be able to migrate a 4.7 module to 5? And 2) Is there some other way to produce a discography page in Drupal (perhaps using Views and a custom content type).
I just got the latest version of this module, uploaded it and enabled it in Drupal.
Then I added a menu and a menu item, referring to "files/welcome.gif" and the "" path.
I went to my blocks administration and added the Imagemenu block to the header block, but it doesn't seem to display...
I looked at the user settings, but there's nothing there to set for this Imagemenu to be displayed... What am I not seeing?
I will also like to Post some parameters to the site that I am re-directing to. E.g. I am trying to customise e-commerce module to use a specific payment gateway module. I need to pass Mechant-ID, total-amount, etc.
watchdog('info', 'after all. html: '.htmlentities($node->body));
return $node;
}
On my local machine this works fine and the html in the node is rendered correctly. On my web host on the other hand, GoDadday, nothing appears even when viewed as admin. The watchdog message does print out the html so it does get set. So the question is: is $node->body .= $html; a bad way of doing things and could that be the source of the problem?