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

Pages: 1
1
HTML & templates / Re: Uploads progress window in custom template
« on: November 11, 2010, 03:01:12 PM »
Closing with javascript works perfectly :) I just can't come up with a proper condition (trigger) when actually the upload is complete (when [progress] switches to [progress-nofiles]) to close the progress window :)

2
HTML & templates / Uploads progress window in custom template
« on: October 29, 2010, 12:57:24 PM »
At first, I'm very oldschool and still using the lastest stable version 2.2f :) I made a template that meets my creteria and everything works absolutely great!

I added:
Code: [Select]
onClick="window.open('/~progress');"in the "Upload File" button section code:
Code: [Select]
<input name="upbtn" ... >
Now when the user hits the upload button, it also opens a new window with upload progress.
My question is: Can I use some "trigger" to close this window when the upload is complete?

I've tried the following ways with javascript inserted in the beginning of [progress-upload-file] section:
1)
Code: [Select]
<script type="text/javascript">
if (%perc% > 98) {
 window.close();
}
</script>
2)
Code: [Select]
<script type="text/javascript">
var param = (%total-bytes%-%done-bytes%)/1024-2.5*%speed-kb%;
if (param<0) {
 window.close();
}

Both methods depend of the refresh rate setup in [progress] section and don't work stable.
Any hints will be heartily appreciated! :)

Template file dwk.tpl attached to the post...


3
HFS ~ HTTP File Server / Re: RSS Feeds
« on: February 22, 2010, 06:26:02 PM »
@Rejetto
I thought about a subscription option... But yes, mate... Those who know how RSS feed works actually don't need it :)
Just wanted to share what I found out and how it helped me to solve my problem :) Hope this would be useful for the peeps :)

[offtopic]
Once again - huge thanks for the wonderful software, rejetto :) When I got a chance will make another donation, mate!!
[/offtopic]

4
HFS ~ HTTP File Server / Re: RSS Feeds
« on: February 22, 2010, 04:50:19 PM »
Another hint for the RSS feeds :) Maybe some other peeps have/had my problem I decided today :)
Because I'm very old-fashioned (*giggling*), I create manually the xml RSS feed file for my site. I had a problem with displaying it in the browser. I added the xml file as a "text/xml" MIME type (but not as "application/rss+xml" i did before), setup HFS to open *.xml directly in the browser and everything runs perfect. An additional CSS settings customizes the look of the feed.

I'm a newbie and not very deep into RSS Feeds and any other hints will be heartily appreciated :)

5
Everything else / Re: Thank you, Rejetto
« on: December 16, 2009, 01:02:49 PM »
Thanks for your kind words, mate :)
DWK001 is my debut album... :) Melancholic tunes, I'm not sure you'll like them...
All the best and happy holidays!! :)

6
HFS ~ HTTP File Server / Re: Weblink in real folder
« on: December 11, 2009, 07:31:15 PM »
Maybe you can create an html file and to format the links as you wish (so you can keep the original or your personal HFS template). I can help you if you want.

7
Everything else / Thank you, Rejetto
« on: December 11, 2009, 07:14:13 PM »
Hi Rejetto,
Just wanted to THANK YOU, my man!!! I run a netlabel for chilled downtempo groovez and 2 years now I use your AMAZING HFS for hosting the web site!!! It works perfectly with dyndns linked to my own domain, the files upload option is just the greatest decision for me to get handy and easily music demo submissions!!!
Huge giant thanks for everything you're doing, mate!! Will spread the word about your top notch work and I'm about to make a heartily donation!!! Stay blessed!!! Lots of positive vibes from Varna, Bulgaria!!

8
router & port problems / Re: hfs don't work
« on: December 11, 2009, 06:46:45 PM »
Maybe it's crazy, but... some antivirus/firewall softwares can block all your traffic on different than standard ports for browsing if they are switched in panic mode... Be sure all your antivirus/firewall are configured correctly...

9
router & port problems / Re: IP address without port, possible?
« on: December 11, 2009, 06:28:49 PM »
For most of the routers by default use port 80 for their web configuration, I tried to forward external port 80 to internal 8000 (in your case port 100) and runned HFS with port 8000 (in your case port 100). It worked absolutely great for me, the http server was accessible from outside network without a need to include the port.

Pages: 1