Archive | XAMPP RSS feed for this section

Install ‘XHProf’ PHP extension for XAMPP on linux

TweetIn one of my previous posts I wrote about how we install 'xdebug' PHP extension for XAMMP on linux. So in the same spirit we look at XHProf which is a function-level hierarchical profiler for PHP. For the people who have default PHP install, it's generally very easy to install 'XHProf' by doing PLAIN TEXT [...]

Read full story · Comments { 3 }

Install ‘xdebug’ PHP extension for XAMPP on linux

TweetIn my previous post I wrote about how we install XAMMP in the home directory of a user. We often need to profile our code and often on a variety of setups, the answer of course is to use Xdebug. Following is the procedure for installing PHP's 'xdebug' extension for XAMPP on linux (most of [...]

Read full story · Comments { 21 }

Setup and run XAMPP in your home directory

TweetWe tend to be old skool people and with every release of our favorite distro we just overwrite the / rather than opt for the upgrade route and it works pretty well because there always is a separate /home/ where all our heart is. Unfortunately XAMPP (yeah we need it to be there on every [...]

Read full story · Comments { 1 }

Use cake console with XAMPP

TweetIf you have problem while running cake console scripts for your LAMPP installation and get an error like './cake: line 34: exec: php: not found', fix this problem by editing 'cake' shell script and changing line PLAIN TEXT CODE: exec php -q ${LIB}cake.php "$@" -working "${APP}" to PLAIN TEXT CODE: exec /opt/lampp/bin/php -q ${LIB}cake.php "$@" [...]

Read full story · Comments { 2 }