Erik
Forum Replies Created
-
Forum: Networking WordPress
In reply to: /blogname/files/ = 404I’m having the same thing happen to me with my WordPress MultiSite Install. But I’m using domain masking so the URL that the Media library is giving me is domain.com/files/2011/07 which does exist on the sever but if you try to view it from the browser it returns a 404 page. I’ve even tried going to the direct location for the WordPress domain (http://domain.com/wp-content/blogs.dir/12/files/2011/07/favicon.png) and that returns a 404 page and that’s the direct route on the server and all of those folders exist.
So I’m really at a lost. Anyone have any ideas?
Forum: Fixing WordPress
In reply to: Using Plugin with Custom Post TypesSo I’m taking it that using plug-ins with custom post types in impossible?
Forum: Themes and Templates
In reply to: Author Post LinkFor whatever reason the code wasn’t showing up correctly, so I removed the <> brackets and it seem to show okay, so I know the code syntax is wrong.
The the_author_post_link command creates it own link and anchor tags. So just the anchor tag looks like this: (simplify)
<a href="<a href="/author/user">user</a>"><image></a>So I just want a way to dynamically creates the link to the author page so I can make the gravatar a clickable link.
Forum: Fixing WordPress
In reply to: Showing Category TitleThanks so much. Worked perfectly.
Forum: Fixing WordPress
In reply to: wp_get_archives and Conditional TagsI have the archives problem figured out.
Any thoughts on what the Conditional Tag won’t work with the blog page?
Forum: Fixing WordPress
In reply to: wp_get_archives and Conditional TagsI’m not that great at PHP, I understand the basics and can code most of a WordPress theme, however I placed that code into my functions file and now no post are showing up. Could I get a little help debugging it?
Forum: Fixing WordPress
In reply to: wp_get_archives and Conditional TagsOkay so would I place that in the functions file and then call <?php getartchives_where(); ?> ?
Forum: Plugins
In reply to: [Plugin: Lightbox 2] Compatible with 2.8?I’ve tried everything, installed and uninstalled what seems like almost every lightbox plugin and nothing seems to work. I’m using EP 2.8 and here is the page I’m working on http://www.erikakers.com/portfolio again, nothing works.
Anyone else having any problems like this?
Forum: Fixing WordPress
In reply to: Sub Sub Pages – Showing Main Parent DynamicallyNothing on this?
Forum: Fixing WordPress
In reply to: Funcation File ProblemsBut it’s code that I’ve taken out of one functions file and pasted it into my functions file. And I make no changes to the code.
Forum: Fixing WordPress
In reply to: Funcation File ProblemsNo one else has any problems like this?
Forum: Fixing WordPress
In reply to: 2.7 RSS Feed ProblemsOkay I believe I have found the problem. I add this to my functions file to put a delay in the RSS feed from when I publish a post to when it’s published via RSS
function pulish_later_on_feed($where) { global $wpdb; if ( is_feed() ) { // timestamp in WP-format $now = gmdate('Y-m-d H:i:s'); // value for wait; + device $wait = '30'; // integer // http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_timestampdiff $device = 'MINUTE'; //MINUTE, HOUR, DAY, WEEK, MONTH, YEAR // add SQL-sytax to default $where $where .= " AND TIMESTAMPDIFF($device, $wpdb->posts.post_date_gmt, '$now') > $wait "; } return $where; } add_filter('posts_where', 'pulish_later_on_feed');I removed that and everything seem to work again, I just remember that I added that after the last post. Has any one else seen a problem like this? Is there is some way to not post the feed right away?
Forum: Fixing WordPress
In reply to: 2.7 RSS Feed ProblemsThat plug in fixed the error, but now the original problem is back if you go to my Feed address http://www.erikakers.com/feed is says there is nothing found, thus I still don’t have any RSS feed.
Forum: Fixing WordPress
In reply to: 2.7 RSS Feed ProblemsHere is the url to the feed address: http://www.erikakers.com/feed
I just check that and before now it was a Page Not Found error and not the parsing error that is now showing up.
Forum: Fixing WordPress
In reply to: Archives Links Not WorkingOkay, the file I’m using is called archive.php and it’s the same file as single.php, but the_content has been changed to the_excerpt. But till if you click on the monthly archive links it just goes back to the index page.
Anything else it could be?