Abinav Thakuri
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Which files do I need to make writable to upgrade?Oh…try making an ftp account from your cpanel and use a ftp client to change the permissions.if this fails..try different combinations of permissions like esmi has stated.if all this fails including esmi’s advice then you should contact your hosting server.different hosts require different settings.
Forum: Themes and Templates
In reply to: move footerlinks in Greyzedno problem buddy ??
Forum: Fixing WordPress
In reply to: Which files do I need to make writable to upgrade?change the permissions for uploads and all the folders in it to 0755 from the cpanel this time.
Forum: Fixing WordPress
In reply to: Which files do I need to make writable to upgrade?Hmmm don’t change it to 777 then i guess.It might cause security problems..If you changed the permissions from ftp try changing it from cpanel.This might be causing it.
Forum: Fixing WordPress
In reply to: Changes not updating for a few minutes – could be server settingsI think you having a cache plugin installed.If so try deactivating it and check again.
Forum: Themes and Templates
In reply to: move footerlinks in Greyzedremove or comment this code:
<div class=”blogroll-foot”>
<!– begin widgetized footer –>
<!– end widgetized footer –>
</div>
It should be below socialfooter div.
Forum: Themes and Templates
In reply to: move footerlinks in GreyzedI see you haven’t removed the blogroll div like i said the first time.It will make the gap above the footer links a lot less.I had already showed you how to do exactly what you wanted.Check my first reply.
Forum: Fixing WordPress
In reply to: Which files do I need to make writable to upgrade?Ok now change the file permissions of the uploads folder and its sub folders to 777.Try and see..
Forum: Fixing WordPress
In reply to: Which files do I need to make writable to upgrade?WordPress does create the folders by itself but i strangely didnt have them during my recent 3.1.1 installation.
Forum: Themes and Templates
In reply to: move footerlinks in GreyzedOpen your theme’s style.css file..You should find code like this:
.footerlinks {
clear: left;
font-size: 1.2em;
height: 0;
list-style: none outside none;
padding: 0 70px 30px;
text-align: center;
}change the padding value to 0 70px 15px and see if it works for you.You only need to change the last value to the right to decrease the gap below the links.Change the value according to your eyes. ??
Cheers!
Forum: Fixing WordPress
In reply to: Important Q About Backup Database!Login to your phpmyadmin…Open the database you want to backup.Now navigate to the export tab…choose zip in the option and press Go.Download the database backup file.This is the easiest way.What you did with FTP works too.Its enough to restore your site if something happens.
Forum: Fixing WordPress
In reply to: Where are the excerpts in new version?Add this to the theme’s functions.php file:
// Enable Excerpts on Pages
add_post_type_support(‘page’, ‘excerpt’);This should do it. ??
Forum: Fixing WordPress
In reply to: My site redirecting to another siteThere are some more ways.Go and check your database..Login to your phpmyadmin,navigate to the database which your wordpress site uses.Now find your wp_options table and see what the home url value is.
Forum: Fixing WordPress
In reply to: My site redirecting to another siteOk there’s nothing wrong with the .htaccess file…I think you should check out your index.php..Open it and see if you find lines like these:
* <meta http-equiv="refresh" content ="5; url=https://www.google.com"> * <head> <title>Page Auto Redirect</title> <script language="javascript" type="text/javascript"><!--window.setTimeout('window.location="https://www.google.com"; ',2000);// --></script> </head>
[Please post code snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: Which files do I need to make writable to upgrade?Nice! ?? Its a very simple error you’re getting!To get over with this,just navigate into the wp-content directory.Make a new folder called “uploads”.If you already have this folder check inside and make a folder called 2011 and another one called 04 .And if this isnt still working change the uploads folder and it’s subdirectories’ permission to 755.This should work..
Check it out and tell me if it works!