Page title is always [site-name]|[site-slogan]

I'm an experienced Web developer, but I'm new to Drupal. I'm getting there based on various tutorial and books. But no matter what theme or options I choose the rendered page title is always

<title>[site-name]|[site-slogan]</title>

I have non-blank values filled in on Administration | Configuration | Site Information | Site details. What's missing?

Possible To Create User Sign Up/Login?

I am using a blank HTML as my homepage that directs them to Drupal. Is it possible to have the login/register on my front page?

My website is, www.collegiateboard.com (unfinished)

So instead of having a link that directs them to the Drupal forums, user can login on the front page like Twitter or Facebook?

Views doesn't show comments right

Drupal 7 / Views 7.x-3.0-alpha1

I want to list a user's comments. The user is given by the url. The problem is that it shows me comments from other users.

Here's my setup and views Query:

http://i52.tinypic.com/2rrrnnp.jpg

SELECT node_comment.title AS node_comment_title, node_comment.nid AS node_comment_nid, node_comment__comment.subject AS node_comment__comment_subject, node_comment__comment.cid AS node_comment__comment_cid, node_comment__comment.nid AS node_comment__comment_nid
FROM 
{comment} comment
INNER JOIN {users} users_comment ON comment.uid = users_comment.uid
INNER JOIN {node} node_comment ON comment.nid = node_comment.nid
LEFT JOIN {comment} node_comment__comment ON node_comment.nid = node_comment__comment.nid
WHERE (( (users_comment.uid = '1') ))
LIMIT 10 OFFSET 0

This is the view:

/* Display: Página */
$handler = $view->new_display('page', 'Página', 'page_1');
$handler->display->display_options['defaults']['relationships'] = FALSE;
/* Relationship: Comentario: Usuario */
$handler->display->display_options['relationships']['uid']['id'] = 'uid';
$handler->display->display_options['relationships']['uid']['table'] = 'comment';
$handler->display->display_options['relationships']['uid']['field'] = 'uid';
$handler->display->display_options['relationships']['uid']['required'] = 1;
/* Relationship: Comentario: Nodo */

Block visibility in "view display page" pages

Guys tell me please! There was a problem with displaying menu block on the right pages.

why db_query() not work in block body

thank you for looking at the post.i create a new block,and add php code in its body.
like this:

<?php
$result = db_query('SELECT uid FROM node WHERE nid = 5');
print_r($result);
?>

my site's node 5 exist,and its uid is 2 in database,but running it not display uid.why?
it display this on the page:

BAsed on variable from php how to redirect to different page or

So I get a variable back from php script in my case it is a geo tag piece of info gathered from this site http://www.geoplugin.net someone was nice enough to provide this as answer to another question - i mention it to maybe help others.
Now that I have a variable is there a way to insert a different block on the page depending on this variable or maybe redirect users. I actually want to do this for the home page i.e. switch depending on the visitors city.

Thank you all for any assistance.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x