Search results

  1. Y

    Upload Complete Error

    Try the following: php.ini upload_max_filesize 0 apache2.conf Timeout to 900 httpd.conf LimitRequestBody 0 I'm also running several servers on CentOS x64 and the above settings work for me
  2. Y

    Upload Complete Error

    Are you 100% sure its PHP limiting the upload and not Apache? I only ask as I have php compiled to x64 and I left a 4GB file uploading overnight and it uploaded successfully on my site.
  3. Y

    Password encryption?

    As using plain md5 isn't very secure and security is such a big thing on the web now would it be possible to implement a different algorithm to encrypt passwords? For example add a "salt" to the md5'd password: /*-----------------------------------------------------------*/ // Create a 5...
  4. Y

    How to contact Hotmail

    You can edit register.php from line 121 to 128, you will also have to edit whats stored in the database. Admin CP > Configuration > Translations > manage translations > In the "Filter Results" box put: register_user_email_content > Edit Note: Both register.php text and the translation text...
  5. Y

    Link Checking script modification

    I have built a link checking script which gives you a new page where your users can check up to 50 links to see if the links are valid or have been deleted. Due to someone moaning that I was spamming the forums people interested in this modification will have to PM me for more information.
  6. Y

    [BUG]Slight error in admin panel

    Not really a bug so to speak, just an error in the placement of one of the settings. Very bottom item in the attached image. To fix the error, run this MySQL query: UPDATE `site_config` SET `config_group` = 'Premium User Settings' WHERE `config_key` = 'premium_user_max_remote_urls';
  7. Y

    [BUG]HTTPS not followed correctly in several files

    Found these bugs when I enabled HTTPS on my site and tried to do certain things. account_add_folder.php Problem on line 94: <form class="international" method="post" action="http://<?php echo _CONFIG_SITE_FULL_URL; ?>/account_add_folder.<?php echo SITE_CONFIG_PAGE_EXTENSION; ?>"...
  8. Y

    Password protect files/move HTML into templates/plus more

    The ability to add a password to protect the file download. Move the HTML into templates and have a template editor in the admin control panel. Maximum permitted downloads per hour for free users. FTP Uploads. Ability to create different premium plans/groups. Ability to set a wait time...
  9. Y

    Contact & Impressum Page?

    For a link in the footer below the "terms & conditions" link Open _footer.php Find: <li><a href="<?php echo WEB_ROOT; ?>/terms.<?php echo SITE_CONFIG_PAGE_EXTENSION; ?>"><?php echo t('term_and_conditions', 'terms and conditions'); ?></a></li> Add below: <li><a href="<?php echo WEB_ROOT...
  10. Y

    Contact & Impressum Page?

    I know its a legal disclaimer, but what is the contents of the page?
  11. Y

    Contact & Impressum Page?

    I'm working on a contact page at the moment What do you want in the Impressum Page?
  12. Y

    Skrill plugin?

    Sorted now, I had to manually upload the files into the plugins directory and it then worked
  13. Y

    Skrill plugin?

    Yes I'm running 3.1 and I have reinstalled it several times
  14. Y

    Upload Complete Error

    It will stop php timing out after 3600 seconds (1 hour) when a user has a slow connection (takes longer than 1h to upload a 1+GB file)
  15. Y

    Skrill plugin?

    Right, sorry if I sound thick here but I can't for the life of me get this working. Uploaded the zip file via the plugins section of the ACP, enabled it and added my email address, but it doesn't show the link on the upgrade page.
  16. Y

    Remote url problem/bug

    www.uploaders.be
  17. Y

    Remote url problem/bug

    I'm tying to transfer a 180mb video file from one of my servers via remote url, however every time I try to transfer I get the following error: video.avi Error: File is too big Uploads in php.ini are set to 999mb and the script is set to allow 500mb uploads
  18. Y

    Bug Fix 3.1 - adverts displaying to paid users

    I noticed that the adverts in the frontend of the script was being shown to all users including paid users. The fix is below open _footer.php <!-- footer ads --> <div class="footerAds"> <?php echo SITE_CONFIG_ADVERT_SITE_FOOTER; ?> </div> Replace with <!-- footer ads -->...