Solution For Call to undefined function apc_fetch
- Article
- Comment
Solution For Call to undefined function apc_fetch is answered on this specific tutorial . The problem behind the error is a APC extension. You need to install APC extension to solve this error. APC mean, Alternative PHP Cache(APC). This is a caching functionality to make you to run faster. So lets move to the installation of APC on your Local machine.
First download a copy of APC extension from the library.
https://pecl.php.net/package/apc
Select your APC extension based on your PHP version. Here my case, I have PHP 5.4. So download your copy.
Now, extract the zip and copy ts/php_apc.dll file to your local machine
Path-to-the-php/ext/ and paste here.
Than open your PHP.ini file on text editor and add the following line on the end of the file.
extension=php_apc.dll
Than save and close the file. and restart your Apache to run the APC on your local machine.