rustindy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Download Spring Fairy themeThe graphic of the fairy was unfortunately *not* a GPL picture – it was from an online stock photo library (I forget which one, but it’s linked in the comments on Alex King’s blog somewhere) and is not allowed to be distributed in the way that it was. But if you want to see it in action, check http://lisa.innereyes.com 😉
As I understood the license for the picture, it is not allowed to be distributed, but it is allowed to be used for a blog. If anyone finds the link to the library it came from and reads legal better than I do, feel free to double-check that.
Forum: Fixing WordPress
In reply to: How often does WP check my POP3 server for email posting?WP doesn’t automatically check for email at all. In order for blog-by-email to work, you’ll either need to setup a cron job to call the
wp-mail.phpfile every so often, or (if your mail server supports it) set your mail server to runwp-mail.phpwhenever a new email is received. That’s how mine is setup (the 2nd option) and it works fine 🙂Forum: Themes and Templates
In reply to: Sidebar issuesoh yea, borders too (sorry, forgot about that) 🙁
Forum: Themes and Templates
In reply to: Sidebar issuesIE adds margins and padding to the width of a box, but they’re supposed to be included. So if you have 530px of content/menu width and more than 5px of margin AND padding per side in total, it’ll be broken in IE. At least, I think that’s how that works….
To be honest, I’ve gotten in the habit of assigning 0 margins and padding to all block elements with very rare exceptions. Saves me a LOT of headaches 🙂 Then I can just put a margin/padding on elements that don’t get a specific width (like
pandh2and whatnot) and viola – no more box-model hacking 🙂Forum: Requests and Feedback
In reply to: More Intergration & Less CodeWell, normally you shouldn’t have to change *any* of the core WP files, so most people wouldn’t have that complaint. And the few that do need to change core files probably know what they’re doing and won’t have that complaint. WP is pretty well organized, internally. There are only 4 folders with required files in them (besides “
/“). Seems straightforward enough, given their names.As for the CSS file, blame the theme/template/style author, not WP. The stylesheets can be as simple or complex as the person creating them desires.
To change the colours of the links in the sidebar, start by finding the
#sidebarID in the stylesheet. Then look for#sidebar Ain there. If that doesn’t exist, create it and assign a colour to it. You might need to mess with the anchor pseudo-classes to make it work though:#sidebar A:active, #sidebar A:visited, #sidebar A:link
{
color: #003366;
}
#sidebar A:hover
{
color: #0033da;
}Forum: Themes and Templates
In reply to: Sidebar issuesIE has issues with CSS to say the least. Chances are you’re a victim of it’s box-model boobery. Bunnygirl’s suggestion would probably work if you were being hit with the 3-pixel-jog bug, but if that didn’t work, you might need to go through all the margins and paddings (at least the content and sidebar ones) and make sure that either they’re cross-browser compatible, or use the various hacks to give different values to different versions of IE.
Yes, it’s a pain in the butt to have to do, but since MS has no apparent desire to support the same standards that every other browser-maker is supporting, hacks are the name of the game.
Forum: Fixing WordPress
In reply to: WordPress added Firewall?Your ISP is dumb. Nothing you do in WordPress will affect your FTP access to the folders. Simply put, it *can’t* happen. It sounds like they messed something up on their end.
Forum: Installing WordPress
In reply to: Windows Server IssueRe-upload the
index.phpfile from the original WordPress archive on this site and try it. If it still doesn’t work, start removing plugins until it does. If it starts working, then the last plugin you removed has a blank line in it that needs to be fixed.Any PHP code should start with
<?phpnot just<?– you never know when something’s going to change and the short-style tag will break.Forum: Themes and Templates
In reply to: Designers for cash?Anyone who knows what OSS is should also know the differences between OSS and free, so (c) isn’t too much of a concern – generally speaking, for the most part, etc.
(b) is definitely something to consider, but there are always situations where someone simply does not have the time and/or ability to do their own theme. Case in point – I can’t draw to save my life, but I have good eye for layout and colour, so I’m creating a theme. It’s taking forever because I can’t draw, but I know exactly what I want to see – just takes me a while to get there. If I had $50 or $100 to pay someone to develop the layout I want so it looks like it’s meant to look the way it looks, I’d be happy 🙂
(a) yes and no. There is currently no in-depth FAQ to my knowledge, and I do see *many* of the same questions being asked over and over again. If someone with a couple hours a day to spend on it for a week or so would start one in the Codex, I suspect it would quickly be linked to from the Support page here as a “first-stop” resource for people with problems or questions. At the same time, with regards to Themes, there is *plenty* of documentation on how to build them and tons of examples of what you can do with them. Education is always the first choice of the intelligentia.
Forum: Themes and Templates
In reply to: Can I hire a desginer to do my theme for me?Jinsan, if you think Root’s short comment to you was “ballistic”, then you have got a HUGE surprise or 40 waiting for you later in life. I don’t think Root’s the one who needs to “get a grip” here 😉 Cheer up, you’ll live longer.
Forum: Installing WordPress
In reply to: Invalid argument error using IIS6, MySQL 4.1.10 and PHP 4.3.10From the MySQL 4.1 documentation:
Tell the server to use the older password hashing algorithm:
1. Start mysqld with the--old-passwordsoption (this can also be set in the MySQLINIfile)
2. Assign an old-format password to each account that has had its password updated to the longer 4.1 format. You can identify these accounts with the following query:
mysql> SELECT Host, User, Password FROM mysql.user WHERE LENGTH(Password) > 16;
For each account record displayed by the query, use the Host and User values and assign a password using the OLD_PASSWORD() function and either SET PASSWORD or UPDATE, as described here:
mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd') WHERE User = 'some_user';
mysql> FLUSH PRIVILEGES;So basically, add the
-old-passwordsoption to the MySQLinifile, then use the bottom two queries to change your existing WordPress database login from the new password encryption to the old password encryption. Then run the WP installation again so it can create the proper tables with the proper rights.The link to the above information is at: http://dev.mysql.com/doc/mysql/en/old-client.html
Forum: Installing WordPress
In reply to: Invalid argument error using IIS6, MySQL 4.1.10 and PHP 4.3.10Oh, the Dashboard can take some time on any connection (it usually takes 2 to 5 seconds on mine) because it is trying to display content from other blogs, not just information from your own.
Forum: Installing WordPress
In reply to: Invalid argument error using IIS6, MySQL 4.1.10 and PHP 4.3.10As I’ve noted on several occasions in the past (including a response earlier today to you), PHP4.3 and MySQL4.1 dislike each other because of the new authentication scheme in MySQL 4.1. The only workaround is to set MySQL4.1 into the lower security mode so it’s compatible with clients (like PHP4.x) that use the older authentication library.
Or upgrade to PHP5 – WordPress works fine with it, and it works fine with MySQL4.1.
Forum: Everything else WordPress
In reply to: $ for helping install WP on IIS6Your main problem is probably two-fold.
First, PHP4.x does not like MySQL 4.1’s authentication, so it will not work unless you put MySQL 4.1 into authentication compatibility mode or or upgrade to PHP5.
Second, I’m not entirely sure that PHP4.x is 100% compatible with IIS6 on Windows 2003 – I remember reading something about that but I don’t remember quite what. Again, consider moving to PHP5 unless you actually require 4.3 for something.
Forum: Themes and Templates
In reply to: Upgrade Finished, But Still Need HelpNo problem, glad it’s working for you 🙂 Gonna post a link?