I have made a web application in codeigniter framework. I was developing the app on a Windows machine and the final version runs perfectly well on the same
As advised by Prix, I checked my error log and found that the problem was due to syntax error. I was using Function array dereferencing which has been added in PHP 5.4.0 but my server was running PHP 5.2.
The solution is here
The solution worked. I had to resort to this method rather than upgrading my PHP version because the server is running UBUNTU 12.04 which has no repos for PHP 5.4 .