Вы не зашли.
Совсем забыл на всякий случай у меня на хостинге версия PHP: 5.3.6
alexR, напиши подробнее что ты и куда вставляеш и где именно неработает, так как при простом режиме должно точно работать, вероятно что или чтото нетак делаеш или действительно с хостингом, хотя скорее первое
Здесь дело не в JavaScript.
У меня на сайте шапка главной с flash это работает (Морда).
Мне нужно, что бы на статических страницах на месте flash появлялась просто картинка.
В шапке, где flash вставляю {ads1}- flash {ads2}- static (В статической странице) естественно все это в main.tpl
Я, конечно, повторяюсь flash в морде работает, а на статических страницах ничего нет.
Код что в {ads1}:
<div class="main-banner-small">
<object type="application/x-shockwave-flash" data="http://biogas-energy.com.ua/templates/bio_ru/images/header_v8.swf" width="950" height="360">
<param name="movie" value="http://biogas-energy.com.ua/templates/bio_ru/images/header_v8.swf" />
</object>
</div>
в {ads2}:
<div class="main-banner-small">
<img border="0" src="http://biogas-energy.com.ua/templates/bio_ru/images/static.jpg" width="950" height="360" alt="" />
</div>
Правда у меня есть одна ошибка PHP Magic Quotes GPC – включено добавление в php.ini
php_flag magic_quotes_gpc off
эту ошибку не исправляет, может дело в этом?
Ну конец в файла ads.php, PHP тут знать не надо
Было:
<?php
// Protect against hack attempts
if (!defined('NGCMS')) die ('HAL');
// Get content [ array - content and deferred elements ]
function ads_get_content($num) {
// Check for deferred load
$v = 'ads'.$num;
if (extra_get_param('ads', $v.'_defer')) {
$content = extra_get_param('ads', $v.'_deferblk');
$insertBlock = '<div style="display: none;" id="adsSource'.$num.'">'.extra_get_param('ads', $v).'</div>'.
'<script language="JavaScript">'."\n".'document.getElementById("adsTarget'.$num.'").innerHTML = document.getElementById("adsSource'.$num.'").innerHTML;'."\n".'</script>';
if (!$content) $content = '<div id="adsTarget'.$num.'"></div>';
return array ( $content, $insertBlock );
} else {
return array ( extra_get_param('ads', $v) );
}
}
//
// ADS filtering functions for internals of STATIC pages
class AdsStaticFilter extends StaticFilter {
function showStatic($staticID, $SQLnstatic, &$tvars) {
global $template;
$count = extra_get_param('ads','count');
if ((intval($count) < 1)||(intval($count) > 20))
$count = 3;
for ( $i = 1; $i <= $count; $i++) {
$v = 'ads'.$i;
$mode = extra_get_param('ads',$v.'_type');
if ($mode != 'static')
continue;
list ($content, $insertBlock) = ads_get_content($i);
$tvars['vars'][$v] = $content;
if ($insertBlock)
$template['vars']['plugin_ads_defer'] .= $insertBlock;
}
}
}
//
// ADS filtering functions for NEWS
class AdsNewsFilter extends NewsFilter {
function showNews($newsID, $SQLnews, &$tvars, $params = array()) {
global $template;
$count = extra_get_param('ads','count');
if ((intval($count) < 1)||(intval($count) > 20))
$count = 3;
for ( $i = 1; $i <= $count; $i++) {
$v = 'ads'.$i;
$mode = extra_get_param('ads',$v.'_type');
// Check if we should show data block
if (!((($params['style'] == 'short')&&($mode =='news.short'))||
(($params['style'] == 'full') &&($mode =='news.full') )||
($mode=='news')))
continue;
list ($content, $insertBlock) = ads_get_content($i);
$tvars['vars'][$v] = $content;
if ($insertBlock)
$template['vars']['plugin_ads_defer'] .= $insertBlock;
}
return 1;
}
}
// Register filters
register_filter('static','ads', new AdsStaticFilter);
register_filter('news', 'ads', new AdsNewsFilter);
add_act('index', 'plugin_ads');
function plugin_ads(){
global $template, $tvars, $CurrentHandler;
//global $template, $action, $category, $cstart, $tvars, $year, $month;
$template['vars']['plugin_ads_defer'] = '';
$template['vars']['plugin_ads_rand'] = rand().rand();
$count = extra_get_param('ads','count');
if ((intval($count) < 1)||(intval($count) > 20))
$count = 3;
for ( $i = 1; $i <= $count; $i++) {
$enableDisplay = 0;
$v = 'ads'.$i;
$mode = extra_get_param('ads',$v.'_type');
if (
// main page
(($mode == 'root')&&($CurrentHandler['params'][0] == '/')) ||
// everywhere except main page
(($mode == 'noroot')&&($CurrentHandler['params'][0] != '/')) ||
// everywhere
($mode == 'all')
) {
$enableDisplay = 1;
}
if ($enableDisplay) {
list ($content, $insertBlock) = ads_get_content($i);
$template['vars'][$v] = $content;
if ($insertBlock)
$template['vars']['plugin_ads_defer'] .= $insertBlock;
} else {
$template['vars'][$v] = '';
}
}
}
[hr /]
Сделал так:
<?php
// Protect against hack attempts
if (!defined('NGCMS')) die ('HAL');
// Get content [ array - content and deferred elements ]
function ads_get_content($num) {
// Check for deferred load
$v = 'ads'.$num;
if (extra_get_param('ads', $v.'_defer')) {
$content = extra_get_param('ads', $v.'_deferblk');
$insertBlock = '<div style="display: none;" id="adsSource'.$num.'">'.extra_get_param('ads', $v).'</div>'.
'<script language="JavaScript">'."\n".'document.getElementById("adsTarget'.$num.'").innerHTML = document.getElementById("adsSource'.$num.'").innerHTML;'."\n".'</script>';
if (!$content) $content = '<div id="adsTarget'.$num.'"></div>';
return array ( $content, $insertBlock );
} else {
return array ( extra_get_param('ads', $v) );
}
}
//
// ADS filtering functions for internals of STATIC pages
class AdsStaticFilter extends StaticFilter {
function showStatic($staticID, $SQLnstatic, &$tvars) {
global $template;
$count = extra_get_param('ads','count');
if ((intval($count) < 1)||(intval($count) > 20))
$count = 3;
for ( $i = 1; $i <= $count; $i++) {
$v = 'ads'.$i;
$mode = extra_get_param('ads',$v.'_type');
if ($mode != 'static')
continue;
list ($content, $insertBlock) = ads_get_content($i);
$tvars['vars'][$v] = $content;
if ($insertBlock)
$template['vars']['plugin_ads_defer'] .= $insertBlock;
}
}
}
//
// ADS filtering functions for NEWS
class AdsNewsFilter extends NewsFilter {
function showNews($newsID, $SQLnews, &$tvars, $params = array()) {
global $template;
$count = extra_get_param('ads','count');
if ((intval($count) < 1)||(intval($count) > 20))
$count = 3;
for ( $i = 1; $i <= $count; $i++) {
$v = 'ads'.$i;
$mode = extra_get_param('ads',$v.'_type');
// Check if we should show data block
if (!((($params['style'] == 'short')&&($mode =='news.short'))||
(($params['style'] == 'full') &&($mode =='news.full') )||
($mode=='news')))
continue;
list ($content, $insertBlock) = ads_get_content($i);
$tvars['vars'][$v] = $content;
if ($insertBlock)
$template['vars']['plugin_ads_defer'] .= $insertBlock;
}
return 1;
}
}
add_act('index', 'plugin_ads');
function plugin_ads(){
global $template, $tvars, $CurrentHandler;
//global $template, $action, $category, $cstart, $tvars, $year, $month;
$template['vars']['plugin_ads_defer'] = '';
$template['vars']['plugin_ads_rand'] = rand().rand();
$count = extra_get_param('ads','count');
if ((intval($count) < 1)||(intval($count) > 20))
$count = 3;
for ( $i = 1; $i <= $count; $i++) {
$enableDisplay = 0;
$v = 'ads'.$i;
$mode = extra_get_param('ads',$v.'_type');
if (
// main page
(($mode == 'root')&&($CurrentHandler['params'][0] == '/')) ||
// everywhere except main page
(($mode == 'noroot')&&($CurrentHandler['params'][0] != '/')) ||
// everywhere
($mode == 'all')
) {
$enableDisplay = 1;
}
if ($enableDisplay) {
list ($content, $insertBlock) = ads_get_content($i);
$template['vars'][$v] = $content;
if ($insertBlock)
$template['vars']['plugin_ads_defer'] .= $insertBlock;
} else {
$template['vars'][$v] = '';
}
}
}
// Register filters
register_filter('static','ads', new AdsStaticFilter);
register_filter('news', 'ads', new AdsNewsFilter);
Все равно не работает.
У меня у одного все работает?
Была такая проблема у кого-то в другом плагине ( http://ngcms.ru/forum/viewtopic.php?pid=1402#p1402 ), помогало перенести из середины в самый низ строчки
// Register filters register_filter('static','ads', new AdsStaticFilter); register_filter('news', 'ads', new AdsNewsFilter);
Это куда именно если можно по подробнее я PHP только начал изучать что, то понимаю что то нет.
Привет плагин не работает в режимах:
Короткая новость
Полная новость
В статике
Новость
Версия плагина: 0.12
Версия ng cms: 0.9.2 Release [SVN646]
Вопрос актуальный у меня тоже:
Версия плагина: 0.12
Версия ng cms: 0.9.2 Release [SVN646]
Так же плагин не работает в режимах
Короткая новость
Полная новость
В статике
Новость
Как исправить, кто знает, подскажите.