Search results

  1. E

    php7 support

    Hello. As you all should know, php7 is out with huge performance improvements. Yetishare 4.2 is not compatible with php7, especially the plugins newsletter and social login. It would be nice if you guys take some time to update it.
  2. E

    Report Abuse email notifications

    It's time to hire more people then :) Are you and Simon the only ones working on all those scripts?
  3. E

    Reseller Plugin

    True. Stats, download page, abuse reports and pages like this must be in the front-end. They should also be seo friendly. But plugins like rewards, reseller and similar should be in both layouts. The reseller plugin for example should list the resellers in the frontend and have information on...
  4. E

    Reseller Plugin

    I took a look at your new plugin. It definitely worth more than the old vouchersplus plugin from ysmods. I have modified my copy of this plugin and added some features that you did in your plugin, such as an api. Too bad you didn't have this plugin 1 year ago. I hope you didn't make the same...
  5. E

    Report Abuse email notifications

    +1 Those modifications would need less than 1 hour of work.
  6. E

    Copy file inside one account

    I took some days to figure it out too. I added a link called "tips" in the account_home with useful tips on how to use the file manager.
  7. E

    Copy file inside one account

    You can just drag the files to the folder on the left menu and they will be moved.
  8. E

    Copy file inside one account

    account_home.html, flow theme, lines 116 and 117: <button class="btn btn-white disabled" type="button" onClick="duplicateFiles(); return false;"><?php echo t('file_manager_duplicate', 'Duplicate'); ?> <i class="entypo-cancel"></i></button>
  9. E

    Whats the difference between cloudable and yetishare?

    I'm assuming that this cloudable is this one, since I didn't find it on mfscripts website: http://codecanyon.net/item/cloudable-file-hosting-script-securely-manage-preview-share-your-files/14341108 Does it uses the same core as yetishare, with the same classes to handle uploads and downloads?
  10. E

    Better way to handle plugins

    Hello. I think the current method of handling plugins is inefficient. The script needs to check if multiple files exists on every plugin folder every time. Useless information is also loaded in the session of all users, like plugin description. It would be better if the plugins have a main...
  11. E

    Copy file inside one account

    True. I found this few days after answering your post. I have modified the remote upload feature in my script to check if the link is from a local file and if so, duplicate the file only in the database without downloading it. The script has also a function to duplicate files in the file...
  12. E

    drop website file extensions

    I customized the entire script. I'm piratically using only the file manager and core functions from the original script. I post in this forum all customization that I can, but many things I did on my script wont work for others. I also dumped the translation since my site will focus only on my...
  13. E

    drop website file extensions

    You need to manually replace the "html" to "/" on the database. The problem is that the dot is static, so you need to edit every page and remove the dot from every link. There are other issues too, with the file download I guess. I'm not with the code here in this moment.
  14. E

    Custom ports to storage servers

    Hello. It would be nice to have the option to add a custom port for a storage server. This will allow the users to, for example, install nginx in another port other than 80 just for this script. If the user have a hosting site with dedicated servers running apache he would be able to use them...
  15. E

    Need help with YSmod voucher plus plugin

    Search for the folder /themes/flow/ in the plugin folder and rename it to the same name as your custom theme. Be aware that this plugin have security issues and bugs.
  16. E

    Use empty() instead of strlen()

    Hello. In the entire script I see the use of strlen() to check if a variable is empty, like if(strlen($var) ==0). empty() is at least 6 times faster than strlen(). It's a tiny improvement, but it's kind of weird to use strlen() to check if something is empty. empty() is not a function but a...
  17. E

    sessions in mysql table

    You can also remove anything with data = '' older than few hours. Changing the id field to binary(8) would cut the id size and the index by half. You can store md5 values with 8 bytes, just use the function UNHEX in the queries. In my code I removed the plugin data from the sessions.
  18. E

    Re: Security issues with YSmods Voucher Plugin

    The plugin has an option to download the codes. This download creates a txt file and write the codes on it. The problem is that the plugin creates the file with the same name and if 2 resellers use this function at the same time 2 php threads will write on the same file (no lock used) and one...
  19. E

    Theme ideas / Custom themes

    For the external part I think the best way is to build from scratch. Most parts are static anyway.
  20. E

    Optimize file icons

    Hello. I noticed a css sprite for 48px icons but not for 24px. I also noticed that the css for this is not well optimized. I'm attaching 2 css files and one image for the 24px icons. To use this new css, just add the 2 classes in the element. Example: <a class="icons_24px sprite_24_exe"...