Mehic.info

Category Archives: Technology

Posts related to my job or interests

Jquery PJAX freeze

Well, we had an issue with pjax since all pjax calls have been finished with frozen page. Best way to illustrate “frozen page” is custom loader that is shown when pjax action is called and hided when pjax action finished its progress. But loader seems to stay on page, jquery functions don’t hide it and […]

Read more

Configuring Sendmail SMTP Server On CentOS & Scientific Linux

Sendmail is the default SMTP (Simple mail transfer protocol) server installed on CentOS and although it can be slightly more complicated for beginners to learn than similar alternatives such as Postfix, it can be quite powerful and useful to learn. Sendmail by itself as the name suggests is a MTA (Mail transfer agent) which is useful for sending […]

Read more

How to spin the Zend Framework on nginx ?

Easy! As you might know, on nginx there is no .htaccess file. So you must specify your routing in .vhost file. Here is an example of one zend page that is spining on nginx. Enjoy! server { listen 111.222.333.444:80; server_name website.ba www.website.ba; root /var/www/website.ba/web/public; index index.html index.htm index.php index.cgi index.pl index.xhtml; location ~ \.shtml$ { […]

Read more