Questions tagged [drupal-modules]

Drupal modules are add-ons for Drupal that allow you to extend, and customize Drupal functionality. Use this tag is for questions about available modules hosted on www.Drupal.org.

Examples of Drupal modules are Views, Token, CCK, and Pathauto.

The Project Usage Overview contains a complete list of all available modules for Drupal. This includes a ranking about the number of reported installs for each module.

Get access to all sorts of resources for any Drupal module via drupal.org.

2207 questions
0
votes
1 answer

city and state selection in Drupal

my question is about Drupal. i want to create a content type for creating ads on my site and i need state and city fields. the city list should changes on state selection change. i have no idea about implementing this issue.i guess maybe the cck and…
hd.
  • 17,596
  • 46
  • 115
  • 165
0
votes
0 answers

Fatal error: Call to undefined function db_error()

I've been working to upgrade D6 to D7 but when I run my custom module then received error. what should I do to fix this error or change the db_error API that drupal 7 know as db_error Here my code if ($_SESSION['opr'] == 'add') { …
ipin upin
  • 21
  • 1
  • 10
0
votes
1 answer

drupal :Plagiarism Checker - Authentication Framework module not working

I am new to drupal. When i enabled the module i got tabs. when i selected google tab i got this error: warning: Parameter 2 to _auth_confirm_page() expected to be a reference, value given in D:\wamp\www\drupal-6.19\includes\form.inc on line…
shazia
  • 179
  • 1
  • 2
  • 22
0
votes
1 answer

Notice: Undefined property: stdClass::$ket in milih_relasi_ledger()

I got error when upgrading drupal 6 module to drupal 7. can anyone help me resolve this problem thanks Notice: Undefined property: stdClass::$ket in milih_relasi_ledger() (line 2399 of …
ipin upin
  • 21
  • 1
  • 10
0
votes
1 answer

Drupal - Clean up exisiting code that converts text into an image

I've created the following snippet of code within a custom content.tpl.php template
0
votes
0 answers

Where is the "Enable/Disable translation" value stored in the database?

Where is the "Enable/Disable translation" value stored in the database? I haven't been able to find this info anywhere.
0
votes
1 answer

undefined function db_fetch_array()

i received this error when i try to convert drupal 6 module to drupal 7.. i've learned that drupal 7 has a new api in database.. i'am hope someone can give a way to resolve this problem . db_set_active('data'); …
ipin upin
  • 21
  • 1
  • 10
0
votes
2 answers

subscription block in Drupal 6

I want to add a subscription block to my Drupal site. I found these two module: subscription and simple-subscription. I installed subscription (the first one) and put its related block in blocks section to right sidebar region but no block is…
hd.
  • 17,596
  • 46
  • 115
  • 165
0
votes
0 answers

PDOException: SQLSTATE[22021] and Notice: Undefined offset

i have made some custom module that i use for importing csv to database in drupal 7 but i got some error Notice: Undefined offset: 2 PDOException: SQLSTATE[22021]: Character not in repertoire: 7 ERROR: invalid byte sequence for encoding "UTF8":…
ipin upin
  • 21
  • 1
  • 10
0
votes
0 answers

how to identify tables created by Drupal while developing LMS

I am looking at old LMS application build in drupal using SCORM Integration. It is very difficult to find mapping of drupal generated tables and custom tables. Is there any way to identify tables created by drupal. eg. node table
Code Hungry
  • 3,930
  • 22
  • 67
  • 95
0
votes
1 answer

problem during install gallery2 module

I have some problems during install module gallery2 for my local site with drupal. The warning in step 2 (follow this picture): http://i108.photobucket.com/albums/n33/ligthing_illuminate/1-2.png make the install doesn't complete in step 8. So,…
0
votes
2 answers

dropdown menu in drupal?

how can i style primary menu as a dropdown menu is drupal?
hd.
  • 17,596
  • 46
  • 115
  • 165
0
votes
0 answers

Build a second admin section over Drupal 8

I'd like to develope a second admin panel (or section) on Drupal 8 completely separate from the existing one. I don't want to override the existing one, I clearly want two separates admin panel for two kinds of "administrator". I think about…
rmnng
  • 59
  • 7
0
votes
0 answers

warning: Missing argument 2 for module_name_import_form()

i try to create custom import csv file module in drupal 6. but i received this error warning: Missing argument 2 for module_name_import_form() in C:\xampp5.6\htdocs\hafizu97\sites\all\modules\module_name\module_name.module on line 24. import i've…
ipin upin
  • 21
  • 1
  • 10
0
votes
2 answers

Drupal: Can't print inside hook_node_insert

On my Drupal 7 Site I am trying to create my very first own module. I've got a custom node_insert hook like the one below: function sample_node_insert($node){ dpm($node); var_dump($node); } I just want to see what is inside of $node, but I just…
Lumination
  • 47
  • 7