Search results

  1. adam

    [ACCEPTED v4.4] Search engine optimization SEO

    Re: Search engine optimization SEO I've updated this for the v4.4 release. With that release there's an option to set descriptions and keywords on files, these will be shown on any download pages so search engines should pick them up. Other non download pages can be edited via the admin area...
  2. adam

    [ACCEPTED v4.4] Media Converter plugin minor change

    Re: Media Converter plugin minor change @sukhman21 - Just to let you know I've done some work in the plugin to allow for this. The concurrent option still exists however it's now based on the server running it. It's part of the beta plugins and will be out when we go into final release (aiming...
  3. adam

    YetiShare v4.4 Beta Bug Tracker

    Soon hopefully.
  4. adam

    YetiShare v4.4 Beta Bug Tracker

    It should point to the index.php in the /api/v2/ folder, not includes. Like this: # forward api requests RewriteRule ^api/v2/(.*)$ api/v2/index.php?_page_url=$1 [QSA,NC,L]
  5. adam

    YetiShare v4.4 Beta Bug Tracker

    Ensure you've applied the latest sql patch. I was amended on Saturday to include: ALTER TABLE `file` ADD `uploadedUserId` int(11) NULL AFTER `userId`; ALTER TABLE `file` ADD INDEX `uploadedUserId` (`uploadedUserId`); UPDATE `file` SET `uploadedUserId` = `userId`; The separate image setting...
  6. adam

    YetiShare v4.4 Beta Bug Tracker

    It will only support files up to your server limits. The file upload on the front-end can handle large files as it chunks the upload. The API does not. You'll need to check your server limits using the info here: (until the API supports chunked uploads)...
  7. adam

    YetiShare v4.4 Beta Bug Tracker

    In the .htaccess file rename api.php to index.php. I've also updated our beta release code.
  8. adam

    YetiShare v4.4 Beta Bug Tracker

    I can't replicate this on our dev. If you're using our demo site it wont work as it's locked down.
  9. adam

    YetiShare v4.4 Beta Bug Tracker

    It's not something I've heard of before, maybe it's an intermittent Cloudflare issue. If it still happens after a few hours, raise a ticket and I'll provide a direct download link.
  10. adam

    YetiShare v4.4 Beta Bug Tracker

    You can't drag and drop to the folder listing in the main site, only the treeview.
  11. adam

    YetiShare v4.4 Beta Bug Tracker

    If you're using Nginx ensure you've set the new API rewrite rules. They'll be in the Nginx rules txt file in the script root.
  12. adam

    YetiShare v4.4 Beta Bug Tracker

    Where are you dragging it to? The left hand folder listing?
  13. adam

    YetiShare v4.4 Beta Bug Tracker

    This was an issue with the left-hand treeview and a missing column in the table. Apply the sql below or so a fresh install of the latest beta. ALTER TABLE `file_folder` ADD `totalSize` bigint(15) NULL AFTER `folderName`; ALTER TABLE `file_folder` CHANGE `totalSize` `totalSize` bigint(15) NULL...
  14. adam

    YetiShare v4.4 Beta Bug Tracker

    Thanks for the feedback. This is now fixed on the demo site and the beta release code. It was a missing column in the file table. You can patch it by running the following sql or doing a fresh install of the latest beta code. ALTER TABLE `file` ADD `uploadedUserId` int(11) NULL AFTER `userId`...
  15. adam

    YetiShare v4.4 Beta Bug Tracker

    Please only post on this thread beta 4.4 issues. For anything else raise a ticket.
  16. adam

    YetiShare v4.4 Beta Bug Tracker

    Which storage type?
  17. adam

    YetiShare v4.4 Beta Bug Tracker

    Hi all, Please use this thread to post any issues you've spotted with the latest YetiShare v4.4 beta release. We can't accept any new requests for this release, please post them via the RFCs section. Only note bugs and issues here. If you are within your support period, you can access the beta...
  18. adam

    Yetishare 4.4 Release Date

    Hi All, I've added the beta v4.4 release and plugins to your account. If you're still within support you'll see a link to download it via your yetishare.com login. It's not on any of the other sites we run, only yetishare.com. I've also adjusted any of the support periods which expired this...
  19. adam

    Yetishare 4.4 Release Date

    Hi, It'll be available later today via your account as a beta download, along with the plugins. Remember that this is just a beta so don't use it on any live sites until final release. Thanks, Adam.
  20. adam

    Make The Download Token Usable Once

    Hi, The token should be removed once it's fully downloaded the file. If it's not, what setup do you have? Are you using xsendfile or xaccelredirect? Thanks, Adam.