Search results

  1. Y

    3.2 Problems so far.

    Had an error when setting up the paypal plugin, this is because the plugins/_plugin_config.inc.php isn't formatted properly. As I downloaded it: <?php// core plugin config$pluginConfig = array();$pluginConfig['plugin_name'] = 'PayPal Payment Integration';$pluginConfig['folder_name']...
  2. Y

    Desktop application

    I think a great addition would be a desktop application that enables members to log into their account from their desktop (not browser). Features include: Upload Files (Similar to FTP where you can queue files to be uploaded). Download Files. Create Folders (set to public/private & password...
  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

    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.
  5. 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';
  6. 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; ?>"...
  7. 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...
  8. 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.
  9. 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
  10. 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 -->...