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 - bmartino1

Pages: 1 ... 57 58 59 60 61
871
Programmers corner / Re: IIS Integration
« on: February 14, 2014, 04:54:02 PM »
yes and no, hfs will not become a "plugin for iis, but you can redirect iis pages to hfs and vise versa, for example, iis on port 80, nad hfs on port 8080, a client conets to iis and clicks a link to the hfs, hfs is forward already  without port forwarrding...

I have tested hfs with iis and had some sucess, do to all the programing and redirects it came down to what program are you wanting to use to setup web traffice, ie have iis be the security login and redirect ot a already setup hfs webpage and host...

http://www.iis.net/learn/get-started/planning-your-iis-architecture/understanding-sites-applications-and-virtual-directories-on-iis

the answer is yes, but the hfs machine will need to be configured with redirect back and forth to the iis...

872
HTML & templates / Re: File upload with drag and drop
« on: February 14, 2014, 04:49:21 PM »
thank you for this info, it will com in handy if i ever want to start in that direction! Good job

873
HFS ~ HTTP File Server / Re: Hfs and iPad
« on: February 14, 2014, 04:47:06 PM »
I would have her try a hfs template that can support it, from an earlier post  i replied to, i was able to do this on all device with this template:

hfs template: https://drive.google.com/file/d/0B9u5dgydfOEuV3Q4WnZDbkxUTlk/edit?usp=sharing

this is hfs live template , in hfs it will launch a flash/java based player in which the ipad will open a program, other wise she will have to leave her hfs the same and make and play a m3u file that connects to her hfs that is sharing the files...

recap to this post:
http://www.rejetto.com/forum/hfs-~-http-file-server/video-(-avi-or-other)-preview-doesn't-work-on-folder-lock-11213/msg1058538/#msg1058538

874
HFS ~ HTTP File Server / Re: ip address and port 280
« on: February 14, 2014, 04:42:47 PM »
You will have to do some advance networking...
you can use a router to "nat" to transfer you external ip address port 80 to the address of you hfs machine to the port you have set up, depending on port you chose... why did you chose port 280???, other wise you will have to have that show up in the web pages... even under a dns account...

875
using the stable and the beta builds i have never had that issue, for example, having hfs in the root of c:/webroot/hfs.exe
and a basic html page of home.html (c/webroot/home.html) coding:
<html>
<head>
</head>
<body>
<p> test </p>
</body>
</html>
--------------------

in hfs right click the home/house and click add file chose c/webroot/home.html
hfs is now sharing the page:
the path would be

http://xxx.xxx.xxx.xxx/home.html

and or you can right click on the house (or create a new empty folder/add a real folder) and go to properties different template and paste the html code there...
The error you are recievein is either a user error or a naming error and if it is a naming error, right click it and rename it to something easier...

876
router & port problems / Re: HFS / Router Question
« on: February 14, 2014, 04:32:57 PM »
it looks like you are using the same port for hfs as the router login page you router is either a linksys or netgear to the sounds of it. the issue you are experience is that the router from you external ip which is what you freedns is directing to is connecting to the router as  the router has been set up to be configured from the external ip, port forawrding to another port or diable remote rouoter configurations. More detail may be need to help you in this issue as 1 i don't know the router you have which may be different, 2 i don't know what your have your prts as, by default linksys and netgear use port 8080 and some times port 80 for there remoter/external ip configuration...

also, due to thte ttl and other values, using HFS serve test port can and sometimes will fail, as long as you have set you dns name to the router/hfs and have hfs set to the port you want with the port forwared to the router, you should be able to acess you hfs form you external ip adress

need to know you external ip adress, it is:
http://www.ipchicken.com/

877
HFS ~ HTTP File Server / Re: Started as system
« on: February 14, 2014, 04:27:13 PM »
runing it as a service:
http://www.howtogeek.com/50786/using-srvstart-to-run-any-application-as-a-windows-service/

or do you want cmd to run as administrator/ you user "system"?

Why do you want to run the program with admin (the user you posted) "system pervilages..., also check to see if the program has that user/group has security permission to read/write by default system should have full control...

878
don't know if this is right, but will try and this and post latter...

in regedit seraching for hfs

it goes to path:

