[pLog-svn] r2316 - plog/branches/plog-1.0.2/class/net/http

nick nizhenyuan ni.hero at gmail.com
Thu Jul 14 09:14:20 GMT 2005


Because it will return :error_access_forbidden. 
So I think the problem lies here , in adminacion.clas.php. It means
some of the session info is lost after users login the dashboard:

 // get the information about the user and quit if we don't have it...
            $this->_getUserInfo();
            if( $this->_userInfo == "" ) {
            	header( "HTTP/1.0 403 Forbidden" );
                print($this->mustAuthenticatePage());
                die();
            }

            // do the same with the information about the blog
            $this->_getBlogInfo();
            if( $this->_blogInfo == "" ) {
            	if( $this->_actionInfo->getActionParamValue() != "blogSelect" ) {
                	header( "HTTP/1.0 403 Forbidden" );
                	print($this->mustAuthenticatePage());
                    die();
                }
            }



More information about the pLog-svn mailing list