iand
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Multiple blogs single databaseAs this doesn’t contain wp-admin, uploaded wp-admin from the 2.0 install package
It should, and just checked the 2.0.1.zip and it is there. Is probably a good idea to download all the files again first.
Forum: Everything else WordPress
In reply to: Transfering to another hostSee the codex: – Moving_to_a_New_Server and Podz’ guide for full instructions. Make sure back up everything first, and post more if you are still unsure.
Forum: Fixing WordPress
In reply to: Writing New Posts, regarding editing HTML sourceA couple of thoughts:
1. Dump the WYSIWYG editor if you have not already (bottom left on your user page), in favour of the quicktags.
2. Track down and install the Text Control plugin. Works for me on 2.0.1 and has a selection of options, one of which might do what you want.Forum: Fixing WordPress
In reply to: mySQL problem (local machine – mac os X)Try this to reset your password. I had a few troubles with with the password and that fixed it (though once i had to frag the whole MySQL install and start from scratch….)..
Forum: Fixing WordPress
In reply to: Using WordPress to send Email Spamfor one thing, upgrade it to 1.5.2. then to version 2.0.1
Both 1.5.2 and 2.0.1 have no known security holes, the 2.0.1 upgrade is optional if you want the features (and 2.0 only plugins).
Forum: Plugins
In reply to: Spam Karma 2 helpSee this thread and the one linked within it:
http://wordpress.org/support/topic/60353?replies=2Forum: Installing WordPress
In reply to: PHP parsing my site url has 0xTry following the suggestions in this thread. It is ‘number’x ‘number’ that WP is reformatting:
http://wordpress.org/support/topic/57804Forum: Fixing WordPress
In reply to: Moderation of CommentsSK should give a free pass to any comment that makes the checks. If you want to use SK2 and enforce WP’s moderation options you can use a plugin from here . Not sure why your installs are working differently, but this should do what you are after.
Forum: Fixing WordPress
In reply to: search to include pagesSearching pages can be done via a plugin:
http://wordpress.org/support/topic/23302?replies=25
Not sure about searching links though, maybe there is a way to implement google to do that.Forum: Fixing WordPress
In reply to: Import QuestionA quick search:
http://wordpress.org/support/topic/35177?replies=19
http://wordpress.org/support/topic/41607?replies=8
http://www.brucehartman.net/2005/07/09/merging-wordpress/
Make sure you read everything and backup everything (at least twice). Personally I would go with the export to MT and reimport trick. If possible I suggest either setting up a trial blog on your domain or local machine to test first.Forum: Plugins
In reply to: live comment systemI think there is/was one at redalt though if you want to search further ‘AJAX comments‘ is probably a good starting point (or there is disecting the K2 theme to see how it works).
Forum: Installing WordPress
In reply to: localhost / can’t connectIf you are on 10.4.4 you might have run into this:
http://wordpress.org/support/topic/55902
Also, I remember running into some problems setting up and connecting to mysql and did
mysql> SELECT Host, User, Password FROM mysql.userand set the password again as outlined here, which seemed to work.
-> WHERE LENGTH(Password) > 16;
http://dev.mysql.com/doc/refman/5.0/en/old-client.htmlYou will need to use an FTP program. Podz has a handy guide to using one here..
Forum: Your WordPress
In reply to: A Luxury Travel BlogI did forget to mention that part sorry. Will be
index.php(in your theme folder) orhome.phpfor ads on the front page, and then depending on how your theme is written you might havesearch.phpetc.. which you will also need to edit if you want ads there.(index.phpwould be the best place to start I think).Forum: Your WordPress
In reply to: A Luxury Travel BlogThis is not completely tested but I think it should work, make sure you backup first….
Above the line the starts the loop<?php if (have_posts()) : while [...]
paste this:
<?php $adcount=1; ?>Then, within the loop add this where you want your adverts to appear:
<?php if($adcount%2) { ?>
<div class="your ad div">
Your ad code here
</div>
<?php } ?>
<?php $adcount++; ?>Hopefully that will put ads on posts 1, 3, 5 etc.. to put them on 2, 4, 6 etc use
<?php if(!($adcount%2)) { ?>
instead.To limit the number of posts that show adds I would think the code would be
<?php if(($adcount%2) && ($adcount<=6)) { ?>
where 6 is twice the number of ads that would appear (untested).