rustindy
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WP versus MTYup, got about 15 or so WP blogs running on my server from 5 different domains (one of them has 10 subdomains, each with a WP install, all using the same DB). That part’s easy.
Never tried migrating a layout from MT to WP though…
Forum: Themes and Templates
In reply to: Upgrade Finished, But Still Need HelpThe
index.phpfile at the root folder is only 95 bytes long, and should show as being 5 lines long in a text editor (or 1 really long line in Notepad because it sucks). If you’ve uploaded that file and verified that it remains 95 bytes long on the server, then somewhere in some file is a blank line that shouldn’t be there.Usually it’s a plugin file that causes that problem. Try removing them one by one and see if it starts working. If it does, then the last plugin you removed has a blank line in it at the top or bottom that needs to be deleted before it’ll work properly.
Forum: Themes and Templates
In reply to: Upgrade Finished, But Still Need HelpYou uploaded the
index.phpfile for the root directory (which is only going to be 5 or 6 lines long) or some otherindex.phpfile? There are several in the installation…Forum: Themes and Templates
In reply to: Inheritance problem (link color)Or you can go the easy route 🙂
Use the Firefox browser with the Web Developer extension installed. In the CSS menu then, you’ll see an option called “View Style Information” – click that, then hover the mouse (now a cross-hair cursor) over the bit of text that’s ticking you off to find out what classes it’s part of. Then head to your stylesheet and change what needs changing.
Remember that CSS is applied based on two main things: the order the browser gets the information (so if you’re styling H3 twice, the second one will override the first), and the specificity of the information (so since
#content pis more specific than justpin your stylesheet, it is given precedence regardless of what order the browser receives the info).Your questions aren’t dumb, but without a link to the site, it’s more difficult to help.
As for the last two questions regarding the
|character – that should be changeable in the template files. Probably inindex.phpin the theme folder.Forum: Everything else WordPress
In reply to: Dashboard appearanceJust force-refresh your admin page. What’s happening is that your browser has cached the old 1.2 stylesheet and won’t load the new one.
Forum: Fixing WordPress
In reply to: IE Display Problems OnlyIE has some badly broken CSS rendering code. It’s the evillest browser on the planet, IMHO. Firefox (and other Gecko browsers), Safari, Konqueror, etc. all have their own problems rendering CSS too, but nowhere near as many problems as IE on Windows and Mac.
Forum: Plugins
In reply to: Five plugins you can’t live withoutDr. Dave’s Spam Karma is the only one I can’t live without, though I’ve got 3 other plugs I’ve written to handle specific things on my blog. I also use Fancy Tooltips, Suggest, and wp-ContactForm cause they’re cool 🙂 There’s a few others running on my site too, but those are the ones that are the most useful to me.
Forum: Your WordPress
In reply to: design studioIE is a badly broken browser – flaky standards support and some truly evil rendering bugs make it a sort of hell for developers to code standards-compliant sites any more complex than 1 column with no margins.
Plus using it is sort of like bending over and…. well, let’s just say that because of it’s massive integration with the Windows system, it’s chock full of security holes. Using IE is a good way to catch just about every virus/trojan/backdoor there is.
Plus Firefox (and most other Gecko-based browsers like Mozilla and Konqueror) support things like built-in popup blocking, tabbed browsing – you know, stuff that’s hard to live without once you get used to it 🙂
Forum: Installing WordPress
In reply to: Tale of woe and a suggestionThe _ca one rocks 🙂
SWAnderson, just making sure about the
upgrade.phpfile. A LOT of people skip it during the upgrade. And the “IE wants to download the pages” problem is the exact result of not running that file. Try it again, just in case. It won’t hurt anything.First, I just realized you said you transferred the PHP files as binary? I’m no *nix guru, so I might be mistaken, but I thought they were text files. My FTP client transfers them as text with no issues that I’m aware of.
The issue you noted regarding your admin section is easy enough – just force your browser to refresh the page (in Firefox, hold the CTRL – or maybe it’s SHIFT – key down and hit the Reload button). What’s happening is your browser is using the 1.2 stylesheet for the admin section instead of the new 1.5 stylesheet.
Finally, if Firefox is not displaying anything at all on your page, that almost certainly means that a file somewhere (most likely a plugin file, or one of the template files) has a blank line inserted either at the very beginning or very end of it. So either check the source code for all the plugins and template files you’re using, or change to the default template (if it works, then your other template has the problem in one of it’s files), or start deactivating plugins until the problem goes away. Then edit the file(s) that seemed to be causing the problem so that
<?phpis the *very first* line, and?>is the *very last* line – no blank lines before or after them.Forum: Themes and Templates
In reply to: IE and padding/marginadd the line
margin: 0;
to theBODYsection of your CSS and see if that clears it up 🙂Forum: Themes and Templates
In reply to: Theme broken to pieces and I don’t know whyFirst, your
#insidewrapperclass has a height of 600px which is causing the large expanse of empty green space below the post.And second, the footer is outside the
#wrapperand#outerwrapperclasses. Put the footer code inside those classes (i.e. place it before the two closing/divs in your code) and it should be centered with the rest.Forum: Installing WordPress
In reply to: Tale of woe and a suggestionBecause you’ve modified the WP 1.2 files, there are a couple of extra steps to take.
Follow these instructions http://www.tamba2.org.uk/wordpress/upgrade/upgrade_ca.html to the letter and it *should* work for you (thanks to Podz for putting them together).
I have to say I have noticed a pattern with problems around here – a *LOT* of people have decided to skip running the
upgrade.phpfile. Skipping that step will cause errors like IE6 trying to download the pages, invalid argument errors, and headers already sent errors. Please DON’T forget to run/wp-admin.phpfrom your browser after you’ve copied the 1.5 files to your host. It really is an important step.Forum: Fixing WordPress
In reply to: apache 2 problem solved?Have you tried running the
upgrade.phpfile in the/wp-adminfolder? Even if you have, try running it again, just in case. That really looks like the errors you’d get if the options table is in the 1.2 format instead of the 1.5 format.Glad the other problem is solved 🙂
Forum: Fixing WordPress
In reply to: apache 2 problem solved?I’ve been running WordPress with Apache 2, PHP5 and MySQL 4.1 since the alpha stage with no problems (aside from bugs in the alphas, natch).
Peering through some of those posts, a couple of things spring to mind.
If WP is consistently sticking a
\in front of"characters, check to see if “magic_quotes” is on or off in your PHP config. I believe it’s behaviour changed between PHP4 and PHP5, so try setting to the opposite value and see if that gets fixed. PHP5 also has a PHP4 compatibility mode, but my understanding is that it’s not great and can cause it’s own problems. If you’re running PHP5, then PHP4 compatibility should be turned off.PHP4 and MySQL 4.1 don’t get along well without a little hacking on MySQL, so it’s not a recommended combination. People with login or certain installation problems might be experiencing a symptom of this configuration.
If you’re running Apache under Windows, it can run either in the
systemaccount or an account you specify. If you’ve installed Apache with it’s own Windows username (or if your host has), this might be a simple permissions problem that can be solved by elevating the Apache user’s permissions on the folder containing thehtaccessfile. Windows can also have difficulties with files that only have an extension for a name (like.htaccess), so that might be a problem if the latest updates and versions aren’t installed.Good luck 🙂
Forum: Themes and Templates
In reply to: “More” Tag Not WorkingThere is a bug in version 1.5 that prevents the
moretag from working when only 1 post is displayed on a page. As soon as you add a second post, it’ll start working again.This will be fixed in version 1.5.1.