Tagged Questions

13
votes
1answer
4k views

Upgrading from Drupal 6 to Drupal 7: best programmer's practices?

Although I am using drupal since the D4 series, I only started developing professionally for it with D6, so - despite I did various site upgrades - I was never faced by the task of having to port my ...
12
votes
5answers
3k views

Drupal 7 programming advancements, differences from Drupal 6 upgrade or wait

I was just wondering if there were any changes in the Drupal 7 code that effect server load and speed for large sites. Also, with 7 nearing beta release, should I wait to build the sites with Drupal ...
7
votes
1answer
211 views

Does Drupal 7 have a better way of managing development changes than Drupal 6?

So one hassle of Drupal 6 is that it's tough to move changes from a development server to a test or staging server to a production server. Has this been made easier in Drupal 7? Is there some coding ...
5
votes
4answers
517 views

Custom date format (callback with php logic)

I want to create a dynamic php date format. Example: show the time of the node if it was published today and only the day/month when older then today. I want this format to be available throughout ...
5
votes
3answers
2k views

Should I use Drupal 6 or Drupal 7? [closed]

As the title states: Should I use Drupal 6 or Drupal 7? See, the dilemma here is the usability. I have to develop a website for a client, and I've been running into quite a bit of difficulty with ...
4
votes
5answers
292 views

Techniques for building Drupal Modules Quickly?

I'm looking to see if anyone has any resources or tips for developing basic Drupal modules faster? Have you come up with anything to make your Module development faster? The Drupal module ...
4
votes
2answers
369 views

What are the changes to Drupal 7 programming vs Drupal 6?

Drupal 7 is claimed to be a revolutionary new Drupal. But in what ways exactly? Looking for coding specific discussions.. Thanks!
3
votes
3answers
431 views

Why is drupal slow?

i have made site on drupal my site has 7500 users and approx (20 to 50 without logged in)(2 to 10 logged in) users are online (and this is not havy traffic i think) the site is on dedicated server. I ...
3
votes
2answers
2k views

Is Drupal 7 slower than Drupal 6?

One of the problems with Drupal in general is that it is slow. We run Pressflow 6 in a high traffic production environment and it consumes a lot of resources for a site of its size. Much has been ...
3
votes
1answer
326 views

How to attach an image to a node while creating it with node_save($node);

Hi i am working with drupal 7 and trying to import data from xml by parsing it using php and later on creating nodes with node_save($node). So far i have been succeeded to create nodes from xml ...
3
votes
2answers
527 views

Possible uses of CCK node-reference and user-reference

CCK is gone from Drupal7 and was replaced with the Fields API which is now part of core, but nodereference and userreference were not ported. This creates a problem for me because I use those 2 ...
3
votes
4answers
349 views

Which version of drupal should I study, 6 or 7?

I have been planning to try to build a shopping store with Drupal 7 just for fun and have been studying it for a few days now. But with its current status(alpha5), I doubt if my time and effort would ...
2
votes
1answer
106 views

Overriding/customizing Drupal modules

I would like to override custom user template in my Drupal 7 installation. The question is - should I edit the template file in the main module or copy the module to my theme's folder and edit it ...
2
votes
2answers
748 views

Drupal 6 backport of Drupal 7 admin-bar and overlay?

Hey people! I don't like Drupal 7 because, well, it doesn't seem to work (or maybe the modules I need don't work, but the fact is I can't develop with it) What I do like is the nifty new admin ...
2
votes
2answers
488 views

What are the changes to Drupal 7 Theming VS Drupal 6?

I've heard that Drupal 7 theming has been simplified, but couldn't find much resources on the internet about it. I'm especially interested to learn what are the changes that boost productivity and ...
2
votes
4answers
620 views

What is the correct way to obtain the Drupal installed document root?

Inside of a Drupal module I need to obtain the base path where the Drupal site is installed. For example, if the drupal site is installed at: www.example.com/mysite/ then I want to get ...
1
vote
1answer
40 views

Can I use drupal view to create a “table of content” page for a series of pages?

