Page 11 of 13 FirstFirst ... 910111213 LastLast
Results 101 to 110 of 129

Thread: Videos Being Watched Right Now...

  1. #101
    Join Date
    Jun 2007
    Posts
    197

    Default Re: Videos Being Watched Right Now...

    Quote Originally Posted by mersh
    Quote Originally Posted by mhancoc7
    Ok, since I have not been able to get in touch with galnet for over a month now, I have released a "clone" of the carousel viewer.
    Well, the last contact I had with Galnet was when I purchased his script last summer. I found him a pleasure to do business with and the script was reasonably priced.

    Just to see if what you said here was a fact, I shot a quick email to him to alert him to this thread. He replied within minutes. So I don't have much evidence that you tried to contact him before selling this script. Did you write it yourself? Or did you take his script and just mooch it? Not very Christian....
    Funny, I could have sworn I always get back in contact within 24 hours via email contact!!!! Oh and incase anyone doesn't know my email address it is [email protected] ....

    Yer let Jesus be with you!

    P.S mersh...... THANK YOU SO MUCH! 8)
    ------------------------------------
    Make an arse of yourself:
    http://www.youtwatonline.com
    ------------------------------------

  2. #102
    Join Date
    Jun 2007
    Posts
    197

    Default Re: Videos Being Watched Right Now...

    Quote Originally Posted by mhancoc7
    I have not been able to get up with galnet in a few weeks. His site is also down, http://galnet.co.uk/ .

    Jereme

    Oh and for quick news this is because I'm currently in the process of changing my website.
    ------------------------------------
    Make an arse of yourself:
    http://www.youtwatonline.com
    ------------------------------------

  3. #103
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default Re: Videos Being Watched Right Now...

    Before anybody jumps on him, have you guys actually seen it? It's completely different.

    And Galnet, I removed my posts where I could. I'm so glad to hear things are OK with you!! Maybe if you put on your temp home page that you're temporarily off line and will be back at such-and-such a time, you won't make old ladies like me worry about you. ;)
    If it's not fun, stop doing it!

  4. #104
    Join Date
    Mar 2008
    Location
    Canada Eh?
    Posts
    37

    Default Re: Videos Being Watched Right Now...

    Well, I'm glad that this whole thing at least brought Galnet back into the light of day.
    I have just purchased his Videos being watched script.
    Now, I'm looking for a URL to see What the Carousel Random Viewer looks like.
    I guess I joined this board at exactly the right time to step into the middle of this tempest in a teapot.
    Glad I at least managed to get something!
    http://www.asiancumtube.com Send Traffic, Make $$$
    Check the webmasters link at the bottom of the site

  5. #105
    Join Date
    Mar 2008
    Location
    Canada Eh?
    Posts
    37

    Default Re: Videos Being Watched Right Now...

    Quote Originally Posted by Scuzz
    I have just purchased his Videos being watched script.
    It turns out that we bought both scripts.
    However, there is a problem.

    roller-black.swf?x=roller.php
    Don't even exist.
    I slap the code in there, and get a red x
    Am I supposed to rename something? Your directions leave a lot to be desired.
    http://www.asiancumtube.com Send Traffic, Make $$$
    Check the webmasters link at the bottom of the site

  6. #106
    Join Date
    Mar 2008
    Location
    Canada Eh?
    Posts
    37

    Default Re: Videos Being Watched Right Now...

    Yes, we got them from the URL he posted above.
    http://www.asiancumtube.com Send Traffic, Make $$$
    Check the webmasters link at the bottom of the site

  7. #107
    Join Date
    Dec 2007
    Posts
    20

    Default Re: Videos Being Watched Right Now...

    Hi all
    I buy the script and got the 2nd one free, but I you look the image below, top image from the site i bought my Script from it shows the time on the roller on the bottom image its my site it doesn't show the time, any help to show that time.

    Image http://vcoders.org/roller.jpg

    Thank you in advance

  8. #108
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default Re: Videos Being Watched Right Now...

    Thanks Jeremy...I'm going to try this new code as I posted this in another forum...the time isn't showing up *at all* for me on any of the pages I am using the roller on. I'm hoping this new code fixes that....I'll let you know.

    UPDATE: Nope. the new code you just posted broke the roller entirely (at least for me). My issue is the time stamp doesn't show up at all on any of the sites I have it running on.
    If it's not fun, stop doing it!

  9. #109
    Join Date
    Dec 2007
    Posts
    20

    Default Re: Videos Being Watched Right Now...

    Quote Originally Posted by mhancoc7
    Quote Originally Posted by Meghwar
    Hi all
    I buy the script and got the 2nd one free, but I you look the image below, top image from the site i bought my Script from it shows the time on the roller on the bottom image its my site it doesn't show the time, any help to show that time.

    Image http://vcoders.org/roller.jpg

    Thank you in advance
    Thanks for letting me know about the issue. Change your roller.php file to this.

    Code:
    <?php 
    
    
    
    include("include/config.php");
    
    
    
    $VID=$_REQUEST[VID];
    
    
    
    $query = "SELECT * FROM video WHERE type = 'public' AND active='1' AND approve='1' ORDER BY viewtime desc LIMIT 12"; 
    
    $db=mysql_connect ($db_host,$db_user,$db_pass) or die ('I cannot connect to the database because: ' . mysql_error());
    
    mysql_select_db ($db_name); 
    
    $num_rows = mysql_num_rows(mysql_query("select * from video")); 
    
    $result = mysql_query($query) or die ('Query Error: ' . mysql_error()); 
    
    
    
    header("Content-Type: text/xml"); 
    
    header("Expires: 0"); 
    
    print "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n"; 
    
    print "<ut_response status=\"ok\">\n";
    
     
    
    print "<video_list>\n";
    
    
    
    while ($results = mysql_fetch_array($result)) 
    
    { 
    
    	$viewnumber = $results['viewnumber']; 
    
    	$title = $results['title']; 
    
    	$duration = $results['duration']; 
    
    	$viewkey = $results['vkey'];
    
    	$VID = $results['VID'];
    
    
    
    //Seconds to Mins - Mod
    
    $seconds = $results['duration'];
    
    $time = str_pad(intval(($seconds / 60) % 60),2,"0",STR_PAD_LEFT).":"
    
    . str_pad(intval($seconds % 60),2,"0",STR_PAD_LEFT) ;
    
    //Seconds to Mins - Mod
    
    
    
    
    
    print "<video>\n";
    
    
    
    print "<viewers>";
    
    print "$viewnumber";
    
    print "</viewers>\n";
    
    
    
    print "<title>";
    
    print "$title";
    
    print "</title>\n";
    
    
    
    print "<run_time>";
    
    print "$time";
    
    print "</run_time>\n";
    
    
    
    print "<url>";
    
    print $config['BASE_URL'];
    
    print "/";
    
    print "view";
    
    print "/";
    
    print "$VID";
    
    print "/";
    
    print "$title";
    
    print "/";
    
    print "</url>\n";
    
    
    
    print "<thumbnail_url>";
    
    print $config['BASE_URL'];
    
    print "/thumb/1_";
    
    print "$VID";
    
    print ".jpg";
    
    print "</thumbnail_url>\n";
    
    
    
    print "</video>\n";
    
    
    
    } 
    
    mysql_close(); 
    
    
    
    print "</video_list>\n";
    
    
    
    print "</ut_response>"; 
    
    
    
    ?>
    Thanks, Jereme
    Thank you It works Like a Sharm :)

    am still waiting your PM ! about what we talk before

  10. #110
    Join Date
    Dec 2007
    Posts
    20

    Default Re: Videos Being Watched Right Now...

    Jereme

    I bought today your Product Slider, installed No errors, But why the Slider doesnt show the TITLE of the clip like the Roller or the recent Uploads!!!! it doesnt show up on the CLEAR it do show on the Grey!!!

    Look Image

    I hope you understand my silly accent.

    Regards
    Abe

Page 11 of 13 FirstFirst ... 910111213 LastLast

Similar Threads

  1. Vshare: Videos being watched right now....
    By mahdi02 in forum General Discussions
    Replies: 6
    Last Post: 11-02-2009, 09:27 AM
  2. TV Static Videos Watched
    By l1some in forum Template Modifications
    Replies: 0
    Last Post: 02-28-2009, 12:08 AM
  3. looking to buy videos being watched right now script module
    By desixx in forum Template Modifications
    Replies: 0
    Last Post: 07-18-2008, 08:05 PM
  4. Videos being watched right now
    By akubane in forum Template Modifications
    Replies: 0
    Last Post: 04-30-2008, 09:40 PM
  5. videos watched right now
    By almira in forum Template Modifications
    Replies: 1
    Last Post: 04-03-2008, 12:19 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •