If you do a Google search on Drupal, you will see an advertisment titled: Warning Do Not Use Drupal. They are trying to exploit Drupal and undermine our good name. We leave it to the creative minds of Drupalers how to fight it...
Hell Opens Up New Exclusive Layer for Drupal Developers
(PRWeb) -- Last week, the Drupal Content Management System became the first opensource CMS to have its own layer of hell. Though many proprietary CMS's, most notably Vignette, have long had their own exclusive parts of hell, this was a first for open source.
After upgrading from 4.6 to 4.7 i noticed that all the Home links now point to example.com/node instead of example.com.
This page has a pagerank of 0 and looks exactly the same as the hp (example.com) to google (duplicate content is a problem with google and can lead to a drop in PR). While the actual hp lost a lot of (internal links).
If you have a problem in your breadcrumb home link showing /front_page or anything else you like to modify use, modify the code below:
<?php
$breadcrumb = drupal_get_breadcrumb();
if (!empty($breadcrumb[1])) {
//Define your own home link
$breadcrumb[0] = '<a href="/">Home</a>';
}
else {
$breadcrumb[0] = '';
}
drupal_set_breadcrumb($breadcrumb);
?>
This code modifies to remove the Home link if it does not have a child. If you don't want feature this just use the code below:
I', new to the drupal world and have aquesiton. I work in an organization where there a number of groups internally that would like a drupal instance to create wikis, blogs, and discussions. Instead of creating one off instances, is it possible to manage multiple groups within on drupal database? Can I control access to these sites so that only group members can access their site? Thanks for any and all help.
Just started with drupal, and already I am wondering if it's not overkill for what I need at this point.
My site is a bunch of static pages - right now all I need is to display them as such, but manage some of the content using drupal user authentication/roles, etc.
Basically I want the site:
1.not to be impacted by the Drupal theme
2.not to display anything Drupal related (logins, tabs)
3.A login link to take the user to a page where they can login and do some content management