hkey_classes_root\local setting\software\Microsoft\windows\shell\muicache

(windows 7)- may be differen't on other version/builds

(before messing with your registry back it up...)

879
HFS ~ HTTP File Server / Re: Webcam on HFS
« on: January 31, 2014, 04:44:33 PM »
more intailed on how and what on webpage...

example and where you need to start:

What you need to do it?
To do video conferencing we need to do five things:

1. Set up video element in an html page:
 Collapse | Copy Code
<video></video>
2. Access local devices (camera,microphone):

 Collapse | Copy Code
navigator.getUserMedia();
3.  Display a/v from local or remote peer:

 Collapse | Copy Code
createObjectURL

4. Connect to remote peers

 Collapse | Copy Code
PeerConnection

880
HFS ~ HTTP File Server / Re: Automatic download
« on: January 31, 2014, 04:43:09 PM »
yes, a code simalr to this

the lineplaced in the header is what you need:
<meta http-equiv="refresh" content="0"; URL="https://bmartino1.dyndns.org">

break down
meta data - http-equiv="refresh"  is a comand to hit the refresh button on the webpage, but to a specfic page you put...
content="0" is how many second will pass before the page will refresh, 0 means as soon as possible...
URL, is the path to the download file you are wanting to send...

html code(form http to transfer to https...(LOLZ):
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<meta http-equiv="refresh" content="0"; URL="https://bmartino1.dyndns.org">
<title></title>
</head>
<body>
<p>redirecting you to <a href="https://bmartino1.dyndns.org"> https://bmartino1.dyndns.org &lt;.a&gt;</a></p>
</body>
</html>

LOLZ... hopes this helps
:)

881
HFS ~ HTTP File Server / Re: Webcam on HFS
« on: January 31, 2014, 04:34:19 PM »
your wanting advance code, heres a start in the right irection...

http://www.codeproject.com/Articles/515192/Video-Conferencing-using-WebRTC

882
when you save to registry what is the path in the registry it saves to?

I ask this because i run multiple hfs at one time, and i clicked save to registry instead of ini file, so now when my other hfs load, they load the one that was savde to registry, in whihc i want to delete the line so when they load they(from startup of machine) they load there ini files and not shudown server due to loading the registry file.

just looking for the path in regedit.... any help would be appreciated

883
FHFS / Re: How to hide delete account option
« on: December 31, 2013, 05:07:13 PM »
That's more of a question for a programmer as it is "hard wired" in the gui(some templates macro coding can fix this...), the question is what are you trying to do that you need to disable account deletion?

884
HFS ~ HTTP File Server / Re: Folder Names not being shown
« on: December 04, 2013, 04:27:42 PM »
i would suspect your template file is casuing this issue, or that you are adding "empty" folders and/or adding folder from all over the computer instead of having them all in a structured folder tree...

I would ask that you post you "template you are using"
Menu> html template> edit (i'm using the beta build, so some menu option may not be available...)
or press the F6 button

notepad or HFS will open with the template you are using, posting it will let me/other forum members see if the macros are causing the issue due to editing it and/or bad template download.....

and/or try using another template:
Here is one that works for me:
Live template: https://drive.google.com/file/d/0B9u5dgydfOEuV3Q4WnZDbkxUTlk/edit?usp=sharing

885
router & port problems / Re: Advanced connectivity issue - Please help
« on: November 28, 2013, 12:52:09 AM »
I have this issue all the time...,

The issue is caused when hfs does the self test that it is going out to test if ports are open, and the router where hfs is is able to go thorugh....,
but not all the packets being sent are coming back as the dmz enabled router is sending it up and back on tyhe routers not going back to the HFS machine.

HFS is still working, doing the test may change you port number...

hfs computer machine :Time - to - Live (ttl) > Your network > ISP network

Your setup form post:
hfs machine> (router 1)the router with ports open > (router 2) comcast equipment router Dmz to router1

issue, hfs sending packet to check if open on router 1 while waiting for a response when packets are being set forward to router 2....
 solution: unknown- hfs is still working due to DMZ port forwarding rules...
http://en.wikipedia.org/wiki/DMZ_(computing)

some networking ingenuity can fix this... but its not really worth the effort...

Pages: 1 ... 57 58 59 60 61