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.


Topics - crazyjust

Pages: 1
1
RAWR-Designs / How would I edit this?
« on: January 10, 2010, 09:21:38 PM »
I am using rawr tpl and I was curious how I could edit the text of the js popup box at login that says:

A username and password are being requested by http://96.243.98.103:8080. The site says: "WRT54G"

Thanks in advance

2
RAWR-Designs / Can someone help me with the rawr player?
« on: December 25, 2008, 08:51:24 PM »
Merry Christmas all :) ...Ok so here it is. I made a custom page for e107 cms. I have the player Stationary. When I click preview, the player wont start playing with firefox until I scroll up to where the player is in sight. There are no problems with IE. What I would like to do is make the player pop up in a new fancy window like rawr tpl when I hit the preview button. Anyone that has read any of my posts, knows I am not a coder lol. Any help with this would be great. Here is the music.php(index) and player.php if anyone can help me. Thanks in advance.

Music.php(index)
Code: [Select]
require_once("config.php");
require_once("class2.php");
define("e_PAGETITLE", "Music");
require_once(HEADERF);

if (!USER) {
   $ns->tablerender("Error!", "You must login to view this page");
   require_once(FOOTERF);
   exit;
}

?>
<?php
function mksize($bytes)
{
if ($bytes 1000 1024)
return number_format($bytes 10242) . " kB";
elseif ($bytes 1000 1048576)
return number_format($bytes 10485762) . " MB";
elseif ($bytes 1000 1073741824)
return number_format($bytes 10737418242) . " GB";
else
return number_format($bytes 10995116277762) . " TB";
}

function 
getico($type) {
 switch(
strtolower($type)) {
  case 
"mp3": return "mp3.gif"; break;
  case 
"exe":
  case 
"setup":
  case 
"msi": return "exe.gif"; break;
  case 
"zip": return "zip.gif"; break;
  case 
"rar":
  case 
"bin"
  case 
"tar":
  case 
"bz2":
  case 
"gz":
  case 
"z":
  case 
"7z":
  case 
"s7z": return "rar.gif"; break;
  case 
"mpg":
  case 
"mp4":
  case 
"mpeg": return "mp4.gif"; break;
  case 
"avi": return "avi.gif"; break;
  case 
"iso":
  case 
"img"
  case 
"cue": return "iso.gif"; break;
  case 
"vob": return "vob.gif"; break;
    
  default: return 
"unknown.gif"; break;
  }
}

$filedirxtra= (isset($_GET['dir']) ? htmlspecialchars($_GET['dir'])."/" "");
?>


<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
  <title>Downloads</title>
  <meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8" />
  <style type="text/css">
   body {
    font-family: Verdana, Tahoma, Helvetica, Arial;
    font-size: 10pt;
    background-color: #000000;
    color: #FFFFFF;
    margin: 50px;
   }
   table.list tr td {
    border-bottom: 1px solid orange;
   }
   a {
    text-decoration: none;
   }
   a:hover {
    text-decoration: underline;
   }
   #txtsrch {
    background-image: url("icons/srchico.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    font-weight: bold;
    font-size: 11pt;
    padding-left: 25px;
    height: 20px;
   }
   #srchbtn {
    background: transparent;
    background-image: url("dl-icons/srchbtn.gif");
    background-position: center center;
    background-repeat: no-repeat;
    height: 25px;
    width: 70px;
    border: none;
   }
  </style>
  <script type="text/javascript">
  function preview(file) {
    var f = document.getElementById('fplayer');
    f.src = "player.php?file="+file;
   }
  </script>
 </head>
<body>


</div>
<!--Nav-->
<div style="padding: 5px; margin: 10px; width: auto; height: 30px; border: 1px solid orange;">
 <!-- Table hack required for IE-->
 <table cellpadding="0" cellspacing="0" border="0" width="auto" style="border: none;">
  <tr>
   <td valign="middle" align="left">
    <form method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
     <?php 
      
if ($filedirxtra != "")
       echo 
"<input type='hidden' name='dir' value='".$filedirxtra."' />";
     
