0

私はプロジェクト symfony バージョン 2.3.6 で作業しています。問題は、コードを変更したのに、何度もページ課金するまで変更がページに反映されないことです。私は開発環境にいます。ページをロードするたびにコードをコンパイルしないかのようです。常にコンパイルする必要がある開発環境にいるはずではありませんか? 挨拶

ご回答ありがとうございます。私は MAMP と php 5.5.3 を使用していますが、select キャッシュは使用していません。app_dev は次のとおりです。

<?php

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Debug\Debug;

// If you don't want to setup permissions the proper way, just uncomment the following PHP line
// read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information
//umask(0000);

// This check prevents access to debug front controllers that are deployed by accident to production servers.
// Feel free to remove this, extend it, or make something more sophisticated.
if (isset($_SERVER['HTTP_CLIENT_IP'])
    || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
    || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1'))
) {
    header('HTTP/1.0 403 Forbidden');
    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
}

$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
Debug::enable();

require_once __DIR__.'/../app/AppKernel.php';

$kernel = new AppKernel('dev', true);
//$kernel->loadClassCache();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);

//$kernel->loadClassCache(); という行にコメントを付けます。しかし、問題は解決しません。

4

1 に答える 1