Search results

  1. adam

    Report Abuse email notifications

    There's no plans at the moment for it. It's on the list though so we'll look into it at some stage.
  2. adam

    Y4 - file list LOADING... and users cant login

    What are the Nginx rules you're using?
  3. adam

    Requests from ticket #16449

    ------------------------------------- Daily Digest Email - sent to Admin - contains all of yesterday's uploaded files broken down by registered user. - if no files were uploaded, no email is sent -------------------------------------
  4. adam

    files seem to disappear

    Yes it should, but clearly it's not. You'll need to see what is effecting it aswell as making sure you're on the latest release code. Looking at the file table is the best place to start.
  5. adam

    Cloud flare and yetishare

    It's fine 99% of the time, our demo sites are running with it. I've seen there be issues with Cloudflare in rare cases with the upload speed. Some YS users have said it goes slower and disabling CloudFlare fixes it. I've not seen it myself but that's the only thing to be aware of.
  6. adam

    Google Translate

    It will be better if it will be for free >>> So would my mortgage... ;) Adam, you are the Elon Musk of php, well done, i look forward to seeing the video script when you release it >>> Thanks, I'm building a space rocket next week :)
  7. adam

    files seem to disappear

    Have a look at the record within the 'file' table. It should show the status, if it expired etc.
  8. adam

    Error session save path

    It relates to your server config: http://stackoverflow.com/questions/5104065/php-session-handling-errors
  9. adam

    upgrade from v3.4 to v3.4.1

    Hi, Please see the ___INSTALLATION.txt in the script download. Regards, Adam.
  10. adam

    Google Translate

    We have something better coming in the next release, an auto translate tool in the admin area. :) Click a button and it'll translate all the text content via the Google Translate API. We'll be supplying the language packs aswell.
  11. adam

    sessions in mysql table

    Just to let you know that this is one of the priorities for the next release, to reduce the data build up in the sessions table. In the mean time clearing anything older than a day should help.
  12. adam

    how do you host your website ?

    Also note the following performance config when you come to setting up the servers. It can make a huge difference to the speed: https://support.mfscripts.com/public/kb_view/27/
  13. adam

    Copied from ticket #16247.

    Copied from ticket #16247: Remarks on Reservo 1.4 installation: - directories should be created either chmod 777 or chmod 755 (in my case 755), I'd prefer this to be a setting our umask is set very strict by default (umask 0077 instead of 0022) which creates directories 700 and files 600...
  14. adam

    Difficult to add theme

    If you deleted the theme via FTP you'll also need to remove the record within the database, 'theme' table. If you manually want to install it, just upload it via FTP into the themes/ folder. When you load the admin, manage themes pages, it should scan for new ones.
  15. adam

    BUG : Blank contextmenu for Recent Upload + All files

    Thanks for posting. It'll be fixed for the next release.
  16. adam

    Need I upload plugin folder everytime add new server?

    Yes just an empty /files/ folder is all you need. Ensure it has write permissions (CHMOD 777 or 755 depending on your host).
  17. adam

    remove access password via sql command

    This should do it: UPDATE file SET accessPassword = NULL;
  18. adam

    New theme manually uploaded, but not visible in Theme Manager

    It should automatically pick it up when you load the manage themes section in the admin area. Ensure you've done and the steps to copy the original theme: https://support.mfscripts.com/public/kb_view/39/
  19. adam

    Wrong upload_source value for remote uploads

    Are you talking about the background url downloader? The one where you can close the browser?
  20. adam

    Wrong upload_source value for remote uploads

    Why not just check for this in your code? :) The php_sapi_name() call is pointless then. I'll make a note to see if this can be limited to cli only on all servers but my experience of trying it before tends to be that it causes more issues than it's worth. At least to get it working in all...