Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> To mnie chyba jednak przerasta
upright
post
Post #1





Grupa: Zarejestrowani
Postów: 1
Pomógł: 0
Dołączył: 17.09.2006

Ostrzeżenie: (0%)
-----


Więc chciałbym zadać (jak sądzę dla Was) prosty problemik, jaki mnie spotkał - wogóle nie wiem, w którą stronę zacząć patrzeć.
Jak chcę się wylogować z konta administratora na Joomli, wyskakuje mi komunikat:
Cytat
Fatal error: Call to a member function on a non-object in /home/.../public_html/.../administrator/logout.php on line 24p


A ten plik wygląda tak:
Cytat
<?php
/**
* @version $Id: logout.php 302 2005-10-02 06:23:10Z Levis $
* @package Joomla
* @copyright Copyright © 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );

$currentDate = date( "Y-m-d\TH:i:s" );

if ( isset( $_SESSION['session_user_id'] ) && $_SESSION['session_user_id'] != '' ) {
$query = "UPDATE #__users"
. "\n SET lastvisitDate = '$currentDate'"
. "\n WHERE id = ". $_SESSION['session_user_id']
;
$database->setQuery( $query );

if (!$database->query()) {
echo $database->stderr();
}
}

if ( isset( $_SESSION['session_id'] ) && $_SESSION['session_id'] != '' ) {
$query = "DELETE FROM #__session"
. "\n WHERE session_id = '". $_SESSION['session_id'] ."'"
;
$database->setQuery( $query );
if (!$database->query()) {
echo $database->stderr();
}
}

$name = '';
$fullname = '';
$id = '';
$session_id = '';

session_unregister( 'session_id' );
session_unregister( 'session_user_id' );
session_unregister( 'session_username' );
session_unregister( 'session_usertype' );
session_unregister( 'session_logintime' );

if (session_is_registered( 'session_id' )) {
session_destroy();
}
if (session_is_registered( 'session_user_id' )) {
session_destroy();
}
if (session_is_registered( 'session_username' )) {
session_destroy();
}
if (session_is_registered( 'session_usertype' )) {
session_destroy();
}
if (session_is_registered( 'session_logintime' )) {
session_destroy();
}
mosRedirect( '../index2.php' );
?>
Pomocy
Go to the top of the page
+Quote Post

Posty w temacie


Reply to this topicStart new topic
2 Użytkowników czyta ten temat (2 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 18.09.2025 - 04:53