?>

     <input id="txtsrch" type="text" size="25" name="search" />
     <input id="srchbtn" type="submit" value=" " />
    </form>
   
 </table>
</div>

<div style="width: auto; margin: 0px; border: none; text-align: center;">
<iframe id="fplayer" frameborder="0" marginwidth="0" marginheight="0" width="320" height="70" src="player.php"></iframe>
</div>

<table class="list" width="auto" cellpadding="3" cellspacing="0" border="0" style="margin: 10px; border: 1px solid orange;">
<?php
$kw 
= (isset($_GET['search']) ? trim($_GET['search']) : "");

$dir opendir($filedir.$filedirxtra);
while(
false !== ($file readdir($dir))) 
 {
 if(
$file != "." && $file != "..")
  {
  
$fext explode("."$file);
  if(!
in_array(end($fext), $blockfiles) && is_file($filedir.$filedirxtra.$file)) {
   if((
$kw != "" preg_match("/$kw/i"$file)) || $kw == "")
    print(
"<tr><td><img src='".$icondir.getico(end($fext))."' title='".end($fext)."' alt='".end($fext)."' border='0'/></td><td width='99%'>".htmlspecialchars($file)."</td><td><span style='white-space: nowrap;'> ".mksize(filesize($filedir.$filedirxtra.$file))."</span></td><td><a href=\"".htmlspecialchars($filedir.$filedirxtra.$file)."\"><img src='".$icondir."download.gif' border='0' alt='DL' title='Download File: ".htmlspecialchars($file)."' /></a></td><td>".(in_array(end($fext), $prvfiles) ? "<a href=\"javascript:void(0);\" onclick=\"preview('".htmlspecialchars(addslashes($filedir.$filedirxtra.$file))."');\"><img src='".$icondir."preview.gif' border='0' alt='Preview' title='Preview File: ".htmlspecialchars($file)."' /></a>" "&nbsp;")."</td></tr>");
   }
  elseif(
is_dir($filedir.$filedirxtra.$file))
    echo 
"<tr><td><img src='".$icondir."directory.gif' alt='directory' border='0' /></td><td colspan='4'><a href='?dir=".$filedirxtra.$file."'>$file</a></td>";
  }
 }
closedir($dir);


?>

</table>

<?php
require_once(FOOTERF);
exit;
?>

Player.php
Code: [Select]
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
  <title>Player</title>
  <meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8"
 />
  <style type="text/css">
  body { background-color: ; }
  </style>
 </head>
<body>
<?php
$toplay 
stripslashes($_GET['file']);
?>

<object type="application/x-shockwave-flash" data="rawr_player.swf" width="320" height="50">
<param name="movie" value="http://rawr-designs.com/rawr_data/players/rawr_player.swf"/>
<param name="bgcolor" value="#741e1f"/>
<param name="wmode" value="transparent"/>
<param id="flashvars" name="flashvars" value="autoplay=on&colorset=rawr_red&context=off<?php echo "&file=$toplay"?>" />
</object>
</body>
</html>

3
HFS ~ HTTP File Server / How could i do this?
« on: November 29, 2008, 12:16:36 PM »
I use abyss web server with e107 cms, and hfs. I want to run my server and hfs. I can do that, that isn't my problem. The problem is I want to use hfs for my downloads link. How would i link hfs to my site? I tried 127.0.0.1:port but its only visible to me lol. I have a dynamic ip so I don't wanna change this every time it changes. Is there a way I can do this?

4
RAWR-Designs / favicon
« on: August 18, 2008, 06:32:09 AM »
I know this has been asked before, and i did search it. I want to change my favicon and <link rel="shortcut icon" href="/favicon.ico"> between <head></head> isnt working for me. I use RAWR-Template-0.1.1.tpl and HFS (2.3 beta, build 198). Please tell me how I could possibly change this. I added it to the root "/favicon.ico". thanks


5
HTML & templates / need help with button
« on: August 14, 2008, 03:35:32 AM »
Can someone please tell me how i can get this button to work. It works well with firefox but not with ie7

<div class="agreebutton">
 <a href="/Files">
 <button style="width:300px;height:30px;
