I Dont use this account Anymore why is it still here
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to get reply-feature?If Discussions is ticked, then just underneath the text box where you write your post, there should be a seperate section called “Discussions”?
Forum: Fixing WordPress
In reply to: What is this in my config.phpNo idea then – I’m surprised to here you have 2000 lines in your wp-config.php when there should really only be about 90 or so.
Try reuploading your wp-config.php file (or rather, saving a copy and renaming your wp-config.sample.php) – remember to put your database settings in there.
Forum: Fixing WordPress
In reply to: How to get reply-feature?When creating / editing the post or pgae, top right, Screen Options -> ensure Discussions is ticked. Under Discussion, there should be two options “Allow Comments” and “Allow Trackbacks and pingbacks” on this page.
I am assuming by the way you are using WordPress 3.2.1
Forum: Fixing WordPress
In reply to: What is this in my config.phpYou are not referring to the wp-config.php file are you? If not, where is this config.php file?
Forum: Fixing WordPress
In reply to: How to show all posts of an authorI’ve been trying to work this out on a project I’m doing at the moment. I’ve been looking for a widget that allows the user to view posts only by a particular author. I am aware that clicking on the authors name on a particular blog does exactly this, but the average user I’ve encountered can not work this out.
Therfore, for the time being, I’ve had to create categories with the authors name, and use the standard view posts by category widget.
Kinda revolving around this : https://codex.www.ads-software.com/Function_Reference/get_the_author
Forum: Fixing WordPress
In reply to: 404 Not FoundHave you tried turning permalinks off and see if it works?
Forum: Themes and Templates
In reply to: Just can't change page background colourOk ??
Forum: Themes and Templates
In reply to: Just can't change page background colourI used Firebug and changed the following:
background: #111 url(images/bg.jpg) repeat-y center top;
to
background: #FFF;
and it worked fine for me. Don’t know, but there may be another stylesheet overwriting it, but I’m not seeing it.
Try it again and let me know once you’ev changed it – don’t change it back though ??
Forum: Themes and Templates
In reply to: Just can't change page background colourI’ve just logged onto your site and your body style tag is still:
body {
background: #111 url(images/bg.jpg) repeat-y center top;
color: #BBB;
font: normal 62.5% “Lucida Sans Unicode”,sans-serif;
}Have you made the changes in WordPress admin (Appearance -> Editor), and if so, did you click “Update File” once you made the changes? Have you downloaded the css file, made changes and not uploaded it? Have you edited the right css file if there is more than one? Have you changed the css file of the active theme?
Looking at your copy and paste up above, looks like you’ve got the right file, but the changes haven’t been made….
Forum: Themes and Templates
In reply to: Just can't change page background colourNo worries ?? in fact, I meant just the body tag.
Where it says:
body {
background: #111 url(images/bg.jpg) repeat-y center top;
color: #BBB;
font: normal 62.5% “Lucida Sans Unicode”,sans-serif;
}Change everything after background to simply #FFF and you should be good to go.
Should look like this:
body {
background: #FFF;
color: #BBB;
font: normal 62.5% “Lucida Sans Unicode”,sans-serif;
}Forum: Themes and Templates
In reply to: Just can't change page background colourLooks to be a repeated background image attached to ‘body, input, textarea’ in your style sheet (style.css). Take that out you should be good to go.
Forum: Fixing WordPress
In reply to: Internal Server ErrorThis sounds like a problem with your host and not with WordPress, have you tried contacting them?
Forum: Installing WordPress
In reply to: I get constantly "error establishing database cnnectionHave you checked that you have the right hostname, username and password in your wp-config.php file?
Have a look at this: https://en.forums.wordpress.com/topic/error-establishing-a-database-connection-1
Forum: Fixing WordPress
In reply to: Fatal Error issueDrop and Drag should be fine so long as your overwriting what’s there.
Could try using the latest version of WordPress, 3.2.1. Perhaps the plugin upgrade broke your site because you were using an old version of WordPress, but that’s only a guess.
Forum: Fixing WordPress
In reply to: Now what is the problemAnd you’ve got the right hostname, username and password in your wp-config.php file?