Drupal 6 is the Drupal version released on February 13, 2008. Rather than using this tag, consider posting your question directly on http://drupal.stackexchange.com/.

learn more… | top users | synonyms

0
votes
0answers
9 views

How to sync users from joomla 1.5 to drupal6

I need to sync users data saved on joomla 1.5 to Drupal 6, the problem is to transfer crypted passwords; i know that D6 saves the password in MD5 format, while J1.5 has a form like crypted1:crypted2 ...
1
vote
0answers
9 views

Drupal 6 to 7; returning keys instead of label

I recently upgraded from Drupal 6 to 7 and on my node pages it is now returning the keys for each selected custom field, instead of the label. This is only happening for "Select list" fields. For ...
0
votes
0answers
24 views

Drupal modules - Nice menus CPU usage and response time

I am having a problem with nice menus drupal module. It's the module that is consuming more web server time and it's the slowest to respond . This is weird for me as a so insignificant module can ...
0
votes
1answer
35 views

Is it possible to call a drupal function in a custom module through javascript?

I was checking if it is possible to call a drupal function in a custom module through ajax.?? I have a custom form and a validate.js filethrough which i have done validation.Is it possible to call a ...
0
votes
1answer
9 views

Creating drupal form with wrappers

I have created a form in drupal programmatically. How could i wrap each elements of the form with div. Below is my sample code function emailusers_compose_form($context, $account) { ...
-1
votes
0answers
15 views

Paypal - Message 3514 error

can anyone help me with this paypal payment problem? "We are sorry, we are experiencing temporary difficulties. Please try again later. If this error occurred while making a payment, avoid ...
0
votes
0answers
20 views

Obtain form value from Drupal 6 module form while loop

inside form hook: $count = 1; while($slice = db_fetch_array($fruit)){ $section = $slice['section']; $form[$section][$count] = array( '#type' => $slice['type'], ...
0
votes
1answer
13 views

How to set default selected QuickTabs tab depending on operating system?

I've a D6 website where I'm using QuickTabs to display block content. A download page has a 'Windows' tab and 'Mac OS X' tab - how can I pre-select the tab appropriate to the visitors OS on page load ...
1
vote
1answer
22 views

How to display a custom form in a newly created template page

I do have a hook_form in my custom module and also have a customized page.tpl.php file .Is there any way by which you can pass the form to the tpl page.I thought of passing the $form variable to the ...
0
votes
0answers
13 views

Drupal 6 Node Preview does not work on custom view

I recently created a custom Drupal 6 view for client using a block. In order to do this using global custom text I had to create a new text/content field and exclude it from the display as I cannot ...
0
votes
1answer
27 views

Drupal6 template file not recognised

I've create a nodequeue and set the "Description / Tag" in the Defaults section to "Entertainment Highlights" and when I click to view Theme: Information it has a template suggest for style output of ...
0
votes
2answers
38 views

how can i change the entire template of the page according to module in drupal6

I have check lots of area in the web about theming in drupal6. All the tutorials in the web saying theme module, which means the theming a small area or theming a samll blobk etc. But in my case i ...
1
vote
1answer
20 views

How do i set a specific template for a specific module in drupal 6 using hook_theme

Is there any way by which i could assign a template to my custom module.I heard it may be possible.I tried out with the hook_theme function.My hook_theme looks something like this function ...
0
votes
0answers
29 views

Drupal White Screen only on product page?

I am pulling my hair out at this question. I have found many things of white screen of death and have tried many methods. Only my product page appears as a white background. However, links are still ...
0
votes
1answer
23 views

Create 2 links l() instead of one for drupal 6 to add 2 link classes

Hi I am trying to create a pager for drupal 6 I have this function to create a pager function mytheme_prev_next($current_node = NULL, $op = 'p') { // Node types to include in paging $node_types = ...
0
votes
2answers
25 views

How to create a custom theme in drupal6 and apply template to it

I am just tried to create a module name mymodule and tried to apply theme to that module in drupal6. I have added .info file for my module and created mymodule.tpl.php file in my theme folder and ...
0
votes
0answers
11 views

How to insert a second form within a parent form in drupal

Am stuck with an issue.It would be kind if someone could help me with this.I do have a hook_form and i have a field set within this form.What i need is a form within this field set. This is my first ...
0
votes
0answers
19 views

Display Data From Database using Datatables in Drupal 6

I'm a newbie in drupal. I want to integrate datatables into drupal. I use sqlite for database. I'm confused how to apply datatables in drupal. I create script.js in theme folder. ...
0
votes
0answers
29 views

Drupal 6 Drupal_add_js

I recently realized I need to add javascript to my drupal block module for the front page. I found out that for some reason when i add: drupal_add_js(drupal_get_path('module', 'slider') ...
0
votes
1answer
24 views

Drupal 6 javascript in module block for front page

I'm trying to create a simple image slider on the front page of my drupal website. I wrote a module with the basic outline as follows <?php function slider_init(){ ...
0
votes
0answers
15 views

Drupal 6 drop down list

I want to do a drop down field list. This drop down will be loaded with the name of images of a folder that exists on the system. This field will exists when I create a new story, with the name "News ...
0
votes
1answer
12 views

Disable primary menu link in drupal 6 without using any drupal module?

I am using drupal 6. in My project i have used primary menu's but from them i want disable one primary menu link. For that i don't want to any special module. Please help me.
-1
votes
2answers
31 views

Drupal Export of Site Not Working For Subdirectory Levels Beyond Root Directory

I have to move an existing Drupal site from one server to another. I've done so by doing a mysql database export/import and copying over the files to the new server. On the new system, the root page ...
0
votes
2answers
26 views

conversion of DateField to TrieDateField in Solr

I'm using Apache Solr for powering the search functionality in my Drupal site using a contributed module for drupal named ApacheSolr Search Integration. I'm pretty novice with Solr and have a basic ...
0
votes
0answers
17 views

Drupal 6 : Page View URL

I'm facing a problem that twists my mind. On my website, I've used path and pathauto, but it wasn't well-configured. So I've corrected it, deleted all the registered url alias (via the plugin), and ...
0
votes
0answers
16 views

create a php page view for modules in drupal6

I am working in drupal6 and new to drupal. I have created a custom my Account module in drupal website. In drupal the way to design integration is somthing difficult, becuase thay are showing the view ...
1
vote
2answers
35 views

What's difference between drupal forms and HTML forms

why we use "drupal form" Although we can do every thing by "HTML forms" ?
0
votes
0answers
22 views

Filtering Drupal 6 View based on multiple content types

I have a drupal 6 installation, and am trying to limit a view with Filters. I've tried everything I can think of, and can't seem to get it to work. Here is the situation. I have a project, and that ...
0
votes
1answer
22 views

Drupal fails to redirect

So I'm having a bit of a problem with my drupal site. I set it up on my localhost and it was working fine. Then I upload everything to a server. And now most of my page works fine, but some redirects ...
0
votes
0answers
21 views

How to add some javascript in a form using form API?

I need to output some javascript codes as well as form fields. I am using Drupal 6 and form API to build the form. How can I output those javascript codes? Is there a 'javascript' type like ...
0
votes
0answers
8 views

Port back to d6 $instance

I have this code that I am trying to get back to d6 $field_name = variable_get('blogger_importer_node_tag_field', ''); $instance = ...
0
votes
1answer
18 views

Apply filter just for an spefic role on a view in drupal 6

I need to know if there is a way in drupal 6 to apply a filter in a view just for an specific role?? I got 2 roles, employee and manager, so I am using a content type field reference to my own view, ...
0
votes
0answers
9 views

Drupal 6 - Photo and Image Gallery combined?

I am fairly new to using Drupal, and would like to ask the community about any potential modules that are out there to create a gallery with a mixture of photos and videos. My idea was to have mixed ...
0
votes
1answer
41 views

Unable make SimpleTest GET and POST in test case, using Drupal6 and SimpleTest

After a while i ran this sample test, the Drupal batch screen (the one with the progress bar) stops running, no errors are logged in my server logs, and the whole browser window stay freezed. Code is ...
0
votes
1answer
100 views

Handling a repeating fieldset in Drupal 6

Firstly, I'm new to this project and its original development was outsourced. And boy, the project is a mess of work-arounds and non-Drupal implementations for nearly everything. This project is ...
0
votes
1answer
8 views

Is there a way to make an online customer tax exempt?

In Ubercart, Is there a way to make an online customer tax exempt and if so, how? I have tried creating a role called 'tax_exempt' and editing the conditions so that this role does not apply to the ...
0
votes
1answer
16 views

Drupal Multilingual translating views Argument

I am working on a multi lingual site using i18n module in Drupal 6 Version. I have created Taxonomy terms per langauge and created mapping for the two languages I am using. Now i created a page ...
0
votes
0answers
19 views

Programmatically find data in all Drupal 6 fields that uses a WYSIWYG editor

I am in need of programmatically going through through every field in a multi-language Drupal 6 site and find any files used (as images, or as links) and store them in an array. The script is only ...
0
votes
1answer
36 views

How to put two form elements in a row using Drupal Form API?

I am creating a form in Drupal 6 using form API. I need to put a textfield and a select next to each other. they are for entering something like 'www.domainname.com' . www. is fixed. domainname ...
-4
votes
0answers
18 views

Runnung a website in ubuntu local host.Is drupal like word press [closed]

How to run a website of drupal in ubuntu lamp server,Like in html index.html,do we have any here.Here is my website.http://www.gi2mo.org/apps/ideastream/. I know how to run a local server.But please ...
0
votes
1answer
27 views

editing using Drupal Forms API

I have a page building a form with: drupal_get_form('my_form_id') my_form_id(&$form_state) my_form_id_validate($form, &$form_state) my_form_id_submit($form, &$form_state) and saving in ...
0
votes
0answers
13 views

Cart items missing after login, drupal6 with ubercart

I using drupal 6 and ubercart latest version for my shopping site. Unfortunately the selected items missing from the cart after login. Message showing "There are no products in your shopping cart". ...
0
votes
0answers
42 views

Hybridauth module social network icons not working with user/register page drupal 6

Hybridauth module social network icons not working with Registartion page (user/register) page drupal 6. And it is working with User login form (/user) page. Permissions were given to anonymous user ...
0
votes
1answer
15 views

Increase memory_limit of subdomains in the plesk panel

I increased memory_limit to 512M in the plesk panel, then i ran phpinfo() and tested this two addresses: fanap.ir/phpinfo.php ----> memory_limit=512M test.fanap.ir/phpinfo.php ----> ...
2
votes
1answer
29 views

How to create a custom drupal cms from starting

Actually i need to know how and where the page content for each drupal page comes. So i tried to integrate my own custom theme to drupal. In the tutorial they are saying like i need to create a custom ...
0
votes
1answer
27 views

create a select list with all the values in it rather than 1 select list with 1 value

I am using drupal 6 and I trying to fill a select list with values but at this point I can only get it make 1 select list with 1 value for all the values in the field. I want all the values to be ...
0
votes
0answers
30 views

Page crash after adding new field in contenttype in Drupal 6

I've added a new simple text field to a content type in Drupal 6. It works just fine, but after I've added some data into this new field, other pages that doesn't even contain my content type with the ...
0
votes
0answers
17 views

Drupal 6 - Image gallery image popup when navigating site?

I am configuring Drupal 6 to install a Gallery module and when I navigate the site I see this image popup. Can someone please shed some light as to what is causing this? Many Thanks
0
votes
1answer
23 views

How to integrate different templates for my frontend and backend pages of my website

Could anyone please help me with this situation. I do have a front-end and a back-end for my website.The problem that i encounter here is that i have 2 specific templates ,one for the front-end and ...
0
votes
1answer
43 views

How to write a specific MySQL query to perform a relational division/ intersect? Id est, what query do I write?

I'm having trouble understanding how to write a specific MySQL query to perform a relational division/ intersect. I have looked at the following links/ SO questions, but I'm still confused : MySQL ...

1 2 3 4 5 72