Posts made by Martin Dougiamas

Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
Ah, I see it it now. Yes, they seem to be trapping and checking calls to header() that contain "location" lines, perhaps to stop people doing funny things with redirects on their service. sad

Yuk. Unfortunately I use these sorts of redirects all over the place in Moodle (eg after editing modules, making posts, etc) to save having "continue" buttons all the time.

It would be a hack, but one thing you could do is to look through the code for lines like:
  header("Location: $CFG->wwwroot");

and replace them with lines like:
  print_continue("$CFG->wwwroot");

which will print a "continue" button.
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
Hmmm ... the only reason I can think of is that the double slash is in the $CFG->wwwroot definition within config.php. Have you checked for this? It should be:
$CFG->wwwroot = "http://members.lycos.co.uk/username/moodle";

If not this, then email me the URL: I'd like to see what's happening here.
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
Hi, Jacob.

I'm pretty sure the problem is actually pretty minor (it's probably trying to access a field called "user" when they are now called "userid"). There's no need to delete the database, I'm just suggesting you get a fresh copy of the Moodle files. You shouldn't have to lose anything.

Also, it's possible to visit /admin even when not logged in - it should always fix things up if all the files are present and up-to-date.

Please email me some access if you still have trouble so I can take a look.