Help

Guy's need some help on installing durpal on server
Thnks

Edit- and delete-tabs are gone

In stead of the tabs 'edit' and 'view' under the nodetitle, I get the word 'Array'. I don't know if it is since a major upgrade or after an update of a module.
Anyone knows something to help me with this one?

Can't use the update manager

Hello,

when I'm trying to update modules with the update manager or with drush, it seems that drupal can't connect to the update-page of drupal.org. Possibly reason for this is company firewall or proxy. I just don't know how to fix this. Anybody does?

Are Breadcrumbs only generated by putting content in the Main Menu or are there other ways?

That is how hierarchical Breadcrumbs have been generated as far as i have experienced and I see no interface for it otherwise.

Thanks

Is this the best/only forum for novice or non-programmers learning Drupal?

I was just wondering if there were better places to ask questions for someone who is learning and not really going to get deep into PHP/SQL but just scratch the surface to customize Drupal.

Thanks

Altering User Registration Form to Multi-Step Drupal 7 (solved)

I found some code on the web to implement multi-step forms in Drupal 7, and currently dissecting it and trying to understand it. (My PHP understanding is decent, but not "great.") I've got most of it worked out and understood, and now I'm flipping the code to put into a multi-step user registration form. So I print out the $form array on the user registration form, and here's a snippet of what I get (edited down for simplicity).


Array
(
    [account] => Array
        (
            [name] => Array
                (
                    [#type] => textfield
                    [#title] => Username
                    [#maxlength] => 60
                    [#description] => Spaces are allowed; punctuation is not allowed except for periods....
                )

            [mail] => Array
                (
                    [#type] => textfield
                    [#title] => E-mail address
                    [#description] => A valid e-mail address. All e-mails from the system...
                )
        )
)

Now here's a snippet of my code for my custom module...

  static $steps = array(
    'account'              => -1,
  );
  return $steps;

In a nutshell, this code targets and manipulates everything in the [account] array, and it works.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x