Having problems installing Drupal? See the Installation Guide for more information.

First time admin login

When i click the create new account button NOTHING happens, i just get the same page! whats wrong?
base_url is correct, database login is correct.

Why Can't I Edit theme.inc?

No matter what i try I am unable to edit theme.inc. I am getting very frustrated with this.

Here is an example of what i am trying to change:

function theme_list($refresh = 0) {
  static $list;

  if ($refresh) {
    unset($list);
  }

  if (!$list) {
    $list = array();
    $result = db_query("SELECT * FROM {system} where type = 'theme' AND status = '1' ORDER BY name");
    while ($theme = db_fetch_object($result)) {
      if (file_exists($theme->filename)) {
        $list[$theme->name] = $theme;
      }
    }
  }

  return $list;
}

This Is What I Want To Do:

function theme_list($refresh = 0) {
  static $list;
  
  $strHost = explode(".", $_SERVER['HTTP_HOST']);
  $base_host = strtolower($strHost[1]);
  
  if ($refresh) {
    unset($list);
  }

  if (!$list) {
    $list = array_fill(0,1,$base_host);
    
  }

  return $list;
}

I always end up with header errors (and not because of trailing spaces, the spaces stay exactly the same as they are distributed).

What am i doing wrong?

errors may be viewed Here

Disable Navigation Block

I asked this before at one point and I thought it was resolved in the 4.3rc. But I can't figure it out in the final release. It seems that the Navigation block is showing to all users. When I try to disable it for anonymous users, I lose the menu for logged in users (and thus, my administration menu). Is there a way to disable the defualt content so it doesn't show this block for unauthenticated users?

Error when using menu.module

I get the following error since i uploaded and tried installing the menu.module.

warning: Invalid argument supplied for foreach() in /home/virtual/site585/fst/var/www/html/modules/system.module on line 202.

how can i fix this?

Images in wrong order on book page in 4.2

I've looked around in the forums but couldn't find anything relating to this...

When I reference different images (i.e. [ image:17 ]) in a book page (not sure if it is like this in a story page as well), they reorder themselves numerically.

For example, if I want to put [ image:2 ] before [ image:1 ], I write it like that in the code, but when I view the page, it comes out just the opposite, [ image:1 ] moves into the spot that [ image:2 ] was supposed to take. That means that if I have 15 images on a page, you can imagine the confusion...

Users not logged out when leaving the site.

Hi there. I'm running the new 4.3.0 and I'm having a bit of problem with the "Users are logged out when leaving the site" option.

it seems that when users leave the site, they are never logged out, even with this setting set. They are still logged in on return to the site, even after closing the browser, rebooting, whatever.

Did some searches, but have found nothing on trusty ol' drupal.org. Help is apprecaited.

Thanks,
J

Pages

Subscribe with RSS Subscribe to RSS - Installing Drupal