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

Pages: 1
1
Greetings!


could someone help me how to display only the date for the result of the variable %item-modified%? I just don't want to include the time in the result because it makes that section too long if it includes also the time. and also, is there a way that I can modify it to display the date the file was added to the hfs? not the date the file was modified.

2
Greetings!


Is it possible to display the computer's running time/uptime in the statistics module? I tried several commands like timestamp, date, time, now, but only displays the current date, I wanted somehow to display the computer's running time, because the %uptime% command displays only the running time of the HFS server not the computer itself, I wanted to display the running time of computer vs the running time of the HFS server because I have added an additional script in event scripts that resets (stop/start) the server every 12:01AM to avoid the crashing of the server (memory leak). :)

3
HFS ~ HTTP File Server / Multi-Page per Directory
« on: October 07, 2013, 02:45:33 AM »
Greetings!


I have search this forum to find a mod for a multi-page directory if it has many files on it. I have found this link but it seems that it's in older versions of HFS, I didn't find the to-do-list in my HFS to enable the option multi-page browsing.


http://www.rejetto.com/forum/hfs-~-http-file-server/suggestion-percentlistpercent-pages-feature/msg1019850/#msg1019850


Can anyone update me for the version 282? My directories have hundreds of files on it, and in my experience, it took a long time to load the page of that directory. I wanted to have at least a max of 25 items at least per page. :)

4
RAWR-Designs / Changing The Default Search Option
« on: October 07, 2013, 02:01:52 AM »
Greetings!

I just wanted to ask, what value should I change in these codes so that the default search is File(s) only not Both, because the default option selected in the template is Both.

Code: [Select]
function searchQuery() {
frm = document.searchForm;
if(frm.query.value.length < 3) {
alert(lv_searchAlert);
} else {
frm.recursive.checked ? recursive ="&recursive" : recursive ="";
for(x=0; x<frm.choice.length; x++) {
if(frm.choice[x].checked ==1) {
if(frm.choice[x].value =="file") {
searchMode ="?files-filter=";
filter="&folders-filter=%5C";
} else if(frm.choice[x].value =="folder") {
searchMode ="?folders-filter=";
filter="&files-filter=%5C";
} else {
searchMode ="?filter=";
filter="";
}
}
}
for(c=0; c<frm.root.length; c++) {
if(frm.root[c].checked ==1) {
frm.root[c].value =="current" ? searchFrom ="http://"+serverHost+serverFolder : searchFrom ="http://"+serverHost;
}
}
document.location.href = searchFrom+searchMode+"*"+frm.query.value+"*"+recursive+filter;
}
}

5
Greetings!

I've managed to replaced the icons per file extensions, also added additional extensions and icons. I am wondering if there's a way that I can replace those icons but by folder names, not with their file extensions?

6
HFS ~ HTTP File Server / Removing the preview button everywhere (Solved)
« on: September 30, 2013, 03:54:26 AM »
Greetings!

Can anyone help me how to remove all the preview button in all directories? I'm just having difficulties removing the code of it. Thank you.

7
HFS ~ HTTP File Server / Replacing TAR Archive with RAR Archive (Solved)
« on: September 30, 2013, 03:50:01 AM »
Greetings!

Is there a way to replace the tar archive with rar, when archiving folders? tried playing some codes with the line "~folder.tar" into "~folder.rar" but resulting to an error page.

8
router & port problems / Using Local IP and External IP Both Simultaneously
« on: September 21, 2013, 07:37:35 AM »
Greetings!

I just wanted to ask if there's a way to use both local and external ip simultaneously? I have a local ip of 10.104.50.72 which can be accessed by users via our local network, and at the same time it was also connected to the internet. Can I use them both so that anyone can access my server locally and via internet?

Pages: 1