border-top-color:#FFAD5B;
border-left-color:#FFAD5B;
border-right-color:#FFAD5B;
border-bottom-color:#FFAD5B;
background-color:#003F87";><b><FONT SIZE="-1""font color="#FFAD5B">Yes, I Agree To The Above Terms</FONT><b>
</button></a>

thanks in advance

6
HTML & templates / question
« on: May 11, 2008, 11:42:47 PM »
is there a way to get a dash or an underscore instead of the %20 for spaces in the links?

7
HTML & templates / this makes no sense
« on: March 23, 2008, 02:32:26 AM »
ok everyone knows im no good with html but when i made this template, it works good with firefox but check it out with ie. http://just-n-freak.kicks-ass.net     

here is the code if anyone can see where i screwed up

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><div align="center"><FONT SIZE="+4";font color="#00ff00"><i>Welcome To Just-N-Freak File Server<i></FONT>
<br>
<TABLE BORDER="0">
<TR>
<TD><div class="uploadbutton">
  <a href="/Upload/~upload"title="Here You Can Upload Files To the Upload Folder. I have To Add them After Approval">
  <button style="width:120px;height:30px;border-top-color:#00ff00;
border-left-color:#00ff00;
border-right-color:#00ff00;
border-bottom-color:#00ff00; background-color:#000000";><b><FONT SIZE="-1""font color="#00ff00">Upload Files</FONT><b>
  </button></a></TD>
<TD><div align="center"><div class=button>
<form style='width:163px' action='%folder%' method='get'>
<center><button style="width:120px;height:30px;border-top-color:#00ff00;
border-left-color:#00ff00;
border-right-color:#00ff00;
border-bottom-color:#00ff00; background-color:#000000";><b><FONT SIZE="-1""font color="#00ff00">Search</FONT><b><value="{.?search.}">
</button></a><center><br>
<input name=search size=23 value="{.?search.}"></TD>
<TD><div class="Contact Us">
  <a href="mailto:justme488@yahoo.com"title="Any Problems Or Questions, let us know">
  <button style="width:120px;height:30px;border-top-color:#00ff00;
border-left-color:#00ff00;
border-right-color:#00ff00;
border-bottom-color:#00ff00; background-color:#000000";><b><FONT SIZE="-1""font color="#00ff00">Contact Us</FONT><b>
  </button></a></TD>
</TD>
</TR>
<TABLE BORDER="0">
<TR>
<img src="/~img_graph615x40" style="border:1px solid #00ff00;"></div>

<p></TABLE>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="/~style.css" type="text/css" />
<link rel="stylesheet" href="/~style.menu.css" type="text/css" />
<title>Just-N-Freak File Server</title>
<link rel="shortcut icon" href="favicon.ico" />
<!--[if lte IE 5.5]>
<style type="text/css">
</style>
<![endif]-->
{.comment|
Thanks to the following line, you can customize the appearance of the original template by
right click on the root -> advanced -> diff template
then type [style.user] followed by all the CSS commands you want.
This way you will stay up to date while the original template improves.
.} 
<style type="text/css">{.$style.user.}<TEXT="#00ff00"></style>

</head>


<table width='100%'>
<tr>
<td width='95%'>
{.if| %user% |
<td nowrap>

/if.}
{.if| {.get|can recur.} |
<td nowrap>

/if.}




<!--[if lte IE 6]><table><tr><td><![endif]-->
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
</ul>

