If anyone finds this page by encountering the same problem I had, I found the answer here: http://www.howtoforge.com/installing-nginx-with-php5-and-php-fpm-and-mysql-support-lemp-on-ubuntu-12.04-lts
For those of you who can't be bothered to click and work it out for themselves... ;)
The Condition:
Ubuntu or Debian server with NGINX and PHP 5.3 works fine but
upgrading PHP to 5.4 gives 502 Bad Gateway errors. Looking for services
running on port 9000 returns nothing.
The fix:
open /etc/php5/fpm/pool.d/www.conf and make a note of the 'listen' parameter (in my case /var/run/php5-fpm.sock)
; The address on which to accept FastCGI requests.
;...
Thursday, March 14, 2013
Thursday, December 6, 2012
Get city from lat and lon ( GOOGLE MAP API )
Posted by
Unknown
at
11:00 AM
Below is my code :
$status = 'OK';
$value = '';
try
{
$lat = $_GET ['lat'];
$lon = $_GET ['lon'];
// TODO: validate input + find city name by coord
assert ( is_numeric ( $lat ) );
assert ( is_numeric ( $lon ) );
$google_api_link = 'http://maps.googleapis.com/maps/api/geocode/json?latlng=%s&sensor=false';
$lat = filter_input ( INPUT_GET, 'lat' );
$lon = filter_input ( INPUT_GET, 'lon' );
$link = sprintf ( $google_api_link, $lat . "," . $lon );
$content = httpReq ( $link );
$json_object = json_decode ( $content );
if ($json_object->status != 'OK')
{
$status...
Tuesday, November 27, 2012
Fix cross domain request in IE8 and above
Posted by
Unknown
at
10:05 AM
I have problem with IE browser when request other link from my site,
From IE8 and above, when request you will be get error "Access is deny or no transport".
To fix this , you must implement for IE specific funtion ( don't use Ajax jquery ).
Detail link read at here http://www.nczonline.net/blog/2010/05/25/cross-domain-ajax-with-cross-origin-resource-shari...
Thursday, October 18, 2012
emmbed flash to html
Posted by
Unknown
at
10:53 AM
This way is most simple and working for all modern browser.
code :...
Thursday, September 13, 2012
Fix error bind() fail on sphinx
Posted by
Unknown
at
1:49 PM
We should try 2 command before this below guide :
the 'init: ... main process ended, respawning' suggests there is something in the init script that sets a watchdog to make sure sphinx doesnt die.
Perhaps you need to shutdown sphinx via the init script itself
/etc/init.d/sphinxsearch stop
or
By default, it seems like the debian package will start Sphinx with an additional keepalive process. I was able to stop it successfully with this;
sudo service sphinxsearch stop
If 2 way above is not success, you should try.
using config file '/sphinx/conf/sphinx.conf'...
listening on all interfaces, port=9312
bind() failed on 0.0.0.0, retrying...
bind()...
Wednesday, September 12, 2012
Simple blog using mongoDb
Posted by
Unknown
at
5:00 PM

This is simple blog allow display post , add new post and add comment for post using MongoDb for storage.
Note: Download mongDb for php at this link http://www.mongodb.org/display/DOCS/PHP+Language+Center
And install mongDb before demotrastion.
I pushed source to gitHub att this link https://github.com/bvtuan/blog_mongodb
Hope it useful for who learning mongoDb....
Tuesday, September 11, 2012
Install jdk 7 for ubuntu 12.04
Posted by
Unknown
at
8:03 PM
Just use some terminal code below :
sudo rm /var/lib/dpkg/info/oracle-java7-installer*
sudo apt-get purge oracle-java7-installer*
sudo rm /etc/apt/sources.list.d/*java*
sudo apt-get update
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-install...
Subscribe to:
Posts (Atom)