Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I have a user I'm trying to authenticate on Drupal 7. Would like her to be able to edit her content. I have set user permissions to what I thought would be reasonable, yet the body of an article states that she does not have permissions to edit it. She has permission to edit blocks, edit any content in either an article or a basic page, as an authenticated user. What am I missing here?
Hi friends..
I would like to use Drupal to set up a site for musicians and bands (site for Norwegians that is)
I don't know Drupal enough to really know what modules I should use for this, but I'll try to explain how the site should work
- Users should be able to register a Band/Artist and have a page where they can make a small presantation
- Users must be able to upload MP3 files and write information to there uploads and finally users should be able to play online content.
- Users should be able to rate other artist/musicians/bands uploaded content, the ratings should be listed, simply a "like" button would be enough.
- Bands/Artists should be able to "make friends" with other users/bands
- Users should be able to add them selves as "fan" to the band pages
- The uploaded content should be available for downloads.
- Each band/artist should get there own forum/blog
- There should be a module showing all bands upcoming concerts
I found one page I liked allot, however it doesn't feature everything I am asking for here..
The site apparently uses Drupal, however if the webadmin are using custom modules or not I do not know.. this site is here: http://www.yourband.info
I would really appreciate any advices to what modules I should use for setting up my site as close as possible to what I imagine it beeing.
Thank you!
when i'm trying to start corn ("Run corn" in the panel) i get * Warning: rmdir(/tmp/update-extraction/typebased/images) [function.rmdir]: Permission denied in drupal_rmdir() (line 2277 of /home/www/apple.d4l-club.net/includes/file.inc).
* Warning: rmdir(/tmp/update-extraction/typebased/color) [function.rmdir]: Permission denied in drupal_rmdir() (line 2277 of /home/www/apple.d4l-club.net/includes/file.inc).
* Warning: rmdir(/tmp/update-extraction/typebased) [function.rmdir]: Permission denied in drupal_rmdir() (line 2277 of /home/www/apple.d4l-club.net/includes/file.inc).
* Warning: rmdir(/tmp/update-extraction/pockett/images/headers) [function.rmdir]: Permission denied in drupal_rmdir() (line 2277 of /home/www/apple.d4l-club.net/includes/file.inc).
* Warning: rmdir(/tmp/update-extraction/pockett/images) [function.rmdir]: Permission denied in drupal_rmdir() (line 2277 of /home/www/apple.d4l-club.net/includes/file.inc).
* Warning: rmdir(/tmp/update-extraction/pockett) [function.rmdir]: Permission denied in drupal_rmdir() (line 2277 of /home/www/apple.d4l-club.net/includes/file.inc).
* Warning: rmdir(/tmp/update-extraction/mystique_theme/js) [function.rmdir]: Permission denied in drupal_rmdir() (line 2277 of /home/www/apple.d4l-club.net/includes/file.inc).
I have made a rather large site before for my employer in Drupal 6.20, so I have some experience on this matter. Now I am trying to install Drupal 7 on a different host for a personal site. On this webspace, I have made some attempts earlier with drupal 6 proving that drupal works with this host.
function mytheme_theme_links($links, $attributes = array('class' => 'links')) {
global $language;
$output = '';
if (count($links) > 0) {
$output = '
';
$num_links = count($links);
$i = 1;
foreach ($links as $key => $link) {
$class = $key;
// Add first, last and active classes to the list of links to help out themers.
if ($i == 1) {
$class .= ' first';
}
if ($i == $num_links) {
$class .= ' last';
}
if (isset($link['href']) && ($link['href'] == $_GET['q'] || ($link['href'] == '' && drupal_is_front_page()))
&& (empty($link['language']) || $link['language']->language == $language->language)) {
$class .= ' active';
}
$output .= '
$class)) .'>';
if (isset($link['href'])) {
// Change the way primary links are rendered
if ($attributes['class'] == 'links primary-links') {
$link_text = '
' . $link['title'] . '
' . $link['attributes']['title'] . '';
$link['html'] = TRUE;
$output .= l($link_text, $link['href'], $link);
}
else {
// Pass in $link as $options, they share the same keys.