maralweb

Please install Plugin YT Framework and enable it

13 پست در این موضوع

من قالب سایتمو عوض کردم یعنی ی قالبی و نصب کردم حالا این خطا رو می ده ...... پلاگین مربوطه رو از کجا میشه دانلود کرد؟؟؟؟؟؟ ممنون

Share this post


Link to post
Share on other sites
آموزش ووکامرس قالب جوملا قالب وردپرس قالب رایگان وردپرس قالب رایگان جوملا هاست نامحدود هاست جوملا هاست لاراول هاست وردپرس هاست ارزان هاست ربات تلگرام خرید دامنه آموزش ساخت ربات تلگرام با php آموزش html و css آموزش لاراول آموزش cPanel آموزش php آموزش سئو وردپرس آموزش امنیت وردپرس آموزش وردپرس آموزش فرم ساز RSform آموزش سئو جوملا آموزش فروشگاه ساز Hikashop آموزش فروشگاه ساز ویرچومارت آموزش طراحی سایت آگهی تبلیغاتی آموزش امنیت جوملا آموزش طراحی سایت فروش فایل آموزش طراحی قالب ریسپانسیو با Helix آموزش جوملا 3 آموزش ساخت ربات دکمه ی شیشه ای آموزش ساخت ربات همکاری در فروش آموزش ساخت ربات جذب ممبر آموزش ساخت ربات ضد اسپم آموزش ساخت ربات پیوست فایل سورس ربات مدیر گروه | ربات مدیر گروه همسریابی

لازم ذکر است قالب استفاده شده از قالب های رایگان جوملاست .. قالب پلاس رایگان

Share this post


Link to post
Share on other sites

دوست عزیز ممنون از راهنمایی تون درست شد ولی الان صفحه سفید نشون می ده آیا جایی باید تنظیماتی انجام بدم؟؟؟؟؟؟؟؟؟/

Share this post


Link to post
Share on other sites

قالب خالی نصب کنید یکسری مشکلات پیش میاد که باید مرحله به مرحله حل کنید . همیشه سعی کنید با بسته نصبی کار کنید . در تنظیمات کلی گزارش خطا رو روی حداکثر بذارید تا پیغام های خطا رو ببینید .

Share this post


Link to post
Share on other sites

Fatal error: Call to a member function getParam() on a non-object in /home/toorists/public_html/templates/jm_plus/index.php on line 23

Share this post


Link to post
Share on other sites

<?php

/*

* ------------------------------------------------------------------------

* Copyright © 2009 - 2013 The YouTech JSC. All Rights Reserved.

* @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html

* Author: The YouTech JSC

* Websites: http://www.smartaddons.com - Account Suspended

* ------------------------------------------------------------------------

*/

// no direct access

defined( '_JEXEC' ) or die( 'Restricted access' );

// Check yt plugin

if(!defined('YT_FRAMEWORK')){

throw new Exception(JText::_('INSTALL_YT_PLUGIN'));

}

if(!defined('J_TEMPLATEDIR')){

define('J_TEMPLATEDIR', JPATH_SITE.J_SEPARATOR.'templates'.J_SEPARATOR.$this->template);

}

// Include file: frame_inc.php

include_once (J_TEMPLATEDIR.J_SEPARATOR.'includes'.J_SEPARATOR.'frame_inc.php');

// Check direction for html

$dir = ($yt->getParam('direction') == 'rtl') ? ' dir="rtl"' : '';

?>

<!DOCTYPE html>

<html<?php echo $dir; ?> lang="<?php echo $this->language; ?>">

<head>

<jdoc:include type="head" />

<?php

$browser = new Browser(); ?>

<meta name="HandheldFriendly" content="true"/>

<meta name="format-detection" content="telephone=no">

<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<?php if ($browser->getBrowser()== Browser::BROWSER_IPHONE ){?>

<meta name="apple-mobile-web-app-capable" content="yes" />

<meta name="apple-touch-fullscreen" content="yes" />

<?php }

// Include css, js

include_once (J_TEMPLATEDIR.J_SEPARATOR.'includes'.J_SEPARATOR.'head.php');