</table>
<div id=body><center><font color="#00ff00">
  {.if| %folder-item-comment% | <div id=foldercomment>%folder-item-comment%</div> .}
  {.if| {.?search.} | <a class=big href="."><img src="/~img14" /> {.!BACK.}</a>
    | {.if| {.%folder% != / .} | <a class=big href=".."><img src="/~img14" /> {.!Please Wait....}</a> .}
  /if.}
  {.if not| %number% | <div class=big>{.!No files.}</div> |
    <div id=folderstats><i><div align="center"><FONT SIZE="+1";font color="#00ff00"> </div><i>If You Have Something To Share, Please Upload</FONT></div>
    <table id=files cellpadding=5>
    <th><a href="{.get|url|sort=n|rev={.not|{.?rev.} .} .}">{.!Filename.}</a><a href="{.get|url|sort=e|rev={.not|{.?rev.} .} .}"></a>
    <th><a href="{.get|url|sort=s|rev={.not|{.?rev.} .} .}">{.!Filesize.}</a>
    <th><a href="{.get|url|sort=t|rev={.not|{.?rev.} .} .}">{.!Filetime.}</a>
    <th><a href="{.get|url|sort=d|rev={.not|{.?rev.} .} .}">{.!Hits.}</a>
    %list%
    </table>
  /if not.}
</div>
<body><table border="4" bordercolor="#00ff00" width="34%" bgcolor="#000000">
<tr><th colspan="2"><FONT SIZE="-1""font color="#00ff00">Server Stats</font></th></tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Your IP address</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%ip%</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Page generated in</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%build-time% Second(s)</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Current server time</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%timestamp%</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Current Server Outbound</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%speed-out%KB/s</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Current Server Inbound</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%speed-in%KB/s</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Connections currently connected</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%connections% connection(s)</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Server Uptime</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%uptime%</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Number of folder(s)</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%number-folders% Folder(s)</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Number of file(s)</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%number-files% File(s)</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Disk Space available</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%diskfree%</font></td>
</tr>
<tr>
<td align=right><FONT SIZE="-1""font color="#00ff00">Total size</font></td>
<td><FONT SIZE="-1""font color="#00ff00">%total-size%</font></td>
</tr>
</table></p>
<div id=footer></p>
<div align="center"><FONT SIZE="+1"font color="#00ff00">Powered By <a href="http://www.rejetto.com/hfs/">HttpFileServer %version%</a></FONT></div>

</div>

</body>
</html>
<!-- Build-time: %build-time% -->

