php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #69200 opcache_compile_file
Submitted: 2015-03-07 16:16 UTC Modified: 2015-03-15 04:22 UTC
Votes:7
Avg. Score:4.3 ± 0.9
Reproduced:7 of 7 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: stephane dot vannerom at gmail dot com Assigned:
Status: No Feedback Package: opcache
PHP Version: 5.6.6 OS: Windows 8
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: stephane dot vannerom at gmail dot com
New email:
PHP Version: OS:

 

 [2015-03-07 16:16 UTC] stephane dot vannerom at gmail dot com
Description:
------------
opcache_compile_file fails

OPCache module is 'up and running' when displaying phpinfo();



Test script:
---------------
echo (opcache_reset()) ? '<br/>cache reset complete<br />' : '<br />unable to reset cache<br />' ;
echo (opcache_compile_file(__FILE__)) ? __FILE__ . ': compiled successfully<br />' : __FILE__ . ': compile failed<br />';

Expected result:
----------------
I expected the file was compiled

Actual result:
--------------
cache reset complete

Notice: Zend OPcache seems to be disabled, can't compile file in C:\wamp\www\optisimpleorgdev\public\admin\osc.php on line 29
C:\wamp\www\optisimpleorgdev\public\admin\osc.php: compile failed

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-03-07 17:13 UTC] laruence@php.net
set opcache.enable=1 in your php.ini
 [2015-03-07 17:13 UTC] laruence@php.net
-Status: Open +Status: Feedback
 [2015-03-15 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 [2016-05-10 20:52 UTC] ian at subnet192 dot com
Hi, I'm having the same issue on a PHP 7.0 installation.

When I'm trying to run opcache_compile_file(), I get a message saying :
 
PHP Notice:  Zend OPcache seems to be disabled, can't compile file in compile.php on line 8

I'm running the compile.php script using : php -c hunt.ini.tmp compile.php

The hunt.ini.tmp has the following settings :

opcache.enable=1 
opcache.file_cache_only=1
opcache.enable_cli=1

Running opcache_get_configuration() gives me good results : 

array(28) {
    ["opcache.enable"]=>
    bool(true)
    ["opcache.enable_cli"]=>
    bool(true)
    ["opcache.use_cwd"]=>
    bool(true)
    ...

But running opcache_get_status() gives me :
 
array(3) {
  ["opcache_enabled"]=>
  bool(false)
  ["file_cache"]=>
  string(63) "/my/path/hunt_opcache"
  ["file_cache_only"]=>
  bool(true)
}

Not sure what is going on exactly.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 03:01:28 2024 UTC