このリンクを使用して、Windows xampp 1.7.7 に xdebug と webgrind をインストールしました: link。http://localhost/webgrind に移動すると、プロファイルされたスクリプトを表示する代わりに、以下のようなものが表示されます。ドロップダウン メニューや選択するものはありません。
Select a cachegrind file above
(looking in C:\xampp\htdocs\webgrind\tmp/ for files matching /^cachegrind.out..+..+$/)
しかし、tmp フォルダーに cachegrind.out という名前で始まる 2 つのファイルがあります。
(xampp/php/php.ini)の私の設定は
zend_extension = "C:\xampp\php\ext\php_xdebug-2.2.2-5.3-vc9.dll"
xdebug.profiler_output_dir = "C:\xampp\htdocs\webgrind\tmp"
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_name = cachegrind.out.%t.%p
webgrind/config.php の設定
static $storageDir = 'C:\xampp\htdocs\webgrind\tmp';
static $profilerDir = 'C:\xampp\htdocs\webgrind\tmp';
私もこれらで試しました
static $storageDir = '';
static $profilerDir = '/tmp';
しかし、結果はありません。どうすれば動作させることができますか?