Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

[FileUpload Addon] - Won't recognize APC

edited February 2011 in Vanilla 2.0 - 2.8
I have APC installed in my server, I'm even using it (succesfully) with Wordpress and W3 total cache. FileUpload can't seem to find it. Any idea on how to fix this?
Tagged:

Comments

  • Same here...

  • I have same issue, but after some digging. I have found that the FileUpload plugin use to 2 ini setting to determine APC function:

    $ApcAvailable = TRUE;
    if ($ApcAvailable && !ini_get('apc.enabled')) $ApcAvailable = FALSE;
    if ($ApcAvailable && !ini_get('apc.rfc1867')) $ApcAvailable = FALSE;
    

    So, I add apc.rfc1867 = on into php apc.ini settting file. After restart php service and the plugin works correctly with APC.

    extension=apc.so
    apc.rfc1867 = on
    apc.enabled = 1
    

    Hoping my experience can help others.

Sign In or Register to comment.