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
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.
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...
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...
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.
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';
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; ?>"...
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...
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...
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.
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
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 -->...