Archive for the ‘PHP’ Category

How to get/kill process in ubuntu

For example if process name is php, you can get a list of jobs by using the command bellow

ps aux | grep php

Result

root 7749 0.0 0.1 3236 796 pts/2 S+ 16:09 0:00 grep php
root [...]

How to bootstrap, autoload modules and classes with Zend framework

This post is for you that have read this quick start from Zend and our goal is to create a bootstrap like this one. We assume that you know how to create a project, layout, module, controller and action by using zf.bat, zf.sh or manually and further that you are able to create a helloworld [...]