My site is fine and running..

when anonymous username or wrong password is entered , it loads to my home with red lines around username box and nothing else..

how am i display to with the message "Sorry unregistered username/password entered" when i enter like the above.

Comments

coreyp_1’s picture

What theme are you using?

- Corey

aruns4’s picture

http://www.befolks.com

i am using fireflystream(downloaded from the module section). can anyone help me..

rkarajgi’s picture

Arun: Try to change your theme to pushbutton and see if it works properly. You should see the error message.

It means there may be some issue with the fireflystream theme that you downloaded. Perhaps, just adding the message line as shown above would solve the problem of fireflystream theme.

I hope this helps. Thanks

----------------------------------------------------------
- Rajeev Karajgikar, Drupaler in South Bay Area

----------------------------------------------------------
- R Karajgikar

beautifulmind’s picture

Check if your page.tpl.php has following code:

<?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
<?php if ($tabs): print $tabs .'</div>'; endif; ?>
<?php if (isset($tabs2)): print $tabs2; endif; ?>
<?php if ($help): print $help; endif; ?>
<?php if ($messages): print $messages; endif; ?>
<?php print $content; ?>

You must have <?php if ($messages): print $messages; endif; ?> to be able to see any error or information message.

Thank you

:)
Beautifulmind

Regards.
🪷 Beautifulmind

aruns4’s picture

http://www.befolks.com

Thanks a lot man!!Thanks for your kind and valuable response!!

i have been searching this days in drupal and goolge to the most.
People like you are a boon for beginners like me

It works..

aruns4’s picture

http://www.befolks.com

my site is fine after your instructions..

but when i click it open a blog which got posted some error msg getting displayed as in my themes template.php in line 43 got some errors..

if i remove the code from page.tpl which u said previously then no error getting displayed.(but original prob wron username/paswd dont show up)

i hv checked it my localserver and getting same error.

I hv attached a photocopy for your reference below(but if u click the posts on my blog as anonymous it dont show any error, wonder y)pls do help me

http://drupal.org/files/issues/Capture_20.JPG

Thank you

beautifulmind’s picture

Humm....

Here is a check list for you...
1) Run the cron
2) Check if the permissions for comments are properly configured.
3) Check in the posting settings, if it asks to rebuild the permissions. Rebuild it.
4) If the cache enabled, run the cron after disabling the cache.

5) Most important: Post the feedback here ;)

Thank you.

:)
Beautifulmind

Regards.
🪷 Beautifulmind

aruns4’s picture

http://www.befolks.com

i hv added the following lines in my current themes template.tpl.php and now found working..

function phptemplate_comment_wrapper($content, $type = null) {
  static $node_type;
  if (isset($type)) $node_type = $type;

if (!$content || $node_type == 'forum') {
    return '<div id="comments">'. $content . '</div>';
  }
  else {
    return '<div id=" comments "><h2 class="comments">'. t('Comments') .'</h2>'. $content .'</div>';
  }
}

now my site is cool man.

could u please help me set up and run clean urls in my site.
i hv been searching much for this,

here is the link below for ur xtra info regarding it

http://drupal.org/node/307940

thank you

rkarajgi’s picture

Arun: It seems like the contributed theme you are using has issues/problems. Since it seems like this is your first site, it may be easier for you to progress if you use a standard Drupal theme (such as pushbutton) to make your first drupal site. That way you will be certain the problems are not due to use of a contributed theme.

If it will help, try this Beginners Cookbook http://drupal.org/handbook/customization/tutorials/beginners-cookbook

----------------------------------------------------------
- Rajeev Karajgikar, Drupaler in South Bay Area

----------------------------------------------------------
- R Karajgikar