centos虚拟机扩展硬盘空间

http://www.cnblogs.com/sixiweb/p/3360008.html

http://blog.csdn.net/remote_roamer/article/details/50670802

 

 

https://gist.github.com/kramarama/9695033

http://xdebug.org/install.php#configure-php
  http://blog.jetbrains.com/phpstorm/2013/08/debugger-configuration-validation-with-phpstorm/
   
  on CentOS:
  1. You need to install PHP’s devel package for PHP commands execution
  yum install php-devel
  yum install php-pear
   
  2. Next install GCC and GCC C++ compilers to compile Xdebug extension yourself.
  yum install gcc gcc-c++ autoconf automake
   
  3. Compile Xdebug
  pecl install Xdebug
   
  4. Find the php.ini file using
  locate php.ini
  And add the following line
  [xdebug]
 
  xdebug.remote_enable = 1
   
  5. Restart Apache
  service httpd restart
   
  6. Test if it works – create test.php with the following code
  <?php phpinfo() ?>

centos7  chrome 安装

 

相关文章:

  • 2021-05-28
  • 2022-12-23
  • 2022-12-23
  • 2019-12-04
  • 2021-10-27
  • 2021-10-19
猜你喜欢
  • 2021-07-28
  • 2022-12-23
  • 2022-01-01
  • 2021-08-01
  • 2021-11-03
  • 2021-10-20
  • 2021-10-21
相关资源
相似解决方案