Search results

  1. E

    Recommend Hosting Providers - Who do you use?

    Your ISP probably block ports and limit the number of concurrent connections on your network. Hosting servers at home is not a good idea. There are cooling issues, energy costs and the noise. If you want to host your own servers you should rent an office, get a transit contract with one or more...
  2. E

    Captcha in the admin login

    They can guess it, use brute force or dictionary attacks and etc. Few months ago I managed to download a .DS_Store file from a website who was hiding the admin folder and with this file I managed to get the file structure from his website and find the admin url. This is just a silly example.
  3. E

    [ADDED][v4.3] non flash copy all links and copy link button in the file details popup

    Re: non flash copy all links and copy link button in the file details popup It is not possible to copy text using only html and javascript at the moment.
  4. E

    selection boxes in file manager in listview

    Why? The user can already select files pressing ctrl.
  5. E

    Captcha in the admin login

    You can't delete the admin folder, cron tasks are inside it. Renaming it will just make the attacker take a little longer to figure out the new name. The attacker will assume that a strange login screen is the admin. As I have fixed ips on my company I restricted the access using .htaccess, but...
  6. E

    [ADDED][v4.3] persistent account_home toolbar

    Re: persistent account_home toolbar +1
  7. E

    Captcha in the admin login

    No, but it can happen.
  8. E

    IP list outdated

    Hello. The ip list used by yetishare is very outdated. I've been working with country ip lists for the past 3 years and I can say that the ip allocations change frequently. I update my lists on a weekly basis and every week there are new ips allocated to my country. A static list of ips for all...
  9. E

    default filemanager view options

    Better than this, the script could save the last used config. The file manager interface would be persistent.
  10. E

    Captcha in the admin login

    Hello. There are captchas in other parts of the script, why not in the admin area login?
  11. E

    how do we API upload as admin account?

    You can test it using curl or using sockets directly.
  12. E

    how do we API upload as admin account?

    There is no API for upload as admin. The /api/index.php file just copy files between one server to another.
  13. E

    Better logs on background tasks

    Hello. The script has a table background_task to store tasks names and date of last execution and background_task_log to store logs. The way it works now the storage servers will also update the background_task every time. Those updates are uselessness since the background_task table doesn't...
  14. E

    [subject renamed] Guessing Folder Names

    Adding a strange attribute will make your layout fail in w3c tests. I'm using the "name" attribute.
  15. E

    I can't login my admin, member can't login. Please help me

    Size doesn't crash tables. If you can't repair the table you have lost it's contents. I can't believe you don't have a backup of your database, backup is a must! This is the sql syntax to repair tables: REPAIR TABLE tablename.
  16. E

    I can't login my admin, member can't login. Please help me

    If you can't repair the table you lost the data. The data in the session table is not important and you can just truncate it. The file table holds data about the uploaded files. I hope you have a backup.
  17. E

    I can't login my admin, member can't login. Please help me

    Re: I can't login my admin, member can't login. Please help Databases shout NOT crash like this. I recommend changing the engine to innodb on tables that receive many write requests. Leave myisam just on tables that are mostly static.
  18. E

    .tmp folder Question?

    Are you using chunk upload?