noobie
Forum Replies Created
-
Hi dwinden,
No not multi-site, 3 instances of WP (two in sub folders) each with it’s own installation of WP security.
Having read through everything I can find on the subject here I was wondering if it might be a sign of a brute force attack as the administrator is asked to log in again after about 30 minutes and then blocked from all 3 sites… I’ve changed his log in name this morning – perhaps that might help?
Just like to say thank you Ayron for posting this solution – it worked perfectly.
You’re a life-saver, thanks again.
Forum: Plugins
In reply to: [Barclay ePDQ payment gateway for wordpress] Transaction verification errorAny news on this as I’m also getting this issue. SHA-in and SHA-out match fine.
Forum: Fixing WordPress
In reply to: Caption problem in 3.0Hi Esmi
Thanks for responding.
I’ve tried all of those except for fiddling with the memory – there’s only about 8 pages and one post so surely can’t be that can it? This is using a host that I use a lot for WP sites – most of which are a lot bigger. No unusual plugins that I haven’t used before either.
Forum: Fixing WordPress
In reply to: Force posts with certain cat to be firstThanks for that – I’ll give it a go!
Forum: Fixing WordPress
In reply to: Force posts with certain cat to be firstI know, I’m not explaining it well!
Ok so the site area I’m talking about is pretty much like a directory with lots of categories of company for instance – “Restaurants in London”. And on the Restaurants in London category page I’ve obviously got all posts with that category listed along with their content.
The complication is that I have a further category “Premium Ad” (not a child category). I would like all category pages (e.g. “restaurants in London” or “Restaurants in Birmingham”) to not only list those restaurants within it’s category BUT to list first those restaurants that ALSO have the Premium Ad category so those will be at the top of the list.
Obviously listing the posts for the current category is no problem. What I can’t do is come up with a function above that which would list the posts that ALSO have the category “premium-ad”. The closest I can get is to list all posts with the category Premium Ad but I can’t work out how to make it list all posts in current category & category=”premium-ad” without hard-coding the current category (which I can’t do because the template is for use for all categories).
<?php if (have_posts()) : ?> <?php $premiumposts = get_posts('category=63'); foreach($premiumposts as $post) : setup_postdata($post); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php endforeach; ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <!-- end entry -->Forum: Fixing WordPress
In reply to: Force posts with certain cat to be firstAh just noticed that you’ve got both categories hard-coded. Although I can hard-code the premium category I don’t want to hard-code the other one as I have multiple sections and likely to have more created by the person who will be using it.
Thanks anyway though!
Forum: Fixing WordPress
In reply to: Force posts with certain cat to be firstThanks for this dnusim – I’ll give it a go and report back!
Forum: Themes and Templates
In reply to: Single Post problemsAh that did it! Thanks rudolf45!
I think I saw that post in passing but didn’t think it could be the solution as it had all worked fine up to now (just upgraded to 2.1).
Thanks again.
Forum: Themes and Templates
In reply to: Single Post problemsYes – still got the problem.
Forum: Themes and Templates
In reply to: Single Post problemsHi
Yes I gave that a go but it’s still showing multiple posts (that’s when I tried copying the default single.php over my own one and also even when I pasted it over the index.php!).
Forum: Installing WordPress
In reply to: Page structureAhh! I had no idea you could add to quicktags!
Thank you very much for the quick response – this will save me loads of problems.
Forum: Installing WordPress
In reply to: Page V Post CMS questionThose links are absolutely brilliant! Just what I’d been trawling through Google trying to find!
Thank you very much skippy – you’re a lifesaver!
Edit: I had actually found the Semilogic site before but wanted to figure out how to structure a WP CMS site by myself before deciding whether or not to pay up for Semilogic version. The first link was perfect – sorted it all out now (hopefully) -thanks again.