Search results

  1. S

    http downloads in https website

    Why would you want to do that? If your website is SSL already, why would you not want to use it for file download URLs ? Doesn't make any sense to me. so just curious to know your reason behind this ?
  2. S

    urgent - Developing a program using API

    Well i kind of like the API, a little bit more explanation in some areas would have been better. @brainbreaker - Not sure how you plan on using this API but if you are developing a program, you always want to go by a unique identifier which in our case is file_id. Other way could have been by...
  3. S

    urgent - Developing a program using API

    Thanks for pointing me Adam, The API testing tool doesnt really give me what type of information file upload parameter accepts, what datatype and how so i was confused. Anyways, i will give this a try and let you know if it doesnt work for me. Thanks
  4. S

    urgent - Developing a program using API

    Hi there, I am trying to develop a software for file upload using the API provided in this script and i am having troubles with file upload API. I dont know how to specify the file path in the "upload_file=" parameter. I have tried full path, relative path, etc but no luck. When i use the...
  5. S

    [SOLVED] Torrent plugin Permission denied:

    I have the same issue with torrent download plugin. The trick above didnt fix it for me. Any other ideas anyone ?
  6. S

    URL for Folder view not working - it redirects to 404 after showing files.

    yes, the URLs are of this type and the 404 error page change was made in file_download.php and i believe i have a fix for it now, so what i did was i created another if statement in the !file to check if the URL had the word folder in it and if it did, to not redirect to 404 page and that...
  7. S

    URL for Folder view not working - it redirects to 404 after showing files.

    Adam, yes you did look into that. If you give me FTP access to your demo, i can reproduce it. All i changed was in case of 404 error, show a 404.html page instead of blank page and the folder URLs started redirecting to 404.html page. If you want to make that change in your dev site and try it...
  8. S

    URL for Folder view not working - it redirects to 404 after showing files.

    Hello Adam, Can we have this looked at please? I believe the 404 code is checking for no file exist. (!$file). If there a way to add a OR command in this line to check for Folders as well ? I want to have this ability to share folders on my site but i am unable to do so.
  9. S

    Problem with the space

    just replied to your PM.
  10. S

    Problem with the space

    your deleted files are taking quite a big space. Make sure you have your cron running to delete your deleted files. After that run your filecheck from admin folder under __TASKS folder. that should list all the files that don't exist in your database and delete them.
  11. S

    question regarding 4.4.1 upgrade

    Hello Adam, Quick question, i have my theme all setup and i see there are not a whole lot front end changes in the script so my question is: Do you know of any changes in the theme files except for maybe file manager, account home changes, that we may need to update our theme ? I dont want to...
  12. S

    Shows all files and directories in my account.?!?!

    Thanks for pointing this out. same issue on my site.....
  13. S

    Tolerance of a token ?

    i thought the token was only for 1 time use...? once it's used, you cant use it again..
  14. S

    Direct Remote Server Successful Upload but doesn't generte link for files bigger than 2GB

    Thankyou Adam for this file. Hopefully this will fix all the disappearing upoads.
  15. S

    Downloadlink not working

    So you are trying to open up a directory link if i am understanding correctly? or you are trying to open a file download URL ? If it is a directory, check to make sure your directory is set to public. If it is a file, make sure you allowed downloads for non-users group..
  16. S

    Adding new File Server but .htaccess ERROR please help

    Is there a .htaccess file in the root directory, i mean under public_html folder ?
  17. S

    [Resolved] Search for registered user only

    Re: Search for registered user only Great!! To redirect to login page, instead of coreFunctions::output404(); use coreFunctions::redirect(WEB_ROOT . "/login." . SITE_CONFIG_PAGE_EXTENSION);
  18. S

    [Resolved] Search for registered user only

    Re: Search for registered user only what do you get? an error? i am not that good with the code, i can copy and paste and get it to work by trial and error..
  19. S

    Support for MEGA.NZ and GOOGLE DRIVE on "File Leech Plugin"

    why not just use API and get download URL from mega and use that as upload URL for remote uploads ??
  20. S

    [Resolved] Search for registered user only

    Re: Search for registered user only something like below in your search.html file. Please test it on test server first. use at your own risk. Instead of if(SITE_CONFIG_ENABLE_FILE_SEARCH == 'no') { // this page can not be accessed coreFunctions::output404(); } Use...