ivan3510 8 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.
I found a mistake: apc_fetch(). (here's code:
<?php
if(isset($_GET['progress_key'])) {
$status = apc_fetch('upload_'.$_GET['progress_key']);
echo $status['current']/$status['total']*100;
}
?>
This returns this: Fatal error: Call to undefined function apc_fetch() in /home/a9563441/public_html/proba/getprogress.php on line 4
Is it possible to replace it with something?
APC is a PECL Extension
Try Getting the package and install
for more info on apc Extension
http://pecl.php.net/package/APC
This is on the internet, and I can't put it on the internet. (anyway thanks) Any other solution?
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.