PDA

Orijinalini görmek için tıklayınız : ÇÖZÜLDÜ Ücretsiz Joomla 2.5 Teması BT Arise Sorunu



iyiadam
14-02-2012, 12:48
Gerçekten çok güzel tasarlanmış ve kaliteli bir tema ve ücretsiz ! Ama bir bir sorunumuz var T3 Framework. Bu hatayı alıyorum ve sadece bu temada değil diğer t3 framework kullanan temalarda da aynı sorunu alıyorum ve sadece bir sitede değil iki ayrı sitede denedim ikisine de joomla 2.5 yeni kurulu ama ikisin de de aynı hatayı alıyorum. Bilgisi olan var ise lütfen yardım etsinler.

Aldığım hata bu: public_html/plugins/system/jat3/jat3/core/libs/Browser.php on line 139

Joomla Templates | Template showcase (http://bowthemes.com/bt-arise.html) işte yeni tema bu ve diğerleri aşağıda ve hepsi de ücretsiz temalardır.
Varsayılan - JA_Elastica Site Ja_elastica
Varsayılan - JA_Purity_ii Site Ja_purity_ii
Varsayılan - JA_T3_Blank Site Ja_t3_blank
Varsayılan - zt_xenia25 Site Zt_xenia25

İndir:
http://bowthemes.com/bt-arise/bt_arise_template_j25_v1.0.zip.html
Not: indirme için üyelik gereklidir.

Şems
14-02-2012, 13:32
T3 Framework sürümü güncel mi? Ve satırdaki kodu incelediniz mi acaba?

iyiadam
14-02-2012, 17:25
Evet dostum en güncel sürüm yüklü. Joomlart sitesinden yükledim. Kodları inceledim ama birşey anlamadım. sonra bir tekrar yükledim. ama sorun devam ediyor. acaba sitede joomlavi framework yüklü ve aktif olan tema da buna ait, acaba bir çakışma oluyor mudur? ama onu da denedim, bana mantıksız geldi.

Akar
14-02-2012, 17:36
Evet dostum en güncel sürüm yüklü. Joomlart sitesinden yükledim. Kodları inceledim ama birşey anlamadım. sonra bir tekrar yükledim. ama sorun devam ediyor. acaba sitede joomlavi framework yüklü ve aktif olan tema da buna ait, acaba bir çakışma oluyor mudur? ama onu da denedim, bana mantıksız geldi.Burada ne var?:
plugins/system/jat3/jat3/core/libs/Browser.php 139. satır

Şems
14-02-2012, 19:21
@Akar hocamın dediği gibi satırın alt ve üst kısmını da kapsayan kod kısmını eklerseniz yardımcı olmaya çalışabiliriz.

mhusty
14-02-2012, 19:37
Gerçekten çok güzel tasarlanmış ve kaliteli bir tema ve ücretsiz ! Ama bir bir sorunumuz var T3 Framework. Bu hatayı alıyorum ve sadece bu temada değil diğer t3 framework kullanan temalarda da aynı sorunu alıyorum ve sadece bir sitede değil iki ayrı sitede denedim ikisine de joomla 2.5 yeni kurulu ama ikisin de de aynı hatayı alıyorum. Bilgisi olan var ise lütfen yardım etsinler.

Aldığım hata bu: public_html/plugins/system/jat3/jat3/core/libs/Browser.php on line 139

Joomla Templates | Template showcase (http://bowthemes.com/bt-arise.html) işte yeni tema bu ve diğerleri aşağıda ve hepsi de ücretsiz temalardır.
Varsayılan - JA_Elastica Site Ja_elastica
Varsayılan - JA_Purity_ii Site Ja_purity_ii
Varsayılan - JA_T3_Blank Site Ja_t3_blank
Varsayılan - zt_xenia25 Site Zt_xenia25

Bu arada tema için teşekkürler joomla.gen.tr tema dizinine ekleriz...

iyiadam
15-02-2012, 12:18
139. satır: class Browser {
private $_agent = '';
private $_browser_name = '';
private $_version = '';
private $_platform = '';
private $_os = '';
private $_is_aol = false;
private $_is_mobile = false;
private $_is_robot = false;
private $_aol_version = '';

iyiadam
15-02-2012, 12:22
/**
* File: Browser.php
* Author: Chris Schuld (Chris Schuld's Blog (http://chrisschuld.com/))
* Last Modified: August 20th, 2010
* @version 1.9
* @package PegasusPHP
*
* Copyright (C) 2008-2010 Chris Schuld (chris@chrisschuld.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details at:
* The GNU General Public License v3.0 - GNU Project - Free Software Foundation (FSF) (http://www.gnu.org/copyleft/gpl.html)
*
*
* Typical Usage:
*
* $browser = new Browser();
* if( $browser->getBrowser() == Browser::BROWSER_FIREFOX && $browser->getVersion() >= 2 ) {
* echo 'You have FireFox version 2 or greater';
* }
*
* User Agents Sampled from: UserAgentString.com - Netscape version 4.0 (http://www.useragentstring.com/)
*
* This implementation is based on the original work from Gary White
* Browser Detection with PHP (http://apptools.com/phptools/browser/)
*
* UPDATES:
*
* 2010-08-20 (v1.9):
* + Added MSN Explorer Browser (legacy)
* + Added Bing/MSN Robot (Thanks Rob MacDonald)
* + Added the Android Platform (PLATFORM_ANDROID)
* + Fixed issue with Android 1.6/2.2 (Thanks Tom Hirashima)
*
* 2010-04-27 (v1.8):
* + Added iPad Support
*
* 2010-03-07 (v1.7):
* + *MAJOR* Rebuild (preg_match and other "slow" routine removal(s))
* + Almost allof Gary's original code has been replaced
* + Large PHPUNIT testing environment created to validate new releases and additions
* + Added FreeBSD Platform
* + Added OpenBSD Platform
* + Added NetBSD Platform
* + Added SunOS Platform
* + Added OpenSolaris Platform
* + Added support of the Iceweazel Browser
* + Added isChromeFrame() call to check if chromeframe is in use
* + Moved the Opera check in front of the Firefox check due to legacy Opera User Agents
* + Added the __toString() method (Thanks Deano)
*
* 2009-11-15:
* + Updated the checkes for Firefox
* + Added the NOKIA platform
* + Added Checks for the NOKIA brower(s)
*
* 2009-11-08:
* + PHP 5.3 Support
* + Added support for BlackBerry OS and BlackBerry browser
* + Added support for the Opera Mini browser
* + Added additional documenation
* + Added support for isRobot() and isMobile()
* + Added support for Opera version 10
* + Added support for deprecated Netscape Navigator version 9
* + Added support for IceCat
* + Added support for Shiretoko
*
* 2010-04-27 (v1.8):
* + Added iPad Support
*
* 2009-08-18:
* + Updated to support PHP 5.3 - removed all deprecated function calls
* + Updated to remove all double quotes (") -- converted to single quotes (')
*
* 2009-04-27:
* + Updated the IE check to remove a typo and bug (thanks John)
*
* 2009-04-22:
* + Added detection for GoogleBot
* + Added detection for the W3C Validator.
* + Added detection for Yahoo! Slurp
*
* 2009-03-14:
* + Added detection for iPods.
* + Added Platform detection for iPhones
* + Added Platform detection for iPods
*
* 2009-02-16: (Rick Hale)
* + Added version detection for Android phones.
*
* 2008-12-09:
* + Removed unused constant
*
* 2008-11-07:
* + Added Google's Chrome to the detection list
* + Added isBrowser(string) to the list of functions special thanks to
* Daniel 'mavrick' Lang for the function concept (Home | mavrick.id.au (http://mavrick.id.au))
*
*
* Gary White noted: "Since browser detection is so unreliable, I am
* no longer maintaining this script. You are free to use and or
* modify/update it as you want, however the author assumes no
* responsibility for the accuracy of the detected values."
*
* Anyone experienced with Gary's script might be interested in these notes:
*
* Added class constants
* Added detection and version detection for Google's Chrome
* Updated the version detection for Amaya
* Updated the version detection for Firefox
* Updated the version detection for Lynx
* Updated the version detection for WebTV
* Updated the version detection for NetPositive
* Updated the version detection for IE
* Updated the version detection for OmniWeb
* Updated the version detection for iCab
* Updated the version detection for Safari
* Updated Safari to remove mobile devices (iPhone)
* Added detection for iPhone
* Added detection for robots
* Added detection for mobile devices
* Added detection for BlackBerry
* Removed Netscape checks (matches heavily with firefox & mozilla)
*
*/

class Browser {
private $_agent = '';
private $_browser_name = '';
private $_version = '';
private $_platform = '';
private $_os = '';
private $_is_aol = false;
private $_is_mobile = false;
private $_is_robot = false;
private $_aol_version = '';

const BROWSER_UNKNOWN = 'unknown';
const VERSION_UNKNOWN = 'unknown';

const BROWSER_OPERA = 'Opera'; // Opera browser | Faster & safer internet | Free download (http://www.opera.com/)
const BROWSER_OPERA_MINI = 'Opera Mini'; // Opera Mini & Opera Mobile browsers (http://www.opera.com/mini/)
const BROWSER_WEBTV = 'WebTV'; // http://www.webtv.net/pc/
const BROWSER_IE = 'Internet Explorer'; // Internet Explorer - Web Browser for Microsoft Windows (http://www.microsoft.com/ie/)
const BROWSER_POCKET_IE = 'Pocket Internet Explorer'; // Internet Explorer Mobile - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/Internet_Explorer_Mobile)
const BROWSER_KONQUEROR = 'Konqueror'; // Konqueror - What is Konqueror? (http://www.konqueror.org/)
const BROWSER_ICAB = 'iCab'; // iCab - Internet Taxi for the Mac (http://www.icab.de/)
const BROWSER_OMNIWEB = 'OmniWeb'; // OmniWeb 5 - Products - The Omni Group (http://www.omnigroup.com/applications/omniweb/)
const BROWSER_FIREBIRD = 'Firebird'; // IBPhoenix (http://www.ibphoenix.com/)
const BROWSER_FIREFOX = 'Firefox'; // Mozilla Firefox Web Browser (http://www.mozilla.com/en-US/firefox/firefox.html)
const BROWSER_ICEWEASEL = 'Iceweasel'; // Get Iceweasel! (http://www.geticeweasel.org/)
const BROWSER_SHIRETOKO = 'Shiretoko'; // http://wiki.mozilla.org/Projects/shiretoko
const BROWSER_MOZILLA = 'Mozilla'; // Mozilla Firefox Web Browser (http://www.mozilla.com/en-US/)
const BROWSER_AMAYA = 'Amaya'; // Amaya Home Page (http://www.w3.org/Amaya/)
const BROWSER_LYNX = 'Lynx'; // Lynx - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/Lynx)
const BROWSER_SAFARI = 'Safari'; // Apple (http://apple.com)
const BROWSER_IPHONE = 'iPhone'; // Apple (http://apple.com)
const BROWSER_IPOD = 'iPod'; // Apple (http://apple.com)
const BROWSER_IPAD = 'iPad'; // Apple (http://apple.com)
const BROWSER_CHROME = 'Chrome'; // http://www.google.com/chrome
const BROWSER_ANDROID = 'Android'; // Android (http://www.android.com/)
const BROWSER_GOOGLEBOT = 'GoogleBot'; // Googlebot - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/Googlebot)
const BROWSER_SLURP = 'Yahoo! Slurp'; // Yahoo! Slurp - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/Yahoo!_Slurp)
const BROWSER_W3CVALIDATOR = 'W3C Validator'; // The W3C Markup Validation Service (http://validator.w3.org/)
const BROWSER_BLACKBERRY = 'BlackBerry'; // Cell Phones, Smartphones & Mobile Phones from BlackBerry.com (http://www.blackberry.com/)
const BROWSER_ICECAT = 'IceCat'; // GNU IceCat - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/GNU_IceCat)
const BROWSER_NOKIA_S60 = 'Nokia S60 OSS Browser'; // Web Browser for S60 - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/Web_Browser_for_S60)
const BROWSER_NOKIA = 'Nokia Browser'; // * all other WAP-based browsers on the Nokia Platform
const BROWSER_MSN = 'MSN Browser'; // http://explorer.msn.com/
const BROWSER_MSNBOT = 'MSN Bot'; // Meet our crawlers (http://search.msn.com/msnbot.htm)
// msnbot - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/Msnbot) (used for Bing as well)

const BROWSER_NETSCAPE_NAVIGATOR = 'Netscape Navigator'; // Netscape ISP Homepage (http://browser.netscape.com/) (DEPRECATED)
const BROWSER_GALEON = 'Galeon'; // Home < Main < Galeon (http://galeon.sourceforge.net/) (DEPRECATED)
const BROWSER_NETPOSITIVE = 'NetPositive'; // NetPositive - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/NetPositive) (DEPRECATED)
const BROWSER_PHOENIX = 'Phoenix'; // History of Firefox - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/History_of_Mozilla_Firefox) (DEPRECATED)

const PLATFORM_UNKNOWN = 'unknown';
const PLATFORM_WINDOWS = 'Windows';
const PLATFORM_WINDOWS_CE = 'Windows CE';
const PLATFORM_APPLE = 'Apple';
const PLATFORM_LINUX = 'Linux';
const PLATFORM_OS2 = 'OS/2';
const PLATFORM_BEOS = 'BeOS';
const PLATFORM_IPHONE = 'iPhone';
const PLATFORM_IPOD = 'iPod';
const PLATFORM_IPAD = 'iPad';
const PLATFORM_BLACKBERRY = 'BlackBerry';
const PLATFORM_NOKIA = 'Nokia';
const PLATFORM_FREEBSD = 'FreeBSD';
const PLATFORM_OPENBSD = 'OpenBSD';
const PLATFORM_NETBSD = 'NetBSD';
const PLATFORM_SUNOS = 'SunOS';
const PLATFORM_OPENSOLARIS = 'OpenSolaris';
const PLATFORM_ANDROID = 'Android';

const OPERATING_SYSTEM_UNKNOWN = 'unknown';

public function Browser($useragent="") {
$this->reset();
if( $useragent != "" ) {
$this->setUserAgent($useragent);
}
else {
$this->determine();
}
}

/**
* Reset all properties
*/
public function reset() {
$this->_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : "";
$this->_browser_name = self::BROWSER_UNKNOWN;
$this->_version = self::VERSION_UNKNOWN;
$this->_platform = self::PLATFORM_UNKNOWN;
$this->_os = self::OPERATING_SYSTEM_UNKNOWN;
$this->_is_aol = false;
$this->_is_mobile = false;
$this->_is_robot = false;
$this->_aol_version = self::VERSION_UNKNOWN;

iyiadam
15-02-2012, 12:25
biraz uzun oldu kusura bakmayın

Ümit
15-02-2012, 21:22
Verdiğin kodlara göre JA T3 Framework uygulama eki'ni güncellediğin zaman sorunun çözülecektir.

İndirmek için:
JA T3 System plugin for Joomla 2.5 - Downloads - JoomlArt Forums (http://www.joomlart.com/forums/downloads.php?do=file&id=2089)


Not: Bundan sonra açacağın başlıklar için "Ücretsiz Tema diye buna derim!" yerine Tema adını içeren "Bt Arise Joomla 2.5" gibi başlıklar kullanmanı rica edeceğim. Konu başlığı " Ücretsiz Joomla 2.5 Teması BT Arise" olarak düzenlenmiştir.

iyiadam
15-02-2012, 21:44
Haklısın dostum!
framework güncel zaten; hem güncelledim hem de dosyaları ayrıca upload ettim. ama hala olmadı. yok mu cözüm?

iyiadam
15-02-2012, 22:00
Dostlar, mesele çözlmüştür! Sorunun ja t3 framework ile hiçbir ilisi yokmuş, tamamen jv framework'tan kaynaklanıyormuş, jv framework plugin'i kaldırdım sorun bitti.

Ümit
15-02-2012, 22:07
Geçmiş olsun.