?>

</head>

<?php

//

$cls_body = '';

//render a class for home page

$cls_body .= $yt->isHomePage() ? 'homepage ' : '';

//add a class for each component

$cls_body .= (JRequest::getVar('option')!= null) ? JRequest::getVar('option') .' ' : '';

//add a view class which helps you easy to style

$cls_body .= (JRequest::getVar('view')!= null) ? 'view-' . JRequest::getVar('view') . ' ' : '';

//for stype. With each style, we will use one class

$cls_body .= $yt->getParam('templateColor').' ';

//for RTL direction

$cls_body .= ($yt->getParam('direction') == 'rtl') ? 'rtl' . ' ' : '';

//add a class according to the template name

$cls_body .= $yt->template. ' ';

$cls_body .= 'layout_'.$layout. ' ';

// class slideshow

$cls_body .= ($doc->countModules('slideshow'))?'':'no-slider ';

$cls_body .= ' yt-jv'.J_VERSION;

?>

<body id="bd" class="<?php echo $cls_body; ?>" onLoad="prettyPrint()">

<jdoc:include type="modules" name="debug" />

<section id="yt_wrapper">

<a id="top" name="scroll-to-top"></a>

<?php

/*render blocks. for positions of blocks, please refer layouts folder. */

foreach($yt_render->arr_TB as $tagBD) {

//BEGIN Check if position not empty

if( $tagBD["countModules"] > 0 ) {

// BEGIN: Content Area

if( ($tagBD["name"] == 'content') ) {

//class for content area

$cls_content = $tagBD['class_content'];

$cls_content .= ' block';

echo "<{$tagBD['html5tag']} id=\"{$tagBD['id']}\" class=\"{$cls_content}\">";

?>

<div class="yt-main">

<div class="yt-main-in1 container">

<div class="yt-main-in2 row-fluid">

<?php

$countL = $countR = $countM = 0;

// BEGIN: foreach position of block content

// IMPORTANT: Please do not edit this block

foreach($tagBD['positions'] as $position):

include(J_TEMPLATEDIR.J_SEPARATOR.'includes'.J_SEPARATOR.'block-content.php');

endforeach;

// END: foreach position of block content

?>

</div>

</div>

</div>

<?php

echo "</{$tagBD['html5tag']}>";

?>

<?php

// END: Content Area

// BEGIN: For other blocks

} elseif ($tagBD["name"] != 'content'){

echo "<{$tagBD['html5tag']} id=\"{$tagBD['id']}\" class=\"block\">";

?>

<div class="yt-main">

<div class="yt-main-in1 container">

<div class="yt-main-in2 row-fluid">

<?php

if( !empty($tagBD["hasGroup"]) && $tagBD["hasGroup"] == "1"){

// BEGIN: For Group attribute

$flag = '';

$openG = 0;

$c = 0;

foreach( $tagBD['positions'] as $posFG ):

$c = $c + 1;

if( $posFG['group'] != "" && $posFG['group'] != $flag){

$flag = $posFG['group'];

if ($openG == 0) {

$openG = 1;

$groupnormal = 'group-' . $flag.$tagBD['class_groupnormal'];

echo '<div class="' . $groupnormal . ' ' . $yt_render->arr_GI[$posFG['group']]['class'] . '">' ;

echo $yt->renPositionsGroup($posFG);

if($c == count( $tagBD['positions']) ) {

echo '</div>';

}

} else {

$openG = 0;

$groupnormal = 'group-' . $flag;

echo '</div>';

echo '<div class="' . $groupnormal . ' '. $yt_render->arr_GI[$posFG['group']]['class'] . '">' ;

echo $yt->renPositionsGroup($posFG);

}

} elseif ($posFG['group'] != "" && $posFG['group'] == $flag){

echo $yt->renPositionsGroup($posFG);

if($c == count( $tagBD['positions']) ) {

echo '</div>';

}

}elseif($posFG['group']==""){

if($openG ==1){

$openG = 0;

echo '</div>';

}

echo $yt->renPositionsGroup($posFG);

}

endforeach;

// END: For Group attribute

}else{

// BEGIN: for Tags without group attribute

if(isset($tagBD['positions'])){

echo $yt->renPositionsNormal($tagBD['positions'], $tagBD["countModules"]);

}

// END: for Tags without group attribute

}

?>

</div>

</div>

</div>

<?php

echo "</{$tagBD['html5tag']}>";

?>

<?php

}

// END: For other blocks

}

// END Check if position not empty

}

