Home SePortal
Welcome Guest · Registration
Resources
Download Seportal
Demo Site
SePortal Sites

Users
Username:

Password:

Log me on automatically next visit?


» Forgot password
» Registration

Topics
Home
Seportal (5)
News (3)

Who is Online
Currently active users: 2
There are currently 0 registered user(s) (0 among them invisible) and 2 guest(s) online.

Random Image
Kategoriler/Categories

Kategoriler/Categories
Comments: 0
zebaniz

Powered By
Powered by SePortal

Rate SePortal at
Listed at Hot Scripts in PHP

Scripts.com


ScriptSearch.com



Add Reply New Topic

> Youtube and Flv videos? - Mods
 
 
aadwebd
Posted: 11.09.2008 - 08:33
Quote


Member
*

Group: Üyeler
Total posts: 3
User No: 163
Join Date: 10.09.2008 17:43



 
How can we post Youtube videos into forum?
can anybody provide this mode?

and how do i integrate classifieds or any other GPL php scripts into Seportal
does any body know integration system?

Offline aadwebd
Top
 
perochak
Posted: 11.09.2008 - 15:10
Quote


Member
*

Group: Üyeler
Total posts: 3
User No: 158
Join Date: 23.08.2008 22:41



 
I am too looking for this.

I have tried to convert the Gallery Part of the script to have a Video Gallery.
But there are some errors right now.


Some errors of Auth and output.

As soon as the part of dev is completed i will send it to the seportal.org's administrator to check it and upload that script.


More to that

I think the support from the SePortal is not good.

Hardly online.


I request his/her to stay online.

Thanks
Offline perochak
Top
 
zebaniz
Posted: 18.09.2008 - 19:08
Quote


Administrator
Group Icon

Group: Admin
Total posts: 306
User No: 1
Join Date: 01.01.2007 00:00



 
The html codes of youtube videos must be changed to SePortal's bbcodes. We'll explain an information about this, soon.
Offline zebaniz
Top
 
birlix
Posted: 08.09.2009 - 14:05
Quote


Member
*

Group: Üyeler
Total posts: 9
User No: 230
Join Date: 29.08.2009 11:06



 
Buna bir modul filan yapilmazmi
Offline birlix
Top
 
cepforum
Posted: 14.10.2009 - 09:01
Quote


Member
*

Group: Üyeler
Total posts: 2
User No: 116
Join Date: 11.05.2008 20:02



 
youtube gibi video dosyalarını blok olarak ekleme yaptığınızda sorunsuz gösterim yapıyor fakat haber eklemede olmuyor ne gibi bir düzenleme yaparsak olacak acaba zebani yardımcı olursan seviniriz.... big_smile.gif
Offline cepforum
Top
 
zebaniz
Posted: 14.10.2009 - 16:24
Quote


Administrator
Group Icon

Group: Admin
Total posts: 306
User No: 1
Join Date: 01.01.2007 00:00



 

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']);

Offline zebaniz
Top
 
BoraK
Posted: 17.03.2010 - 19:25
Quote


Member
*

Group: Üyeler
Total posts: 8
User No: 256
Join Date: 17.12.2009 20:14



 
Zebaniz hocam tüm bunları yaptım ama anlamadığım ne biliyormusun? Videoları nereden ekleyeceğim, ya da daha açıkçası bu mod'u nasıl kullanacağım, nereden. Kolay gelsin. 
Offline BoraK
Top
 
BrEaKeRuL
Posted: 07.04.2010 - 16:19
Quote


Member
*

Group: Üyeler
Total posts: 24
User No: 36
Join Date: 21.01.2008 01:53



 
This is not working for me, how do i use to show the video from youtube in a article ?!
Offline BrEaKeRuL
Top
 
zebaniz
Posted: 08.04.2010 - 10:54
Quote


Administrator
Group Icon

Group: Admin
Total posts: 306
User No: 1
Join Date: 01.01.2007 00:00



 
Bu moda göre sadece videonun html kodunu ekleyebilirsiniz.

According to this mode, you can simply add the html code of the video.
Offline zebaniz
Top

Add Reply New Topic



Contribute | Forums | Gallery | Calendar | Links | Downloads | Members | Search | Guestbook | Article Directory

Powered by SePortal 2.5
Copyright © 2007-2012 SePortal.org