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
 
Start new topic
Odpowiedzi (1 - 2)
nospor
post
Post #2





Grupa: Moderatorzy
Postów: 36 557
Pomógł: 6315
Dołączył: 27.12.2004




1)
Cytat
To mnie chyba jednak przerasta
Napewno przerasta cie nadanie dla topicu wlasciwego tytulu.... popraw tytul na sensowny

2)
proszę poprawić tytuł o znacznik zgodnie z zasadami forum Przedszkole:
Temat: Tematyka i zasady panujace na forum Przedszkole



3) zaznacz w tym kodzie, ktora to linia z bledem

4) Uzywaj wlasciwego bbcode


--------------------

"Myśl, myśl, myśl..." - Kubuś Puchatek || "Manual, manual, manual..." - Kubuś Programista
"Szukaj, szukaj, szukaj..." - Kubuś Odkrywca || "Debuguj, debuguj, debuguj..." - Kubuś Developer

Go to the top of the page
+Quote Post
sticker
post
Post #3





Grupa: Zarejestrowani
Postów: 611
Pomógł: 19
Dołączył: 28.02.2005
Skąd: Wrocław

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


nie znam sie na joomli ale z tego co widze w kodzie to obiekt $database nie został zainicjowany.

Sciągnąłem joomle brakuje Ci definicji zmiennej globalnej
global $database, $_VERSION;
wklej to zaraz po include i bedzie hulać


--------------------
Go to the top of the page
+Quote Post

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

 



RSS Aktualny czas: 21.08.2025 - 06:12