rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BetaGuru

Pages: 1
1
RAWR-Designs / Re: To change banner/image in the template
« on: March 17, 2013, 07:30:35 PM »
I use the RAWR-Template v0.1.3 using the 'Black' flavor, and to make the change in question open rawr_black_main.css in your favorite text editor and find the following: (note already shows what I changed filename too) ;-)

#header {
   color:#f0f0f0;
   border:1px solid #ff00ff;
   height:120px;
   background:url('../images/my_header-bg.jpg') center no-repeat #000000;
   margin-bottom:10px;
}

to put the eye in the corner I redid this bit of code:

#header div {
   background:url('../images/padlock2a.gif') no-repeat;
   height:120px;
}

2
RAWR-Designs / Re: How to stream mkv files directly in web browser?
« on: March 17, 2013, 06:03:44 PM »
It's not perfect and I haven't had time to hammer out all the bugs, since most time goes to setting up a private server, but I seen the post and had been wanting to do the same for awhile now and came up with this, first open this file.  "G:\MiniServ-1\template\rawr_default\code\rawr_previewbox.js" and then change the section Labeled //Initialization to the following:

// Initialisation
function initBox(target,file) {
   ext = file.substring(file.lastIndexOf('.'),file.length);
   ext = ext.toLowerCase();
    if (disable == false) {
        disable = true;
        setTimeout('disable=false;', 350);
      if(target != boxOpen) {
         if(boxOpen!=null) boxFade(boxOpen,'out');
         if(ext.match('.jpg|.jpeg|.png|.bmp|.tif|.tiff')) spawnIMGBox(target,file);
         else if(ext.match('.flv|.mp3|.mp4|.m4a|.mov|.aac|.3gp')) spawnRAWRBox(target,file);
         else if(ext.match('.divx|.avi')) spawnDIVXBox(target,file);
         else if(ext.match('.vob|.mkv|.mpg|.webm|.wmv|.wma')) spawnWMBox(target,file);
         else if(ext=='.swf') spawnSWFBox(target,file);
         else if(ext=='search') spawnSEARCHBox(target,file);
      } else {
         boxFade(boxOpen,'out');
      }
    }
}

as stated its not perfect has a few issues at times and needs a bit of work overall, like some webm files only play the audio, some play fine, some start to play as if they are ok then crash the player. As for mkv files they play great on all the ones I tried they being the subject of this post, although the buffering of the player needs adjusted to at least 10 to 15 seconds or the video maybe jerky at the start.

3
router & port problems / Re: port 80
« on: February 16, 2008, 04:26:59 PM »
It's always worked fine here when setup correctly, just make sure your using Port Forwarding, I use a Linksys WRT54G[v6] running
Firmware: DD-WRT v24 RC-5 (11/22/07) micro, which provides for Port Forwarding, Port Range Forwarding, Port Triggering.

Screen shot included

4
HFS ~ HTTP File Server / Re: Server-FTP.Win32.SFH.D detected
« on: February 16, 2008, 03:35:08 PM »
I took it upon myself to strip .exe apart, scour thru the code, and monitored HFS's running, and found nothing.

And as stated a lot of what is going on is 1] scare tactics, and/or 2] they think most folks are to stupid to use a server.

Also I have a lot of legitimate tools I use daily that most a/v scans whine about in one way or another

5
I use a couple of external USB drives with HFS and have never had any issue's

Pages: 1