Mehic.info

Category Archives: Web

Posts related to web design and programming web applications.

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

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