The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Pages: 1
When i try to suspend a server i am getting this message "Are you sure you want to suspend this server (all server videos will not work)?"
This means that all videos that this server host will not play or the script will not upload videos on that server.
Thank You
Offline
It means that you will not be able to upload videos to that server. Videos will still play.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Offline
Hmm...did you find out why videos dont play?
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
For me they play at every browser.
I have included this way to protect hotlinking http://www.icemelon.com/tutorials/14/Pr … inking.htm
I start a session at /modules/video/components/view.php
// e.g.
session_start();
$_SESSION['arbitrary'] = 'twister';
and protect the /modules/video/player/config.php
with
session_start();
if($_SESSION['arbitrary'] == "twister"){
PHP PROTECTED CODE
}
unset($_SESSION['arbitrary']);
unset($arbitrary);
You think this may be the problem?
Last edited by Eri (2011-05-23 04:48:36)
Offline
In both cases, dont use session_start(); and session is already started. Also you dont need to run unset($arbitrary). That was needed years ago when register_globals was used. If you have debug installed session_start() and unset($arbitrary) would stop the script execution.
I also checked right now and it works for me.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
No no...you should keep the link protection. Its a very very good idea. You could have in modules/video/components/view.php something like $_SESSION['xxx'] = $video_id and in modules/video/player/config.php if (!(isset$_SESSION['xxx'] ) OR $_SESSION['xxx'] != $video_id) die();
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
BTW: RTMP ( Red5 and so on ) should prevent leeching and hotlinking.
Another possibility is http://redmine.lighttpd.net/wiki/1/Docs … reDownload but i dunno how it works exactly.
Last edited by Coscast (2011-05-23 15:38:07)
Offline
Another possibility is http://redmine.lighttpd.net/wiki/1/Docs … reDownload but i dunno how it works exactly.
thanks
Offline
No no...you should keep the link protection. Its a very very good idea. You could have in modules/video/components/view.php something like $_SESSION['xxx'] = $video_id and in modules/video/player/config.php if (!(isset$_SESSION['xxx'] ) OR $_SESSION['xxx'] != $video_id) die();
do not work, modules/video/player/config.php do not show up.
Steps that i made was
At modules/video/player/config.php
after
$video_id = (isset($_GET['id'])) ? (int) $_GET['id'] : 0;
added
if (!(isset$_SESSION['xxx'] ) OR $_SESSION['xxx'] != $video_id) die();
At modules/video/components/view.php
after
$cache_id = 'video_'.$this->video_id;
added
$_SESSION['xxx'] = $cache_id;
Also added only this code at modules/video/player/config.php
$_SESSION['xxx'] = $video_id;
if (!(isset$_SESSION['xxx'] ) OR $_SESSION['xxx'] != $video_id) die();
but still do not work.
Last edited by Eri (2011-05-23 17:26:37)
Offline
Thats not the same. In modules/video/components/view.php add $_SESSION['xxx'] = $this->video_id;
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Offline
Erm...yeah should be &&.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Pages: 1