Difference between revisions of "Post-Installation"

From GeeklogWiki
Jump to: navigation, search
(added note about register_globals)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
'''Note:''' Geeklog 1.4.0 and later do not require register_globals to be "on" any more, so that part of this article is no longer relevant.
  
 +
 +
== I can not login ==
 +
 +
The username & password is correct, there is no failure message but still I am not logged in?
 +
 +
Check the following two things:
 +
 +
Do you have "Register Globals OFF"? It must 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:
 +
 +
<pre>php_flag register_globals on</pre>
 +
 +
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
 +
 +
<pre>$_CONF['cookiedomain'] = $_SERVER["HTTP_HOST"];</pre>
 +
 +
so automatically the current domain is used. This is very useful 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 "geeklog.net".

Latest revision as of 12:51, 6 May 2009

Note: Geeklog 1.4.0 and later do not require register_globals to be "on" any more, so that part of this article is no longer relevant.


I can not login

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

Check the following two things:

Do you have "Register Globals OFF"? It must 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 useful 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 "geeklog.net".