drupal-6

Drupal views: how to delete a row from table in view

i have to delete a row from table in a view... i have to just remove particular row from a view not deleting the node.. and i have to print only these selected rows... is that possible in any other way.. i have tried with drupal views checkboxex but it is still in development phase i m unable to do that any other solution for this......

Drupal 6 and YUI Editor 2.8, cannot get upload image working

Okay, I have installed WYSIWYG module to my Drupal 6 site. I also installed the YUI module v2.8.0r4 I cannot get the image upload to work. When you click image, you get the option to insert URL etc, but no upload form. I searched and searched for days trying to find the issue but nothing seems to work. I have seen this issue with man...

Where are the Drupal performance settings stored in the database?

I'm trying to find where in the database (tablename.fieldname) the settings such as "Caching mode" that appear on the Performance settings screen (/admin/settings/performance) are stored. I've looked in the cache* tables, system, variable and performance* tables. ...

Drupal FileField remove file from node but leave on Server

I have a cck FileField attached to a content type. When I remove a file from a node I want to remove the reference to the file but keep the file on the server. The reason for this is because we use IMCE on the site as well and other items may reference the image. Do you know if this is possibe? ...

How do you replace the page.tpl.php that loads from a module in Drupal?

I have a custom module in Drupal that outputs a serialized dump of data. I want this page where the dump appears to not use the active theme. Instead, I just want the data dump to appear without any HTML markup, theme, JS, CSS, etc. Just the dump (another web site will be consuming it). If I was doing this at the theme level I would sim...

Why isn't $vars['node'] available in preprocess_page for some content types?

I am currently using drupal 6 for a site I'm working on. I have a MYTHEME_preprocess_page() function that adds a few variables to the page.tpl.php template from the taxonomy and from a cck field. It was working correctly for a bit, and then the $vars['node'] is empty, but only for 2 content types. The 'node' variable is available to the ...

Drupal sharing content between two websites

Hi, I am farmiar with building drupal sites but not sure what the best way to implement this scenario. I have two domain names mydomain.com and mydomain2.com. I need to have a conten type with some fields in. i.e. ContentType Field - Title Field - Body Field - Picture Field - Price I want both sites to use the same data for the cust...

Drupal tinymce pagebreak

I'm using tiny mce on a drupal site but I'm not using any module, I have just added tiny to a alter function instead. I want to use tiny's page break feature, and I can add it using tiny, I can save it, and it appears when I edit content - but I can't see it inside the preprocess_node function where I want to split the content based on t...

How do I view and manage all nodes by a specific user in Drupal 6?

I would like to see all nodes created by a specific user so I can delete all of them. How do I do this? ...

drupal views: how to add generate pdf link in views

i have to add generate pdf links in the view how to that.. when the user clicks on the generate pdf links pdf should be generated which contains the content information of that node... ...

drupal: how to generate doc files in drupal is there any possibility to that

how to generate doc file in drupal files.. do we have module for that... as pdf generation module... ...

Drupal custom search form for a specific content type

I have created a Car content type with taxonomy vocabularies and CCK fields to describe make, model, year, price, color, ect. My site will contain very little content aside from cars, and I want to implement a search form similar to the one found on http://openautoclassifieds.com/search.php. The select boxes allow users to choose from va...

View with products linking to product pages with Taxonomy

Hi, I’m kind of in a jam with a website I’m trying to create for use in a technical department which will server as a information database for the repair engineers to find information about products they are working on. This will include testing procedures, product configuration pages, customer specific information per product, software ...

drupal views: how to save the node ids of the selected items using views bulk operations

i need to save the selected node ids when i use views bulk operations... how is that possible.... ...

Drupal: customizing user registration workflow for communicating with another webapp

Hi all, I'm new to Drupal6 and spent long time searching how to implement the following feature without success: I use Drupal as front-end/doc board for a web-app. I want to mirror all user account creation, update and deletion on this web-app, i.e. send user name and password. I started coding a little module implementing hook_user (h...

drupal rules i have to create a history table when users does some action

can any tell me how to perform this task i need to create history table when ever user performs certain task like when he creates a content, browse a specific page, perform search... i have started with created a content type history and i have written a rule to insert one row in the table.. it works fine but when i create a view to...

Drupal 6 Hide Revision Information

I'm trying to hide "Revision information" from my users who do not understand what that is in relation to this content type. I've read numerous posts online that suggest anything from changing a template to setting style="display: none". I'd prefer to actually remove the field from access so that injection techniques aren't still viable....

drupal how to get fetch multple rows

how to fetch multiple rows in drupal and store the desired row in variable . while ($fields = db_fetch_array($result)) { echo ""; foreach($fields as $key => $value) { echo "$key = $value\n"; } it works it displays the results but i want to get the value of one row and store in another varaible like $fields['some column na...

Drupal Help - Warning: Unresponsive Script - Everytime Goes into or out of Block Edit Mode

Every time goes in and out admin-build-block page, the annoying "Warning: Unresponsive Script" pop-up shows up along with such details: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: http://domain name/sites/default/files...

How to additionaly filter list of published nodes in Drupal 6

I need to adjust the way which a content is determined as published or not published. The editor of particular content (this is a separate non-administrative role) should have a possibility to set the published flag for particular node (it can be achieved using Override Node Options module directly or by implementing it's techniques). He...