Beiträge von Belinda

    Hallo mein Adminbereich ist nch dem login weiss ich komme im Backend nicht mehr weiter bitte um Hilfe


    Php Fatal error:call to a member funktion getInt()on a non-object in /home/www/web391/html/web/administrator/components/com_postinstall/models/massages.php on line 37



    <?php
    /**
    * @package Joomla.Administrator
    * @subpackage com_postinstall
    *
    * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
    * @license GNU General Public License version 2 or later; see LICENSE.txt
    */


    defined('_JEXEC') or die;


    /**
    * Model class to manage postinstall messages
    *
    * @package Joomla.Administrator
    * @subpackage com_postinstall
    * @since 3.2
    */
    class PostinstallModelMessages extends FOFModel
    {
    /**
    * Builds the SELECT query
    *
    * @param boolean $overrideLimits Are we requested to override the set limits?
    *
    * @return JDatabaseQuery
    *
    * @since 3.2
    */
    public function buildQuery($overrideLimits = false)
    {
    $query = parent::buildQuery($overrideLimits);


    $db = $this->getDbo();


    // Add a forced extension filtering to the list
    $eid = $this->input->getInt('eid', 700); Hier sollte der FEHLer sein
    $query->where($db->qn('extension_id') . ' = ' . $db->q($eid));


    // Force filter only enabled messages
    $published = $this->input->getInt('published', 1);
    $query->where($db->qn('enabled') . ' = ' . $db->q($published));


    return $query;
    }



    HILFEEEEE