adamh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Automatic updates of core and plugins failing: too many redirects@becomingmom who are you hosting with? Your screenshot shows that you’re using quite an outdated version of WP.
I’m having the same issue with WP3.9, although could be completely unrelated obviously!
Forum: Fixing WordPress
In reply to: problems importing MySQL databaseI’ve just had the same error when trying to amend the structure of a table on a local mysql installation.
A restart fixed the problem, although that’s easier to do locally. Contact your host and ask them to restart their db server.
Forum: Fixing WordPress
In reply to: comment option not showing upIt might be that that theme doesn’t support comments for whatever reason. Have you tried the default theme?
Forum: Fixing WordPress
In reply to: Commenting from Firefox failsI’d try turning off permalinks, and then deactivating all plugins.
Forum: Fixing WordPress
In reply to: Commenting from Firefox failsHave you tried with the default theme?
There shouldn’t have been an e in there
define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST'] . '/wordpress');
If it’s not working, maybe try reading the codex?
Forum: Fixing WordPress
In reply to: get_avater $default1. use get_bloginfo
<img src="<?php get_bloginfo('stylesheet_directory'); ?>/img/someimage.jpg" alt="alt text here" />
2. not sure, sorry
3. just wrap the whole gravatar call in a link
<a href="#" title="Link"><?php echo get_avatar($id_or_email, 50, $default_avatar ); ?></a>
Hope that helps
adam
In wp-config.php, add the following line:
define('WP_HOME', 'https://e' . $_SERVER['HTTP_HOST'] . '/wordpress');
Forum: Fixing WordPress
In reply to: Upgraded to 2.8 now WordPress.com stats do not work.Have you got the API key entered correctly?
Forum: Fixing WordPress
In reply to: question??The third link is there in div.banners, but there is no image in the link – just an empty span.
Forum: Fixing WordPress
In reply to: Media Uploader Buttons Not Working 2.8 – 2.8.1Might be to do with wordpress concatenating javascript files – the link below mentions adding a constant to avoid this:
https://www.ads-software.com/support/topic/287699?replies=2
Maybe try adding it in index.php or your theme functions.php
Forum: Fixing WordPress
In reply to: how to see who has subscribed to RSS feedUse a feed management service such as feedburner.google.com
Forum: Fixing WordPress
In reply to: Subpages don’t appear with new WPHave you cleared your browser cache? Tried another browser?
Forum: Fixing WordPress
In reply to: question??It’ll be in the footer.php file in your active theme.