January 21, 2012
by Huseyin Mert
0 comments
Your server not playing webm, then try adding this lines:
application/ogg ogx;
audio/ogg oga ogg spx;
video/ogg ogv;
video/webm webm;
audio/webm weba;
video/mp4 mp4;
audio/mpeg m4a;
Web Development
October 9, 2011
by Huseyin Mert
0 comments
Web Development
September 25, 2011
by Huseyin Mert
0 comments
Linux
August 25, 2011
by Huseyin Mert
0 comments
If you want to adding referrer information to your proxy header, you should add following lines.
location @proxy {
proxy_pass http://proxy:8090;
proxy_set_header referrer $http_referer;
}
Nginx
August 16, 2011
by Murat Çolak
0 comments
The first version of script get from
http://www.codeproject.com/KB/scripting/Detect_Caps_Lock.aspx
Web Development
August 16, 2011
by Huseyin Mert
0 comments
find /path/to/search/ -type f -exec grep -l "keyword" {} \;
Linux
July 12, 2011
by Huseyin Mert
0 comments
ls|grep -v ^EXCLUDE_DIR|xargs rm -rf
Removing all but not EXCLUDE_DIR, that’s the command you may use.
Linux
June 22, 2011
by Murat Çolak
0 comments
Imagine a programming language at 2000s that still uses goto. This is really WTF Oriented Programming
Uncategorized, Web Development
June 17, 2011
by Murat Çolak
2 comments
Hi all,
jdbc.default.url=jdbc:mysql:loadbalance://MYSQLSERVER1:3306,MYSQLSERVER':3306/lportal?useUnicode=true&characterEncoding=UTF-8&useFastDateParsing=false
loadBalanceBlacklistTimeout=5000
database.mysql.engine=ndb
But when we run the liferay server It fail to create database and say that error no:140.
(more…)
Liferay Portal
June 15, 2011
by Huseyin Mert
0 comments
A high performance web server in a one-click installer, it’s very usefull developers. MNPP to manage uwsgi from the preferences or console, giving way to use web applications using WSGI. For now MNPP has support for django 1.3 and web2py natively. MNPP has a menu in the status bar to give more comfort and simplicity in the administration of services.
to download and more information:
http://getmnpp.org/
Nginx, PHP, Python