Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wamp tmp folder takes some GB of space while running magento in localhost

Tags:

wamp tmp folder takes some GB's of space while running magento in localhost ,

like this some files are created in Wamp/tmp folder, while i using magento
cachegrind.out.1367384833
cachegrind.out.1367384834
cachegrind.out.1367384835

file contain code like this

version: 1
creator: xdebug 2.2.0
cmd: C:\wamp\www\magento\index.php
part: 1
positions: line

like this it contain some 80k lines in each file
how to solve this problem?
thanks in Advance

like image 897
balaji Avatar asked May 01 '13 05:05

balaji


1 Answers

That seems to be due to profiling enabled in Xdebug. Set xdebug.profiler_enable=0 in your php.ini and restart the server to see if it fixes the issue.

like image 112
Francis Kim Avatar answered Oct 07 '22 02:10

Francis Kim