ifelse
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Is it safe yet….The best way for you to find out is to install it into a test directory and have a play around.
Be sure to change the value for $table_prefix in wp-config.php for this test installation.
Forum: Fixing WordPress
In reply to: Blog layout crashed.Edit this post.
It’s the object tag (i.e. the link to the youtube movie) that’s killing things. If you remove it, it should be fine.Forum: Everything else WordPress
In reply to: flickr and racismThis is a WP support forum and not a place to vent about other services and issues; such posts really belongs on your own blog. Hence, I’m closing this thread.
Also, please don’t multiple post.
Forum: Fixing WordPress
In reply to: After upgrading from 1.5 > 2 blog is all white, good grief!Try changing the theme back to the default; it may be that your last theme (under 1.5) hasn’t been uploaded yet.
Forum: Everything else WordPress
In reply to: Adsense Ads On Front Page Content Ignored.This is an Google/adsense issue, not a WP one. Google attempts to find the most relevent ad based on the content on the page i.e. it’s not the adsense advertisers who chooses the ads but Google.
Forum: Themes and Templates
In reply to: Per user themeThere’s the WP theme switcher plugin which allows users to pick and choose their own preferred theme.
Forum: Fixing WordPress
In reply to: Unable to dislpay text next to the pictureYou can do this via CSS e.g. try adding the following to your style.css file:
.post img {
float:left;
margin:6px;
}
.postmetadata{
clear:both;
}Forum: Everything else WordPress
In reply to: 6250 posts, 113 500 comments… sounds ok for WP you think ?Retrieving data is what DBMS are good (as long as the queries are sensible).
I’ve recall seeing WP used for several large sites on the scale (and beyond) of what you’ve given. Unfortunately, I was unable to find them in a cursory search.
However, I was able to find out that BinaryBonsai hit 14000 comments mid-2005 and from that, discovered that a few K2 powered sites such as gavinsblog.com (2k posts, 12k comments) and pandagon.net (1.8k posts, 40k comments) are similarly sized. I’d also imagine that Matt’s site (Photomatt) would be similarly sized.
Hence, whilst not authoritative, it would suggest that WP should scale (at least as much as the server does as well). Not sure if that helps…
Forum: Everything else WordPress
In reply to: 6250 posts, 113 500 comments… sounds ok for WP you think ?Why not set up a sandbox environment, load the data in and test it there?
Forum: Fixing WordPress
In reply to: resetting passwords: works for every user but adminAs far as I know, admin isn’t a special case; it’s just the same as any other user so the same process should work.
Have you tried logging in from a different machine/browser to rule out any cache effects?
Forum: Fixing WordPress
In reply to: Image Uploading“(1) I don’t see the Upload Tab (is it there in WP2.0?)”
There’s now no seperate upload tab/section. To upload a picture, use the inline upload area on the write post screen.
“(2) The Options/Misc option was not showing the options to set the Upload folder.”
As mentioned above, uploads are now attached to a post rather than being seperate entities.
“(3) The upload path does not seem to care for this path. In post-edit interface the image expects a path wp-content/uploads (and it works too) but I want to use a custom path that I could set as in 1.5”
This is now no longer supported. Uploaded files are now stored in wp-content/uploads/[YEAR]/[MONTH]/
Forum: Fixing WordPress
In reply to: Empty messagesCan you provide some additional information such as an URL and clarification on how your subscribers are receiving the messages (i.e. via email or via a RSS feed)?
Forum: Themes and Templates
In reply to: Calling All WordPress Masters – if statementsJust use something like the following in The_Loop:
<?php
//get custom value
$custom_option = get_post_meta($post->ID, 'your_custom_field', true);
//if conditions
if ($custom_option == 'SOME_VALUE'){
?>
<!-- HTML STUFF -->
<?php } else { ?>
<!-- Alternative HTML STUFF -->
<?php } ?>I use a simple form of this for changing the ‘add a comment’ text.
Forum: Everything else WordPress
In reply to: WordPress Defacement by AriP_ReCACould you provide more information such as which version of WP was being used i.e. was it the latest version?
The other thing to note is that, in most cases, WP is rarely the source point of attack; it’s often insecure passwords, other installed software vulnerabilities etc…
Be sure to change all your passwords. Also, notify your hosting company as soon as you can. They’ll be able to investigate further by examining their logfiles.
Forum: Themes and Templates
In reply to: Amazing new themeYou can’t. It’s a copyrighted design intended for their own private use only.