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

Pages: 1 ... 129 130 131 132 133 134
1951
HFS ~ HTTP File Server / Re: unable to download betas
« on: October 24, 2007, 12:28:32 AM »
Sorry ELEVENNNN

It is your posts which confuse me I manage only very rarely in their to find a sense with the topic in which they are, they are sometime not constructive

1952
HFS ~ HTTP File Server / Re: accounts in the VFS instead of INI
« on: October 23, 2007, 10:59:23 PM »
you repeat what i have already say above


ELEVENNNN it's not serious, it is the same problem when in a car two drivers want to take the steering wheel at the same time :D ;D 8) :o

1953
HFS ~ HTTP File Server / Re: accounts in the VFS instead of INI
« on: October 23, 2007, 10:49:25 PM »
user accounts and folder restrictions are linked , we can load a vfs file (with account into ) and clear all folders in hfs to create another vfs file with same accounts.

If accidentally your ini file is destroyed, then there is not means anymore to connect the vfs with the lost accounts it is necessary to redo everything and it is not of the tart past certain number of users and folders

when i change  my vfs loading, they are generaly not the same user accounts i have

the actualy possibility is too restrictive

an option like "include accounts into vfs file instead ini file" into menu "virtual file system", It would be I think of a good compromise for our opposite points of view


1954
thanks that will extend possibilitys for templates.

If several propositions go to the same sense,it's worth the trouble I think of to interresser, later with the code in hand I can see if the other possibilities are feasible without big modifications of the code, that is why I asked you for a copy source of your last works

1955
HFS ~ HTTP File Server / file overwrite: per-folder
« on: October 23, 2007, 09:53:22 PM »
okey rejetto i have another proposition to you

moving the general option (in main menu uploads-->) number files on upload instead ...

to the context menu for each folder

i admin my hfs by an other computer , users can upload in one folder and are not allowed to  overwritting file but this restrict me when i want to overwrite a hfs.diff.tpl by example in my upload authorized folders hidden for others users

1956
HFS ~ HTTP File Server / Re: Search Engine Builder Professional
« on: October 23, 2007, 09:40:04 PM »
i would say a board Specially for hfs  delphi code not same as html or java for templates

have you receiving my mail about delphi code for ?sort=n+ .. ?sort=n-   

1957
HFS ~ HTTP File Server / accounts in the VFS instead of INI
« on: October 23, 2007, 09:36:03 PM »
rejetto

user accounts are saving in ini file, is it posssible to store them into vfs file with the directory and permissions for users
i think it's more logical, when your load a file system vfsto have account in it.

when i start differents fvs accounts and folders restrictions  even necessarily are not

1958
Rejetto

after your post in this topic
http://www.rejetto.com/forum/index.php?topic=5016.msg1028073#msg1028073

Quote
but if anyone has such need, i could make [sections] optionally invisible, this way
[section|hidden]
but only if it is really useful.

is it as same to add possibility for a section to be diplay in template only like that


[sym-xxx|login] (user not logged)  and [sym-yyy|loggedin]  (user logged)
 
in main page if i use  %sym-xxx%%symm-yyy% at the same line like %login-link%%loggedin%

if i am not logged  %sym-xxx% and %login-link% appears and the two other are masked and conversely


1959
HTML & templates / offset page and limit , The beginning of a long story
« on: October 23, 2007, 09:06:00 PM »
By amusement I recovered of the javascript code and I recreated what follows:

insert all section [sym-url] at the end of your template and add %sym-url% anywhere into the [files] and [nofiles] sections (Rather in the beginning of section)

It is not the best possible code but that works.

 Activate checkboxes and modify the possible values (when logged its better)

( Noted: and page is not activated)
It is the beginning, later I attack the presentation




Quote

[SYM-URL]
<script language="javascript" type="text/javascript">
var code_value = new Array();

code_value["offset"] = "0";
code_value["page"] = "1";
code_value["limit"] = "-1";