Say I am writing a manual for a product, and I have a series of pages named: "Chapter 1", "Section 1.1", "Section 1.2", "Chapter 2", "Section 2.1" Can I use drupal view to generate a "table of ...
1
vote
2answers
67 views

Importing an existing Drupal project

I am joining a team of developers who have an existing Drupal based project hosted online. So far, they have worked straight up on the production environment, meaning uploading files and making ...
1
vote
1answer
47 views

Drupal 6 To 7 Migration

We have a drupal site written in drupal 6. We know we will have to rewrite it for drupal 7 (mostly) But the big part is migrating the data. CCK migrate was only able to migrate about 90% of the ...
1
vote
1answer
98 views

Log in Drupal site in Phonegap

I am trying to allow my users to log in from their mobile app to a Drupal site in order to retrieve some of their profile information. Anybody knows how to do it? I have the Services module on the ...
1
vote
1answer
29 views

Drupal add possibility to change submission id

Hello everybody and thanks for interest some time ago i have started to use Drupal, but i am not best programmer, i am learning to be, and now i have one little issue. I am using Drupal 6 and Webform ...
1
vote
2answers
171 views

how to get multiple parameters send via drupal hook_menu

I've below menu hook by which i'm sending 2 parameter to function, but i'm getting only first parameter. Does any one know how to send and get parameters using drupal menu system? function ...
1
vote
1answer
112 views

While converting a Drupal 6 theme to Drupal 7, is there a work-around for theme_blocks()?

I currently use theme_blocks() in a base theme for Drupal 6, and I have had difficulty converting my theme to Drupal 7 because theme_blocks() is not used in Drupal 7. The below code is a simple ...
1
vote
1answer
378 views

Migrating drupal 6 to drupal 7

