
YouTube ve Google Video için bir Mod hazırladım. Burada bulabilirsiniz:
http://www.seportal.org/forums/topics.php?showtopic=234
Not: Kurulumu tamamlamak için ekli dosyayı indirin ve sitenizin ana dizinine yükleyip çalıştırın;
CODE
http://yoursite/update_video_install.php
ve video.png resmini de templates/images dosyasına atın.
Yada sadece haberlerde video kullanmak isterseniz;
1- global.php dosyasını açın;
Aşağıdakini bulun;
PHP
$config['comment_use_emo'] = 1;
ve altına bunu ekleyin;
PHP
$config['use_video'] = 1;
2- index.php dosyasını açın;
Aşağıdakini bulun;
PHP
"snippet" => format_text($data['snippet'], (($config['pm_html']) ? $data['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $data['use_bbcode'] : 0), $config['pm_img'], $data['use_emo']),
ve bununla değiştirin;
PHP
"snippet" => $config['use_video'] ? $data['snippet'] : format_text($data['snippet'], (($config['pm_html']) ? $data['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $data['use_bbcode'] : 0), $config['pm_img'], $data['use_emo']),
3- article.php dosyasını açın;
Aşağıdakini bulun;
PHP
$snippet = format_text($article_row['snippet'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);
$article = format_text($article_row['article'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);
ve bununla değiştirin;
PHP
$snippet = $config['use_video'] ? $article_row['snippet'] : format_text($article_row['snippet'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);
$article = $config['use_video'] ? $article_row['article'] : format_text($article_row['article'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);

YouTube ve Google Video Mod:
http://www.seportal.org/forums/topics.php?showtopic=234
Note: Download update_video_install.php
Upload update_video_install.php to your web site, and execute it:
CODE
http://yoursite/update_video_install.php
and upload image file: video.png (templates/images)
Or
1- Open global.php
Find;
PHP
$config['comment_use_emo'] = 1;
add the following line below:
PHP
$config['use_video'] = 1;
2- Open index.php
Find;
PHP
"snippet" => format_text($data['snippet'], (($config['pm_html']) ? $data['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $data['use_bbcode'] : 0), $config['pm_img'], $data['use_emo']),
and replace:
PHP
"snippet" => $config['use_video'] ? $data['snippet'] : format_text($data['snippet'], (($config['pm_html']) ? $data['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $data['use_bbcode'] : 0), $config['pm_img'], $data['use_emo']),
3- Open article.php
Find;
PHP
$snippet = format_text($article_row['snippet'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);
$article = format_text($article_row['article'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);
and replace:
PHP
$snippet = $config['use_video'] ? $article_row['snippet'] : format_text($article_row['snippet'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);
$article = $config['use_video'] ? $article_row['article'] : format_text($article_row['article'], (($config['pm_html']) ? $article_row['use_html'] : 0), $config['wordwrap_comments'], (($config['pm_bbcode']) ? $article_row['use_bbcode'] : 0), $config['pm_img'], $article_row['use_emo']);