1
Beta / Re: Testing build #272
« on: January 16, 2011, 02:27:51 PM »
in the same computer and in local lan with other pc upload work ok, the problem is only when try upload from internet
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.
Hi rejetto, for the problem of uploading to the version 272 I isolated the problem a bit..
I use hfs 272 on 2k3 server SP2
if I try to upload from the same computer is http://127.0.0.1 all ok
if I try to upload from a machine on the same network http://192.168.0.1 (ip of hfs server) is all ok
but when I try from Internet router "http://name.dyndns.com" with nat then me "Error not allowed"
I state that with the same router works with other versions
why?? NAT is working properly I can access and download file but not uploads..
i need someone to tell me how to reproduce the bug,
or someone who's willing to test some special versions that i will build to find a clue.
anyone?
<html>
<head>
<title>HFS - Agostino FileServer - LOGIN</title>
</head>
<body bgcolor="#ECF0F6">
<br>
<table bgcolor="#003366" bordercolor="#336699" cellspacing="1"
cellpadding="10" width="50%" align="center" border="2">
<tr>
<td>
<div align="center">
<h1><font color="#ECF0F6">Agostino FileServer</font></h1>
<h3><font color=
"#ECF0F6">xxxxxxx.gotdns.com</font></h3><font color=
"#ECF0F6"><img src=
"/template/login/login-logo.jpg"></font>
<h4><font color="#ECF0F6"><a href=
"/Server">LOGIN</a></font></h4><font color="#ECF0F6"><br>
<img src="/~img_graph320x80xx003366x004480"></font>
</div>
</td>
</tr>
</table>
<div align="center">
<h6><font color="#003366">HomeServer Powered By Agostino
©2010</font></h6>
</div>
</body>
</html>
Wont this work:Code: [Select]/* this is layer 0 */
#header {
color:#FFF;
height:100px;
background:url('/~img_graph300x100xx003366x004480') right center no-repeat #003366;
border-bottom:0;
}
/* this is layer 1 */
#header div {
height:100px;
font-size:20px;
line-height:35px;
padding-left:150px;
background:url('/images/myPersonalLogo.jpg') left center no-repeat transparent;
}
You could also create another surrounding div with the same properties, however I am fairly certain the above will work.Code: [Select]/* this is layer 0 */
#header {
color:#FFF;
height:100px;
background:url('/~img_graph300x100xx003366x004480') right center no-repeat #003366;
border-bottom:0;
}
/* this is layer 1 */
#header div {
height:100px;
font-size:20px;
line-height:35px;
padding-left:150px;
}
/* this is layer 2 */
#header div div {
height:100px;
background:url('/images/myPersonalLogo.jpg') left center no-repeat transparent;
}
#header {
color:#FFF;
height:100px;
background:url('/~img_graph300x100xx003366x004480') right center no-repeat #003366;
border-bottom:0;
}
#header div {
height:100px;
font-size:20px;
line-height:35px;
padding-left:150px;
[color=red]background:url('../images/mylogo.jpg') left center no-repeat transparent;[/color]
}
#header {
color:#FFF;
height:100px;
background:url('/~img_graph300x100xx003366x004480') right center no-repeat #003366;
border-bottom:0;
}
#header div {
height:100px;
font-size:20px;
line-height:35px;
padding-left:150px;
}
[color=red]#header div div {
height:100px;
background:url('../images/mylogo.jpg') left center no-repeat transparent;[/color]
}
remove background:url('/~img_graph300x100xx003366x004480') right center no-repeat #003366;
the url should not be "../images" but "/images"
#header {
color:#FFF;
height:100px;
[color=red]background:url('../images/myPersonallogo.jpg') left center no-repeat;[/color]
background:url('/~img_graph300x100xx003366x004480') right center no-repeat #003366;
border-bottom:0;
}
#header div {
height:100px;
font-size:20px;
line-height:35px;
[color=red]padding-left:150px;[/color]
}