D7 Toolbar is Empty

I recently upgraded my site from D6-D7. Followed the instructions to the letter, no errors were thrown. The problem I'm running into now is that the D7 Toolbar has no links!

http://awesomescreenshot.com/0eedzms08

I re-ran a copy of the site through the upgrade process to see if that might have been the issue, but same results. Any ideas?

install drupal7 sur cpanel

s'il vous plais quelqu"un m'aide pour installer correctement drupal7 sur cpanel(sur local tout a fais claire"
puisque toujours une de ces messages arrivent
"requirement: ilme demande d'installer pdata object pdo"
ou bien cette message "le plupart"
"You don't have permission to access / on this server.

OG7 list

Hi,
I've a problem with OG and views integration.
I would create a view for a group list that shows only groups where the user is a member.
Is there a way to do this? Maybe with contextual filters and relationship?
Thank's!!!
Alex

How do I add a File Field for a User to a Node

Hi all,

Here's what I want to do and I'm hoping that someone will be able to point me in the right direction?

I have added a File Field to the User called Timesheet. Now I want to be able to upload to file to that field so that when the users go to a certain node, they see some introductory text followed by a link to their file.

I'm sure this is possible with Drupal but am a little stuck with getting started.

Thanks

Wellsy

hook_menu: how to specify a parent menu item

Hi,

I'm trying to get correct menu's and breadcrumbs to work in my Drupal module.

I have a simple datamodel with departments. Each department has several meetings, and each meeting as several documents. There is a department page and a meeting page. Documents can only be downloaded.

The department page shows all meetings, and the meetings page shows all documents. My code for the menu is as follows:

/**
* Implement hook_menu().
*/
function meetings_menu() {
$items = array();

//Department page
$model = new MeetingsModel();
foreach ($model->getDepartments() as $dep) {
$items['meetings/department/' . $dep->id] = array(
'title callback' => 'department_call',
'title arguments' => array('department_page_title', 2),
'page callback' => 'department_call',
'page arguments' => array('department_page_view', 2),
'access callback' => 'department_call',
'access arguments' => array('department_page_access', 2),
'type' => MENU_NORMAL_ITEM,
);
}

//Meeting page
$items['meetings/department/%/meeting/%meeting'] = array(
'title callback' => 'meeting_page_title',
'title arguments' => array(4),
'page callback' => 'meeting_page_view',
'page arguments' => array(4),
'access callback' => 'meeting_page_access',
'access arguments' => array(4),

Little confused of which part of documentation i should follow

Hi,

I'm going through the documentation at the mo and i'd just like clarification of which part of it refers to my situation.

I'm running osx 10.6.7. Apache 2.2. Latest version of PHP and 5.5 mysql. I'm going to be doing everything locally until i've built my site. I've edited the php.ini by following the advice and i've built my database.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x