function changeurl(code){
    var check=0;

    switch (code)
       {
        case 4 : code="offset"; check=1; break;
        case 5 : code="page"  ; check=1; break;
        case 6 : code="limit" ; check=1; break;
                   default : check=0; break;
       }

    var valeur = document.form.champ.value;

   if(code == "recursive" )
          {  if (valeur.search(code) != -1)
       { valeur = valeur.replace(code,'');
          document.form.champ.value = valeur;
                   }
   else
                   { document.form.champ.value= code+valeur}

            }


 else   if (valeur.search(code+'='+code_value[ code ]) != -1)  {              //le champ existe
             if (check == 1){                                                               //mise à jour des valeurs
                valeur = valeur.replace('&'+code+'='+code_value[ code ],'')
                document.form.champ.value = valeur+'&'+code+'='+document.form.elements[ code ].value;
     check=0;
                }
            else  {
                valeur = valeur.replace('&'+code+'='+document.form.elements[ code ].value,'');
                document.form.champ.value = valeur;
               check=0;
                }
             }
         else {
            if (check==0){
                      document.form.champ.value += '&'+code+'='+document.form.elements[ code ].value;
                      check=0;
                     }
           }
   code_value["offset"]=document.form.elements["offset"].value;
   code_value["page"]=document.form.elements["page"].value;
   code_value["limit"]=document.form.elements["limit"].value;
}   

</script>

    <form name="form">
      http://HTTP://%host%%folder%?
       <input type="text" name="champ" size="50"><br/>
       <input type="checkbox" name="cocher" value="1"  onclick="changeurl('offset');">offset
       <input type="checkbox" name="cocher" value="2"  onclick="changeurl('page');">page
       <input type="checkbox" name="cocher" value="3"  onclick="changeurl('limit');">limit
       <input type="checkbox" name="cocher" value="recursive"  onclick="changeurl('recursive');">recursive
<p>
       <input type="text" name="offset" size="4" value="0" onchange="changeurl(4);" onKeyup="changeurl(4);">

       <select name="page"  size="1" onchange="changeurl(5);" >
         <option value="1" selected>1
         <option value="2">2
         <option value="3">3
         <option value="4">4
         <option value="5">5
         <option value="6">6
         <option value="7">7
         <option value="8">8
         <option value="9">9
         <option value="10">10
       </select>


       <select name="limit"  size="1" onchange="changeurl(6);">
         <option value="-1" type="hidden" selected>0
         <option value="5">5
         <option value="10">10
         <option value="15">15
         <option value="20">20
         <option value="25">25
         <option value="30">30
         <option value="35">35
         <option value="40">40
         <option value="45">45
         <option value="50">50
       </select>
<INPUT TYPE="button" VALUE="Actualiser" onClick="window.location.href='http://127.0.0.1/?'+document.form.champ.value">
 </form>


ref to read  http://www.rejetto.com/forum/index.php?topic=5028.msg1028212#msg1028212

1960
HFS ~ HTTP File Server / Re: Search Engine Builder Professional
« on: October 23, 2007, 08:44:54 PM »
Dear rejetto thank you for all these positive reponses.

There is a board for the versions beta, one for templates, possibility of opening one board specialized for the propositions of modifications of hfs in the kind of the one that I proposed higher? So we would not be obliged to post almost everywhere in the forum and quickly to see again(to revise) what was already proposed.

1961
Beta / Re: Testing build #137
« on: October 22, 2007, 10:55:58 AM »
alla stats info are in hfs.ini

out-total=228300533
in-total=23827481
hits-total=18631
downloads-total=246
upload-total=0

you can modify this values but not order of lines

1963
HFS ~ HTTP File Server / Re: upnp
« on: October 20, 2007, 10:56:26 PM »

1964
router & port problems / Re: Problem with my new modem SpeedTouch 516 V6
« on: October 20, 2007, 10:10:53 PM »
Giant  it appear the sames links, just name and presentation of appli are differents

http://www.portforward.com/english/routers/port_forwarding/Thomson-Alcatel/SpeedTouch516i/eMule.htm
http://www.portforward.com/english/routers/port_forwarding/Thomson-Alcatel/SpeedTouch516v6/Http_File_Server-HFS.htm

no more information how create nat port into speedtouch 516

1965
router & port problems / Re: Problem with my new modem SpeedTouch 516 V6
« on: October 20, 2007, 07:19:00 PM »
see this link and adapte ports and adress as you want

don't forget to define an static ip for your computer not use dhcp from your router to give an ip in your local network

http://www.portforward.com/english/routers/port_forwarding/Thomson-Alcatel/SpeedTouch516i/eMule.htm

Pages: 1 ... 129 130 131 132 133 134