Welcome, Guest
Username: Password: Remember me

TOPIC: sell very large files (500mb-1gb)

sell very large files (500mb-1gb) 10 years 2 weeks ago #2230

  • Fibre
  • Fibre's Avatar
  • Offline
  • Senior Boarder
  • Posts: 67
  • Karma: 0
This is weird if I enabled the non php download or not. sometimes it may not work.
See Figure One file is 7.65 GB and gives in Quick Seller 0 B to working with the other two are 6 and 8 gb and give 1:29 gb and 558 mb of?
I put all the files directly in the root down. upload via quick seller does not izjn too big files.
The administrator has disabled public write access.

sell very large files (500mb-1gb) 10 years 2 weeks ago #2231

  • Fibre
  • Fibre's Avatar
  • Offline
  • Senior Boarder
  • Posts: 67
  • Karma: 0
m8,

Did clean install but now i download a html file if i say download???

i can make e download link in my qnap nas for the files then all the download are 100%. 10 gb to 50 gb.
Is there a option to but the donwnload link in quicksell? now you need to have the file in the upload folder.

or

Can this be the solution, but where do i put the code?

php.net/manual/fr/function.filesize.php

<?php
/**
* Get the size of file, platform- and architecture-independant.
* This function supports 32bit and 64bit architectures and works fith large files > 2 GB
* The return value type depends on platform/architecture: (float) when PHP_INT_SIZE < 8 or (int) otherwise
* @param resource $fp
* @return mixed (int|float) File size on success or (bool) FALSE on error
*/
function my_filesize($fp) {
$return = false;
if (is_resource($fp)) {
if (PHP_INT_SIZE < 8) {
// 32bit
if (0 === fseek($fp, 0, SEEK_END)) {
$return = 0.0;
$step = 0x7FFFFFFF;
while ($step > 0) {
if (0 === fseek($fp, - $step, SEEK_CUR)) {
$return += floatval($step);
} else {
$step >>= 1;
}
}
}
} elseif (0 === fseek($fp, 0, SEEK_END)) {
// 64bit
$return = ftell($fp);
}
}
return $return;
}
?>
Last Edit: 10 years 2 weeks ago by Fibre.
The administrator has disabled public write access.

sell very large files (500mb-1gb) 10 years 2 weeks ago #2232

  • Fibre
  • Fibre's Avatar
  • Offline
  • Senior Boarder
  • Posts: 67
  • Karma: 0
i think its working hahaha il try some more file befor i say 100% sure.

i enable the non php option then restarted all my nas servises and now i downloaded 3 file of 9 gb and more 100%
Last Edit: 10 years 2 weeks ago by Fibre.
The administrator has disabled public write access.

sell very large files (500mb-1gb) 10 years 2 weeks ago #2234

  • Fibre
  • Fibre's Avatar
  • Offline
  • Senior Boarder
  • Posts: 67
  • Karma: 0
Still testing hahaha after 7 donwnloads file size 7 gb, 9 gb up to 35 gb all 100%
The administrator has disabled public write access.

sell very large files (500mb-1gb) 10 years 1 week ago #2238

  • admin
  • admin's Avatar
  • Offline
  • Administrator
  • Posts: 900
  • Thank you received: 64
  • Karma: 7
Looks like it's ok now? :)
Plugin Developer
e-mail This email address is being protected from spambots. You need JavaScript enabled to view it.
Need fast web hosting service? Use our SSDShared.com
Get 1 month free cPanel MOCHA LATTE package with coupon: SHOPFILES1MONTH
It works great with both Joomla and WordPress.
How fast? demo.ssdshared.com
The administrator has disabled public write access.

sell very large files (500mb-1gb) 10 years 1 week ago #2242

  • Fibre
  • Fibre's Avatar
  • Offline
  • Senior Boarder
  • Posts: 67
  • Karma: 0
Yes so far so good!!! :):):)
The administrator has disabled public write access.
Time to create page: 0.099 seconds