jaredquinn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Spam WordPress 2.0Are they leaving comments or trackbacks/pingbacks?
Forum: Installing WordPress
In reply to: problems with plugins on installing wp 2.0.2Can you provide details as to which plugins ceased to work? and exact error messages?
Did you de-activate all your plugins prior to upgrading?
Did you run upgrade.php?
Did you re-activate the plugins afterwards?
Did you follow the upgrade doco?Forum: Fixing WordPress
In reply to: Please Help Me With Set-Up In This WayThis is basic wordpress functionality. You should read the docs and attempt to install WordPress and configure these options (all of which are heavilly documented, and easy to follow). If you need additional help, ask specific questions here or find a freelance WordPress consultant (like myself) to do the entire setup for you.
Forum: Fixing WordPress
In reply to: Database Error when Publishing/EditingDo you have access to your mysql logs to find out why the database connection may have been lost?
Forum: Fixing WordPress
In reply to: quick htaccess questionCan you provide more info as to what you want to achieve?
“IP address” redirection is something altogether different then .htaccess – .htaccess can redirect URLs.
Forum: Installing WordPress
In reply to: Please Help! Can’t Install!If you’re in need of assistance you’d probably post more details, instead of just a link to what appears to be a fully functioning site that doesn’t use WP?
If you want, you can email me details and i’ll help out, you can find my email address in my profile.
Forum: Fixing WordPress
In reply to: Integrating certain WordPress elements into existing siteI personally find the easiest way to do this is to create a wordpress theme that mimicks your site. If this isn’t desireable read the codex pages on “The Loop”, you can add the required bits and the loop to any php page to get posts to appear.
Forum: Requests and Feedback
In reply to: Continuous problems with WordPressMy first guess at this would be something to do with the resolver and it’s configuration on the host. It sounds like it’s taking ages waiting for a nameserver to resolve something before being able to pingback or retrieve the rss for the dashboard.
Forum: Fixing WordPress
In reply to: Adding Adsense-deluxe to single.phpI don’t think ‘leaderboard’ is actually a valid PHP function, perhaps you would be better off with:
if(function_exists('adsense_deluxe_ads')) {
adsense_deluxe_ads('leaderboard');
}
To check that adsense is installed before calling your ads, if you want to check that the actual ads exist, you could try something like (note: untested):
if(function_exists('adsense_deluxe_ads')) {
$options = get_option('acmetech_adsensedeluxe');
if(isset($options['ads']['leaderboard'])) adsense_deluxe_ads('leaderboard');
}
Forum: Themes and Templates
In reply to: Any sevices out there that do wordpress template work?https://jaredquinn.info for any WP related work you need.
Forum: Fixing WordPress
In reply to: Setting up comments?You should be ready for comments out of the box.
Generally the comments box appears on the single article view, but there is no links to this from your main page on any posts.
Forum: Fixing WordPress
In reply to: Change messageIt could be changed by defining your own language file. That is probably a more “correct” approach then a plugin.
Forum: Installing WordPress
In reply to: after installation, still get “Set Up your Blog First!”Check the permissions on wp-config.php – it should be in the same directory as index.php.
Forum: Fixing WordPress
In reply to: Change messageHave a look in wp-includes/template-functions-post.php
Forum: Installing WordPress
In reply to: Upgrade ERROR!Have a look at…