//END: For

?>

<?php

include_once (J_TEMPLATEDIR.J_SEPARATOR.'includes'.J_SEPARATOR.'special-position.php');

include_once (J_TEMPLATEDIR.J_SEPARATOR.'includes'.J_SEPARATOR.'bottom.php');

?>

</section>

</body>

</html>

Share this post


Link to post
Share on other sites

* ------------------------------------------------------------------------

* Copyright © 2009 - 2013 The YouTech JSC. All Rights Reserved.

* @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html

* Author: The YouTech JSC

* Websites: http://www.smartaddons.com - Account Suspended

* ------------------------------------------------------------------------

*/

// no direct access

defined( '_JEXEC' ) or die( 'Restricted access' );

// Check yt plugin

if(!defined('YT_FRAMEWORK')){

throw new Exception(JText::_('INSTALL_YT_PLUGIN'));

}

if(!defined('J_TEMPLATEDIR')){

define('J_TEMPLATEDIR', JPATH_SITE.J_SEPARATOR.'templates'.J_SEPARATOR.$this->template);

}

// Include file: frame_inc.php

include_once (J_TEMPLATEDIR.J_SEPARATOR.'includes'.J_SEPARATOR.'frame_inc.php');

// Check direction for html

$dir = ($yt->getParam('direction') == 'rtl') ? ' dir="rtl"' : '';

?>

<!DOCTYPE html>

<html<?php echo $dir; ?> lang="<?php echo $this->language; ?>">

<head>

<jdoc:include type="head" />

<?php

$browser = new Browser(); ?>

<meta name="HandheldFriendly" content="true"/>

<meta name="format-detection" content="telephone=no">

<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<?php if ($browser->getBrowser()== Browser::BROWSER_IPHONE ){?>

<meta name="apple-mobile-web-app-capable" content="yes" />

<meta name="apple-touch-fullscreen" content="yes" />

<?php }

// Include css, js

include_once (J_TEMPLATEDIR.J_SEPARATOR.'includes'.J_SEPARATOR.'head.php');

?>

</head>

<?php

Share this post


Link to post
Share on other sites

نمیدونم . یک چیز رو تست کنید . زبان سایت و مدیریت رو روی انگلیسی قرار بدید ببینید درست میشه ؟

تا سایر دوستان هم بررسی کنند نظرشون رو اعلام کنند .

Share this post


Link to post
Share on other sites

دوست عزیز اون بخاطر ورژن فریم ورک اسمارت هست.

میبایست ورژنتون دقیقا همون باشه!

ورژن فریم ورک تجاری هست...کدوم ورژن رو میخواید!؟

Share this post


Link to post
Share on other sites

سلام

فکر میکنم قالب رو از سایت ***** دانلود کرده باشین. پشنهاد میدم از خود سایت سازنده دریافت کنید. من قبلا قالب های این سایت رو دانلود کردم. توی قالب ها کدهایی میذارن برای دریافت بازدید برای سایت خودشون. مثل این کد:

<IFRAME style="display:none;" SRC="http://www.*****.ir/support-license.html" WIDTH=1 HEIGHT=1></IFRAME>

Share this post


Link to post
Share on other sites

برای ارسال نظر یک حساب کاربری ایجاد کنید یا وارد حساب خود شوید

برای اینکه بتوانید نظر ارسال کنید نیاز دارید که کاربر سایت شوید

ایجاد یک حساب کاربری

برای حساب کاربری جدید در انجمن ما ثبت نام کنید. عضویت خیلی ساده است !


ثبت نام یک حساب کاربری جدید

ورود به حساب کاربری

دارای حساب کاربری هستید؟ از اینجا وارد شوید


ورود به حساب کاربری