blank page

Hi All,

How to create a blank page as the front page in Drupal 6x. Also I need to remove the current content which is there in the site. Do i need to need to unpublish the pages? Will it help.

I am new to drupal.

Thanks

Odd charset problem when reading from Drupal 6 MySQL database

The fields in our database are in UTF-8 (I checked) and everything renders correctly in the various languages on our Drupal site.

But when I try to read the same table (node) in the same database and use it for our mobile web pages, it seems to require iso-8859-1 for some odd reason.

You can see the Drupal version of our German page here:

http://cms.iuf.org/?q=de

All in UTF-8, all looking fine.

But when the same database is read and put out on a PHP page, we get this result:

Download,modify and upload a theme

Hello all,

I am Nikhil Chavan and I am a student at Australian National University. As a part of my masters program I have decided to develop a new theme /modify and existing theme and upload it on Drupal site.
Regarding this procedure I would like to know whether there is any special permission needed from a Theme owner or I can freely download, modify theme and upload it as a new one.
I can assure that the modification will be worth appreciation and will be my own honest efforts.
I would like to know feedbacks and procedures to follow regarding this process.

How do I get Automatic Nodetitles to update with cron?

I would like Automatic Nodetitles to update all titles that haven't been updated when running cron.
Better, I would like Automatic Nodetitles to update immediately after posting each individual node. As it currently doesn't.
Any help would be appreciated. Thanks.

Drupal developer for D6->D7 site upgrade, long-term relationship

[position filled. thanks for all the qualified responses]

confirm_form on node edit/add form

Hi all I am attempting to use a form_alter to add a confirmation page to the node edit/add form. I am able to use the following basic structure to get things working however when I use confirm_form with the existing $form variable from within the form_alter I end up getting the entire original form reprinted and the confirmation text and buttons are simply edited into this form.

What I am hoping to do is use would click "save" on the add/edit node form and then a confirmation screen would come up asking if the user is sure they wish to proceed, if they click continue I would want the form to b submitted as normal, if they choose cancel return back to the node add/edit form and for their change/addition to not be saved. Has anyone done this and if so how?

Below is a snippet of to show what I have so far.

<?php
function lb_registrations_form_lb_event_node_form_alter(&$form, &$form_state) {
if(!isset($form_state['storage']['confirm'])) {
$form['#validate'][] = 'lb_registrations_check_registrations';
$form['#submit'][] = 'lb_registrations_create_regid';
}
else {
$form = confirm_form($form,'Are you sure you wish to continue?',substr($form['#action'],1),'Proceed with caution','Yes, proceed','Cancel');
}
}

function lb_registrations_check_registrations(&$form, &$form_state) {
if(!isset($form_state['storage']['confirm']))
{

Pages

Subscribe with RSS Subscribe to RSS - Drupal 6.x