Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I'm not entirely happy with the forum module for 4.2 and I can't get tripforum to work at all. What I'm after is something more like cyboard or superBB (The latter based on cyboards and ported to postnuke. However, no longer being developed) which is what my users are accustomed to and demand in style and usability.
Hi, i am developing a CRM system in php/mysql and i was wondering if I can use the security/authentication system of drupal without completely rewriting it as a drupal module. I would like to lauch a complete application in a new window. Is this an option?
Can someone out there point me to an explaination of how the db_query function works? I've been all through this site and can't find the documentation on it. I'm just trying to do a simple "select x from y where z", and I'm pulling my hair out.
To get the amazon.module working with amazon.de and the german language you have to edit the file AmazonSearchEngine.class.inc in the include directory.
2 changes have to be done:
var $server = 'xml-eu.amazon.com'; // was xml.amazon.com @Line#9
I discovered Problems with the amazon module and maybe more modules.
You will not see the amazon settings in admin/system/modules after activating it.
The problem is the missing informations in the amazon_system(...) function.
You will need at least something like
function amazon_system($field){
$system["description"] = t("Make use of the webservices of Amazon.");
$system["name"] = t("Amazon");
$system["link"] = t("Amazon");
return $system[$field];
}
After you have insert these variables in the amazon_system(..) function in your amazon.module you can make the needed settings and sell items through your site.