Philex's FAQ


  • When scanalldir's option is enabled, my navigator crash
  • I want to use philex for personal using (_UseMultiusers=0) but i have to protect my philex with password ?
  • Can i send or download many files if i haven't got gzlib ?
  • Why i can't upload files over 2 MB ?
  • Why i can't access to directories or delete,rename,move ... files ?
    When scanalldir's option is enabled, my navigator crash
    Yes if your home root contain many directoreis this take a lot time and and maybe ecceed 30 seconds
    Top
    I want to use philex for personal using (_UseMultiusers=0) but i have to protect my philex with password ?
    There is a tip for that; you set _UseMultiusers to true or 1 and choose simple authentication, after go to "/auth/simple/data.txt" and put your usename pwd there
    example: username|098f6bcd4621d373cade4e832627b4f6|/home/test where password is crypted with md5 (you can crypt with md5.php?pass=your_password)
    Top
    Can I send or download many files if I haven't got gzlib ?
    Noo noo you must have gzlib installed on your system if you want to download or send multiple files, but you can't include directories coz at this time I dont know how to compress an entire directory :-P ... sorry
    Top
    Why i can't upload files over 2 MB ?
    By default the maximum upload size it set to 2 MB in php.ini. you have to change "upload_max_filesize = 2M"
    Top
    Why i can't access to directories or delete,rename,move ... files ?
    if you are running apache under linux/unix, apache runs as user "nobody" for repair this problem you must modify httpd.conf to have permession for philex
    ------- httpd.conf ---------
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    
    # User/Group: The name (or #number) of the user/group to run httpd as.
    #  On SCO (ODT 3) use User nouser and Group nogroup
    
    User superuser  # here you set your username or root
    Group #11100    # the group of user (under *ix)
    ------- httpd.conf ---------
    
    for more informations http://httpd.apache.org
    Top