Hi If you get error add below code in your php file
if( ! ini_get('date.timezone') ){ date_default_timezone_set('GMT')...
Linux users we provide solutions to different Problems we face every Day. This is Linux Troubleshoot Site, developed by Linux users.
Tuesday, 14 October 2014
Saturday, 6 September 2014
Steps to Install Xrdp in Ubuntu and Remote Desktop in Windows
Here the steps to Install Xrdp in Ubuntu and Remote Desktop in Windows
1. install xrdp
sudo apt-get install xrdp
2. install fallback
sudo apt-get install gnome-session-fallback
3. logout and login again by gnome theme. You can choose theme before log in (this step Optional)
4. open terminal by ctrl alt t , then input
echo...
Saturday, 19 July 2014
CodeBlocks wxWidgets in Windows with 100% working Setup
To complete CodeBlocks wxWidgets in Windows I tried lot of times but always there is an error while compiling ( if not exist gcc_mswu mkdir gcc_mswu ). here the successful steps
1. It may be easy to install CodeBlock by simply downloading from here and click install in windows.
2. Download and unzip wxWidgets (version...
Thursday, 19 June 2014
Android device chooser not showing running Emulator in Eclipse

if Android device chooser not showing running emulator then reset ADB
To restart ADB in Eclipse :
Window -> Show View -> Other -> Android -> Devices
When the view is showing: View Menu of "Devices" (click Down rectangle) > Reset A...
PhoneGap after Importing Android Projects to Eclipse Errors
If you got Different error after importing phonegap created projects into Eclipse as existing android project.
Note : While Importing do not set copy Project to Workspace, use same location where phonegap created project.
To solve all other errors do below steps.
a) import project from Android folder it will import both "hello...
Thursday, 12 June 2014
Solution : WordPress Error Briefly unavailable for scheduled maintenance Check back in a minute
If you got Briefly unavailable for scheduled maintenance Check back in a minute error in WordPress means there is a .maintenance file in WordPress installed directory. To avoid this error go to WordPress installed location in your server and delete .maintenance file.
check below video
watch in YouTube&nbs...
Thursday, 15 May 2014
Solution : Nginx 502 Bad Gateway Error
If you got 502 Bad Gateway Error in Nginx after updating software in your system.
Because of update in php-fpm this error may occur.
1. Edit /etc/php-fpm.d/www.conf
vi /etc/php-fpm.d/www.conf
And set listen line to look as follows:
listen = 127.0.0.1:9000
2. Now change nginx configuration files of each domain which may...
Friday, 28 February 2014
solution to installation of expect module in php5
following message will come if php expect module didn't find on web server expect example page.
fopen(): Unable to find the wrapper "expect" - did you forget to enable it when you configured PHP?
This means expect.so is not there in /usr/lib/php5/extensions
to install expect module follow streps :
1. Before installation...
Tuesday, 11 February 2014
Solution to Gnome 3 Error : "Oh no! Something has gone wrong." with gnome-fallback
Login into your account in text terminal by ctrl+alt+f<1-6>
run following line
$ gsettings set org.gnome.desktop.session session-name gnome-fallback
Then try login from gui using GNOME Desktop Environment...
Monday, 10 February 2014
Nginx Error - 413 Request Entity Too Large
Hi if you get 413 Request Entity Too Large error in Nginx Serve to avoid this error some people suggest increase post size in php.ini ie
post_max_size = 25M
But even changing this value error still occurring means you need to change nginx configuration file.
add client_max_body_size 20M to nginx configuration file of server....
Thursday, 23 January 2014
Solution : Blogger Remove Site name from Page Title
Hi, To remove site or blog name from the every title of blogger Page, you need to edit HTML Template of your blog
Goto
Template -> Edit HTML
Now find
<title><data:blog.pageTitle/></title>
And replace above line with
<b:if cond='data:blog.pageType == "index"'>
<tit...
Solution : Nginx Wordpress Pretty Permalinks Problem
To enable Pretty Permalinks feature in nginx simply modify the nginx conf file of wordpress site add following line
try_files $uri $uri/ /index.php?$args;
check example where to add above line
Example:
file: wordpress.conf
.....................
.......................
location / {
root ...
Thursday, 2 January 2014
Solution to record your Desktop Using FFMPEG in linux
Install ffmpeg packages in linux ( fedora, ubuntu and etc ) using installers (yum,apt-get and etc)
use the following command to record the Desktop :
ffmpeg -r 30 -s 1280x720 -f x11grab -i :0.0 -vcodec msmpeg4v2 -qscale 1 out.avi
But when we give resolution 1280x720 it will only take that part of your Desktop ( or some...
Subscribe to:
Posts (Atom)
Here We Write The Problems we face at different situations and Solutions to those problems.