Showing posts with label Wordpress. Show all posts
Showing posts with label Wordpress. Show all posts

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 
Read More

Thursday, 23 January 2014

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   /var/www/html/wordpress;
        index  index.php index.html index.htm;
try_files $uri $uri/ /index.php?$args;
    ...
    .....

 }
................
................
Read More

Wednesday, 28 August 2013

Solution: Install/Update Wordpress plugins without providing FTP access

Hi if you don't have FTP access to your wordpress server yow follow below steps to Install/Update Wordpress plugins from wordpress admin panel

step1 : Change "wp-content" folder permissions to 777

sudo chmod -R 777 wp-content

step2In "wp-config.php" file add define('FS_METHOD', 'direct');

example :
......
......
/** MySQL hostname */
define('DB_HOST', 'localhost');

/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');

/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');

define('FS_METHOD', 'direct');

.........
.........
Read More
Here We Write The Problems we face at different situations and Solutions to those problems.