Post-Installation

From GeeklogWiki
Revision as of 11:29, 2 July 2004 by Tokyoahead (talk | contribs) (Geeklog wont let me login!)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The username & password is correct, there is no failure-msg, but still I am not logged in?

Check the following two things:

Do you have "Register Globals OFF"? It mus be ON for geeklog. You can set this on Apache with a .htaccess-file. create an empty file in the public_html-directory called ".htaccess" and put the following line into it:

php_flag register_globals on

If you have this, and still have the problem, check your cookie-settings. You have to have them enabled on your browser. Further, the cookie-domain has to match your current domain. For this, check your config.php. There is a value called $_CONF['cookiedomain'] = ....

It might be best to set it to

$_CONF['cookiedomain']=$_SERVER["HTTP_HOST"];

so automatically the current domain is used. This is very usefull if you have a copy of your geeklog site on your local PC for testing.

Otherwise set it to the domain that the user sees when accessing your site, such as "apple.com".