PDA

Zobacz pełną wersję : joomleague 2.0



split
06-02-2014, 19:09
Zainstalowałem Joomleague na mojej stronie. Tylko... nie widzę nigdzie gdzie mogę teraz założyć własną ligę, kluby itp. Gdzie jest ten panel sterujący tym?:zagubiony:


Edycja:

choć w sumie nie jestem nawet pewien czy to dobrze zainstalowałem. Najpierw na górze miałem wpisać dane do mojego konta ftp a potem w rubryce instaluj z katalogu po prostu wgrałem. Ładowało się i pojawiły się komunikaty takie:



JFTP::login: Unable to login
Nie powiodło się uwierzytelnienie użytkownika...
JInstaler::Instalacja: Nie znaleziono pliku instalacyjnego XML
JInstaler::Instalacja: nie można odnaleźć pliku instalacyjnego XML



Komponent zainstalowano poprawnie




League Management component for Joomla 1.5x - Release 1.6.0-nathalie


JoomLeague InstallationFailed updating version tableInserting Ghost-Player data - Succes
Inserting default Sports-Type - Succes
Updating database version from '...- ' to 'TableVersion::przechowanie nie powiodło się
Table 'theball_cba_pl.bctdh_joomleague_version' doesn't exist SQL=INSERT INTO `bctdh_joomleague_version` (`id`,`version`,`major`,`minor`,`build`,`revision` ,`file`,`count`) VALUES ('0','nathalie','1','6','0','df82fc3','joomleague' ,'1')1.6.0.df82fc3-nathalie' - Succes
Installation finished succesfully!Welcome to JoomLeague!Undoubtedly, you are about to embark on many joyous hours of managing your Sports League.
To get started, navigate to Components then click on JoomLeague or just click the JoomLeague button on your Joomla control panel.
Before doing anything more, please check this link for the First steps (http://wiki.joomleague.net/doku.php?id=faq:howto) or read the Wiki-Contens, available on-line on our official site's JoomLeague Wiki (http://wiki.joomleague.net/).
Should you have any questions, comments or need some help, do not hesitate to post on our support forum (http://forum.joomleague.net/). Please also visit our Website if you want to help us to make JoomLeague better than it is now !
But... Pleeeeaaaaase...
Search for your question first before you ASK!!!
Many problems have been answered yet and we are sure you will find a solution for them just by searching in our support forum.
If not in your case??? Please ask us... http://theball.cba.pl/images/smilies/wink.gif
Remember: You can always get on-line help for the JoomLeague page you are currently viewing by clicking on the help icon in the top right corner of all backend configuration pages of the JoomLeague component.
http://theball.cba.pl/media/com_joomleague/jl_images/joomleague_logo.png






jest to coś dobrego?

- - - Updated - - -

Sorry, teraz zauważyłem, że podałem złe dane do konta ftp. Teraz wpisałem na 100% poprawnie, wgrałem znowu ten pakiet instalacyjny i przeniosło mnie na stronę na której pisało coś takiego: 502 Bad Gateway. No i dalej nic. Proszę bardzo o pomoc. Zależy mi na tym module.

split
07-02-2014, 09:49
Dzisiaj spróbowałem jeszcze raz to zainstalować. Teraz nie pojawiły się żadne błędy! Wchodzę w komponenty-> joomleague i... przenosi mnie na stronę z białym tłem z komunikatem:

Fatal error: Cannot make static method JModel::getInstance() non static in class JLGModel in /virtual/theball.cba.pl/components/com_joomleague/assets/classes/jlgmodel.php on line 18

co jest grane? wklejam poniżej kod, który mam w tym pliku jlgmodel.php:


<?php
/**
* @copyright Copyright (C) 2006,2007,2008,2009,2010 JoomLeague.net. All rights reserved.
* @license 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.
*/


// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();


jimport( 'joomla.application.component.model');


class JLGModel extends JModel
{
/**
* Overrides method to try to load model from extension if it exists
*/
function &getInstance( $type, $prefix = '', $config = array() )
{
$extensions = JoomleagueHelper::getExtensions(JRequest::getInt(' p'));

foreach ($extensions as $e => $extension) {
$modelType = preg_replace('/[^A-Z0-9_\.-]/i', '', $type);
$modelClass = $prefix.ucfirst($modelType).ucfirst($extension);
$result = false;

if (!class_exists( $modelClass ))
{
jimport('joomla.filesystem.path');
$path = JPath::find(
JModel::addIncludePath(),
JModel::_createFileName( 'model', array( 'name' => $modelType))
);
if ($path)
{
require_once $path;

if (class_exists( $modelClass ))
{
$result = new $modelClass($config);
return $result;
}
}
}
else {
$result = new $modelClass($config);
return $result;
}
}
$instance = parent::getInstance($type, $prefix, $config);
return $instance;
}
}


są w nim jakieś błędy?

zwiastun
08-02-2014, 13:50
Czy Twój serwer spełnia wymagania komponentu / posiadanej wersji Joomla?