Basically we wanted to move a portion of our drupal 6 site to our drupal 7 build. Using the migrate module. While migrating 155 nodes with their comments and taxonomy(2 vocabs, one is fixed the other ...
1
vote
3answers
4k views

Drupal 6 vs Drupal 7 performance

I want to start new project and stuck without idea what version to use. I have huge expirience with D6, and also one project (module developement) for D7. It looks like D7 slower, have bigger memory ...
1
vote
2answers
143 views

Drupal: run custom code when a form is submitted

how can I run specific code when a form is submitted in Drupal ? I'm using hook_form_alter to edit the form, but I actually need to collect the data inserted by user and run code when the user click ...
1
vote
2answers
592 views

drupal multilevel menu

How to create the multilevel vertical menu in drupal, somthing like thi screen shot is there any module available for this
1
vote
2answers
3k views

Drupal 7 - How to completely disable cache?

Drupal 6's cache can be set to disabled, normal or aggressive. I cannot find these options for my Drupal 7 installation. There is only a button that flushes all the cache but it has to be clicked for ...
1
vote
4answers
137 views

Admin Area in Drupal site

i'm learnign Drupal and i'm loving it; but i have a problem: i build sites that have a protected area accessible only to site admins; i want to create a pseudo-admin role that has access to protected ...
0
votes
1answer
36 views

How can we integrate Oracle database with Drupal 6

How can we integrate Oracle database with Drupal 6. Tried with Oracle driver but it not showing oracle database option at Installation time. Need help to work Oracle database with Drupal 6
0
votes
0answers
42 views

Drupal 7 List nodes within the date range

I am looking for a solution which displays node list within the date range. Requirement is to display events from today to next 6 days group by date. I have a content type "Agenda" with a date field ...
0
votes
0answers
44 views

Common programming mistakes for Drupal developers to avoid? [closed]

What kind of mistakes during development should Drupal developers avoid? This includes using Drupal's core functionality, community modules & themes and, obviously, programming mistakes from ...
0
votes
1answer
180 views

Change pager format in Drupal 7

I have the following code for changing the format (re-structuring) the pager in Drupal 6. However it doesn't work in Drupal 7. It throws too many errors :( function theme_pager($tags = array(), ...
0
votes
1answer
261 views

How to avoid “Video not found or access denied” error for anonymous users in a Drupal video sharing site?

I have a web application in Drupal 6 that shows video content to users. Currently if I as an admin create a video node and upload the video, can see the video (and playback). However if I am an ...
0
votes
1answer
64 views

Reading from an RSS news feed and inserting them into Drupal's Database

Is there any drupal plugin or code that allows you to read from an external RSS feed (lets say cnn.com/rss) and insert the content posts into the drupal database as content nodes? I need this to be ...
0
votes
1answer
66 views

Adding the same existing field twice(more than once) within same content type

I want to reuse the same existing field more than once within the same content type. Assume that ContentType1 has a field Phone-Number. Now I want to use the existing field Phone-Number from ...
0
votes
1answer
41 views

enable a drupal theme manually (which file to modify)

Ok, let's say i'm a big newby on drupal, and that i want to load a theme (which actually should be enabled, and displaying - currently not). And that i don't have access to the admin part of the ...
0
votes
0answers
76 views

How to display taxonomy image in view(Drupal 7)?

Can any one please help me how do i add a taxonomy image to view field in drupal 7.
0
votes
0answers
79 views

Which is better, drupal 6 or 7? [closed]

I'm using Drupal 6.x core for my web site. Everything works good, but I'm starting to think that I want to migrate to Drupal 7.x core. What are the advantages of using Drupal 7 versus Drupal 6 for my ...
0
votes
1answer
38 views

How do i resolve function not found in Drupal 6

So I'm using the queue_mail module on Drupal 6 and everytime I call the function queue_mail_send(), drupal complains that it can't find the function... I know that there's a code registry in Drupal ...
0
votes
1answer
347 views

where to find Drupal 7 DB schema?

I have this query in Drupal 6 SELECT term_data.tid AS tid, term_data.name AS term_data_name, term_data.vid AS term_data_vid, term_data.weight AS term_data_weight FROM term_data term_data ...
0
votes
1answer
406 views

Drupal 7 website not loading (Fatal error: Call to undefined function user_access() in C:\xampp\htdocs\new\drupal\includes\menu.inc on line 619)

I am getting the following error with my drupal website. "Fatal error: Call to undefined function user_access() in C:\xampp\htdocs\new\drupal\includes\menu.inc on line 619" I have checked the ...
0
votes
0answers
167 views

drupal 6 to drupal 7 migrate

We recently migrated our production site to drupal 7. There's a section of the site that hadn't been moved over. Including a content type, a couple vocabularies, and about 500 posts/comments. Is ...
0
votes
0answers
61 views

classic asp to drupal [closed]

i want to migrate/Recreate a Classic ASP/MSSQL site that i made to drupal, its a guitar tablature website, i cant seem to grasp how can i implement it on drupal, below is the functionality of the old ...
0
votes
1answer
102 views

drupal add to inquiry cart

I am trying to create product catalog website in which I need to include a functionality similar to add to cart. any visitor can add the products to inquiry cart and at the end instead of checkout ...
0
votes
0answers
216 views

copy content from drupal 6 to drupal 7 [closed]

Two websites Site A: drupal 6 Site B: drupal 7 I want to copy all the contents from Site A to Site B. Any ideas?
0
votes
1answer
97 views

When should I move from Drupal 6 to Drupal 7?

Some concerns: Drupal 6 doesn't work with php 5.3 Drupal 7 doesn't have all the modules that Drupal 6 has I am very comfortable with Drupal 7 (I.e. I might have to learn quite a bit about Drupal 7 ...
0
votes
2answers
680 views

Drupal 7 Browser specific css

How can i have a browser specific css in Drupal 7 . I would like to load chrome.css if browser is chrome . Please help
0
votes
2answers
412 views

drupal options of css classes for different fields in a content type

Drupal 7 and Drupal 6 In page or story content type for example there are two basic field called title and body. Is it possible to define a custom css class for title or / and body field, when ever ...
0
votes
1answer
128 views

drupal replacing default nodes with views page

I have created a page view using field style to display a list of teasers as I want. fields configuration in views allows us to link the field to it's node. but what if we have created view for node ...

1 2