Ctrl-C
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Problem Upgrading to WordPress 3.2.1You can easily just replace all the files with ones from the latest WordPress. It will fully update WP.
Forum: Installing WordPress
In reply to: How to locate WP versionRight on the main dashboard page here:
https://i52.tinypic.com/2vct4li.jpgForum: Installing WordPress
In reply to: Only see previous html siteYou need to change that file:
https://12barblues.ca/.htaccess
Oh, as far as I can see you made it right.
Forum: Installing WordPress
In reply to: Only see previous html siteWell, what .htaccess did you cleared? The one that can be found at
https://12barblues.ca/.htaccess
?Forum: Installing WordPress
In reply to: Only see previous html siteClear your .htaccess file in the root directory.
Forum: Installing WordPress
In reply to: no sufficient premssions after logon the admin panelCheck permissions on your host: files should be set to 644 and directories to 755.
Forum: Fixing WordPress
In reply to: functions.php corrupted siteCould you show complete code of
functions.php
file?Forum: Installing WordPress
In reply to: Only see previous html siteYou moved your WP installation from different domain or what?
Forum: Installing WordPress
In reply to: Moved Blog to New Host, Won't Load SiteYou need to get database from the old site, then import it on your new site.
Forum: Fixing WordPress
In reply to: Error in Installing wordpress of subdomainsHello,
You need to check your MySQL connection settings. Seems like either MySQL username or it’s password isn’t correct.
Forum: Installing WordPress
In reply to: doesn't look like a web pageWhere does the system get the ip from?
I guess it’s your dedicated IP that your PC has in the global Internet.
How does it work out the ‘href’, ie ‘stylesheet_url’ part?
It’s built-in WordPress function that gets full url to theme’s stylesheet. You can edit that code in
header.php
file located atwp-content/themes/twentyten
Forum: Fixing WordPress
In reply to: How to remove the built in "blog" categoryWhich theme are you using? If it supports custom menu, you can set up one in Appearance → Menus.
Forum: Fixing WordPress
In reply to: [Frontpage-Slideshow] Link to imageНемного не понял вопроса на английском: нужно получить ссылку на изображение, которое отображается в слайдшоу?
Could you please attach link to archive with theme you’re using?
Also, can an image from a url be set as the featured image for a post?
It couldn’t (fix me anyone if there’s 3-rd party solution).
Forum: Fixing WordPress
In reply to: Issues with images on the postThat’s happening because of relative, not absolute URL to your header image:
<center><img src="wp-content/uploads/WEBASSETS/Header1.gif" alt="Above Header" /></center>
Change it in file
header.php
(orindex.php
maybe) located atwp-content/themes/Easel/
to<center><img src="/wp-content/uploads/WEBASSETS/Header1.gif" /></center>
.By the way, it’s not the best way to use .gif extension for static image. You better convert it to .jpg.