[style.css|no log]
body, th { font-family:tahoma, verdana, arial, helvetica, sans;font-weight:bold;color:00ff00; font-size:9pt; }
body { margin:0; background-color:#000000; padding:10px; }
p { margin:0 }
a { font-weight:bold; color:#00ff00; }
a:visited { color:grey; }
a:hover{color:blue;}
img { border-style:none }
#files td { font-size:10pt; background:#000000; border:1px solid #00ff00 }
#files td img { vertical-align:top }
#files th, th a, th a:visited { color:#00ff00; font-size:13pt; padding-bottom:0; }
#foldercomment { font-size:10pt; color:#00ff00; background:#000000; padding:3px;border:1px solid #00ff00 ; border-bottom:3px solid #00ff00; margin-top:2px; }
#folder, .big { font-size:14pt; }
#folderlabel, #folderstats, #footer { font-size: 8pt;color:#00ff00}
#body{width:64%;
  border-bottom: 4px solid #00ff00;
     border-top: 4px solid #00ff00;
    border-left: 1px solid #00ff00;
   border-right: 1px solid #00ff00;
  background:#000000;
}
.comment { font-size:7pt; color:#888; background:#EEE; padding:3px; border:1px solid #DDD; margin-top:2px; }
.button { padding:5px; padding-top:7px; border:1px outset #00ff00; background:black; font-size:8pt; font-weight:bold; }
a.button { padding:8px 10px; }
a.button img { vertical-align:text-bottom; }
.flag { font-weight:bold; font-size:8pt; background:white; color:red; text-align:center; border:1px solid red; }
.item-folder { font-size:smaller; margin-top:4px; }

[style.menu.css|no log]
/* ================================================================
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/drop_examples.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.
=================================================================== */

hr { clear:both; margin-bottom:30px }
.left { clear:both; }

[item start]
  <tr><td>
  {.if|{.get|is new.}|<span class=flag>&nbsp;NEW&nbsp;</span>.}
  {.if not|{.get|can access.}|<img src='/~img_lock'>.}
 <a href="%item-url%"> %item-name%</a>
  {.if| {.?search.} |{:<div class=item-folder>{.!item folder.} <a href="%item-folder%">%item-folder%</div>:} .}
  {.if| %item-comment% | <div class=comment>%item-comment%</div> .}

[file]
{.$item start.}<td align=right>%item-size%<td align=right>%item-modified%<td align=right>%item-dl-count%

[folder]
{.$item start.}<td align=center><i>folder</i><td align=right>%item-modified%<td align=right>%item-dl-count%

[link]
{.$item start.}<td colspan=3 align=center><i>link</i>

[error-page]
<html>
  <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <link rel="stylesheet" href="/~style.css" type="text/css" />
  </head>
<body>
%content%
<hr>
<div style="font-family:tahoma, verdana, arial, helvetica, sans; font-size:8pt;{ font-weight:bold; font-size:8pt; background:#000000;">
<a href="http://www.rejetto.com/hfs/">HttpFileServer %version%<<a href="%item-url%"></> %item-name%</a></a>
<br />%timestamp%
</div>
</body>
</html>

[not found]
<h1>{.!Not found.}</h1>
<a href="/">{.!go to root.}</a>

[overload]
<h1>{.!Server busy.}</h1>
{.!retry later.}

[max contemp downloads]
<h1>Download limit</h1>
{.!max c dl msg.}

[unauthorized]
<h1>Unauthorized</h1>
This is a protected resource.
<br />Your username/password doesn't match.

[deny]
<h1>Unallowed</h1>
This resource is not accessible.

[ban]
<h1>You are banned.</h1>
%reason%

[upload]
<html>
<head>
  <title>HFS %folder%</title>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <link rel="stylesheet" href="/~style.css" type="text/css" />
</head>
<body>
<script language="javascript">
var s1, s2;
if (window.parent.progress) s1 = '" target=_parent', s2 = '{.!CLOSE PROGRESS FRAME.}';
else s1 = '+progress"', s2= '{.!ADD PROGRESS FRAME.}';
document.write('<a href="~upload'+s1+' class=button onClick="if (frm.upbtn.disabled) return false;"><img src="/~img10" /> '+s2+'</a>');
</script>
<a href="." target=_parent class=button><img src="/~img21" /> {.!CANCEL UPLOAD.}</a>
<div style="margin-top:25px" id=folderlabel>{.!folder.}</div>
<div id=folder>%folder%</div>
<div id=body>
<form name=frm action="." target=_parent method=post enctype="multipart/form-data" onSubmit="frm.upbtn.disabled=true; return true;">
%upload-files%
<input name=upbtn type=submit value="{.!Upload files.}">
</form>
<br />{.!progress advice.}
</div>
<div id=footer>
<a href="http://www.rejetto.com/hfs/">HttpFileServer %version%</a>
<br />{.!Servertime.}: %timestamp%
<br />{.!Uptime.}: %uptime%
<br />{.!Disk space.}: %diskfree%
</div>
</body>
</html>

[upload-file]
<input name=fileupload%idx% size=70 type=file><br />

[upload-results]
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <link rel="stylesheet" href="/~style.css" type="text/css" />
  <title>HFS %folder%</title>
</head>
<body>
<div style="margin-top:25px" id=folderlabel>{.!folder.}</div>
<div id=folder>%folder%</div>
<div id=body>
%uploaded-files%
<br /><br />
<a href="." target=_parent class=big><img src="/~img14" /> {.!Back to the folder.}</a>
</div>
<div class=footer>
<a href="http://www.rejetto.com/hfs/">HttpFileServer %version%</a>
<br />{.!Servertime.}: %timestamp%
<br />{.!Uptime.}: %uptime%
<br />{.!Disk space.}: %diskfree%
</div>
</body>
</html>

[upload-success]
<li><a href='%item-url%'>%item-name%</a>: <b>{.!OK.}</b> --- %item-size%  ({.!Speed.} %speed% KB/s)
{.if| %user% |{: {.append| %folder-resource%\hfs.comments.txt |{.filename|%item-resource%.}=uploaded by %user%
/append.} :}/if.}

[upload-failed]
<li>%item-name%: <b>{.!FAILED.}</b> ---  {.!%reason%.}

[upload+progress]
<html>
<head>
<frameset cols=200,*>
  <frame name=progress src="/~progress" scrolling=auto marginwidth=0>
  <frame src="~upload-no-progress" scrolling=auto>
</frameset>
</head>
<body>
</body>
</html>

[progress]
<html>
<head>
  <meta http-equiv="Refresh" content="7;URL=/~progress">
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <link rel="stylesheet" href="/~style.css" type="text/css" />
  <style>
  .filename { font-weight:bold; font-size:8pt; }
  .bytes { font-size:7pt; }
  .perc { font-size:14px; vertical-align:middle; }
  .out_bar { width:100px; font-size:15px; background:black; border:black 1px solid; margin-right:5px; float:left; }
  .in_bar { height:16px; background:white; color:white;  }
  #body { margin-left:0; margin-right:0; }
  body { padding:2px; }
  #graph { border:white outset 2px; }
  </style>
  <title>HFS - {.!Progress status.}</title>
</head>
<body>
<div class=big>{.!Progress status.}</div>
{.!Auto-refresh.}: 7 {.!seconds.}
<br /><br /><img src="/~img_graph190x40" id="graph" />
<div id=body>
%progress-files%
</div>
<div id=footer>{.!Uptime.}: %uptime%</div>
</body>
</html>

[progress-nofiles]
<div class=big>No file exchange in progress.</div>

[progress-upload-file]
<span class=flag>&nbsp;up&nbsp;</span>
<span class=filename>%filename%</span>
<div class=bytes>
%done-bytes% / %total-bytes% bytes
<br />Speed: %speed-kb% KB/s
</div>
<div style="margin-top:5px; margin-bottom:20px;">
  <div class=out_bar><div class=in_bar style="width:%perc%px"></div></div> <span class=perc>%perc%%</span>
</div>

[progress-download-file]
<span class=flag>&nbsp;down&nbsp;</span>
<span class=filename>%filename%</span>
<div class=bytes>
%done-bytes% / %total-bytes% bytes
<br />Speed: %speed-kb% KB/s
</div>
<div style="margin-top:5px; margin-bottom:20px;">
  <div class=out_bar><div class=in_bar style="width:%perc%px"></div></div> <span class=perc>%perc%%</span>
</div>


max c dl msg=On this server there is a limit on the number of <b>simultaneous</b> downloads.<br />This limit has been reached. Retry later.
retry later=Please, retry later.
progress advice=Before uploading you may want to open a <a target='_blank' href="/~progress">progress status window</a>.
item folder=in folder

8
HTML & templates / can someone please help me figure this out
« on: March 17, 2008, 12:48:48 AM »
I am making my template, without login. I made a button for uploads but when i make my button for search, it wont work lol. Here is what i got

<div align="center"><td class="btnav" onmouseover="style.backgroundColor='blue';"
onmouseout="style.backgroundColor='#00ff00'"><div class="search button">
<a href="{.!search.}"title="Search files on this server">
<button style="width:120px;height:30px;border-top-color:#00ff00;
border-left-color:#00ff00;
border-right-color:#00ff00;
border-bottom-color:#00ff00; background-color:#000000";><b><FONT SIZE="-1""font color="#00ff00">Search</FONT><b>
</button></a>
<input name=search size=20 value="{.?search.}">

Can anyone tell me what im doing wrong? thanks in advance

9
HFS ~ HTTP File Server / A question about icons
« on: January 27, 2008, 04:19:57 AM »
I wanna know, is it possible to disable the icons next to the files because half of them dont show up. for an example check out my page http://just-n-freak.kicks-ass.net
Thank you in advance

10
HTML & templates / A few questions
« on: January 06, 2008, 05:43:32 PM »
I am new to all this and i dont know too much other than getting what i like and copying html and javascript into the template lol. Is there a program that u can load the template into, view it, and drag stuff around? Another question i have is how can i chage it so people   
dont see this http://71.173.13.118:9876/sparta%20messenger%20install%207.9.exe. Any suggestion anyone may have to improve this, please let me know  :)   my server is here http://crazyjust.kicks-ass.net

Pages: 1