macbros
Forum Replies Created
-
Forum: Plugins
In reply to: Page ID instead of permalinks in statsIm receiving the same problems. Anybody find a good solution yet?
Forum: Plugins
In reply to: WP-Stats Top Posts Tracking IssueAHHH! Somebody that has the same issue as I am. All I get is random numbers also. Possibly Post ID’s, but thats all I get. No post names with links to the post.
Want to get this fixed but don’t know how. Have you found a solution yet?
Forum: Plugins
In reply to: Top Posts and pages turned in ri just numbersIt seems to have started this after I enabled permalinks.
Forum: Fixing WordPress
In reply to: File is empty. Please upload something more substantial.Grrr! I’m looking through a lot of problems with the same problem I”M having, but no solution.
Forum: Fixing WordPress
In reply to: 2.3.1 Comment NotificationReally? so you created [email protected] BEFORE you deleted that line and you still don’t get e-mail notifications?
That’s odd. I have three blogs and all three work perfectly now.
Forum: Fixing WordPress
In reply to: Comment Notification E-Mail ProblemDamn! Same problem.
Forum: Fixing WordPress
In reply to: Update links globally in all postsI’m actually in the process of x-fering my site to another host and URL.
What I’m doing is using find and replace with Dreamweaver (Any Text Editor should work) on the Exported XML file that I’m going to import to the new site.
Having almost 4 years of posts, this is proving to be quite the long process, but it’s a billion times shorter than manually editing every link. ??Forum: Installing WordPress
In reply to: WP 2.1.1 does not trackback.Seems the Trackbacks went out eventually. They sat on my end the whole day before I noticed them on the sites I TB’d them to.
So I guess it’s a lag issue.
*resolved*Forum: Fixing WordPress
In reply to: Trackbacks not sending in WP 2.0.6Fixed.
Needed to do a complete re install of WP to make a fresh start.Needed to get rid of 3 years of garbage I guess. ??
Forum: Fixing WordPress
In reply to: Trackbacks not sending in WP 2.0I’ve all of a sudden started experiencing this since upgrading to 2.0.6.
The Trackback links just sit in the Field you enter them into. They do not go to the ping status when publishing a post.
Forum: Plugins
In reply to: php inside phpBTW if anybody’s interested in making the post dates images all you do is replace this:
<?php the_time('D j M Y'); ?>
with this:
<img src='<?php bloginfo('template_url'); ?><?php $d = strtolower(get_the_time('D')); echo ("/img/date/{$d}.png'> "); ?>
<img src='<?php bloginfo('template_url'); ?><?php $m = strtolower(get_the_time('M')); echo ("/img/date/{$m}.png'> "); ?>
<img src='<?php bloginfo('template_url'); ?><?php $j = strtolower(get_the_time('j')); echo ("/img/date/{$j}.png'> "); ?>
<img src='<?php bloginfo('template_url'); ?><?php $y = strtolower(get_the_time('Y')); echo ("/img/date/{$y}.png'> "); ?>
make you’re images and you’re good to go.
Forum: Plugins
In reply to: php inside phpOK I got it folks.
I’ll past what I got just in case somebody else runs into the problem.<img src='<?php bloginfo(‘template_url’); ?><?php $d = strtolower(get_the_time(‘D’)); echo (“/img/date/{$d}.png’> “); ?>
Forum: Plugins
In reply to: php inside phpit ends up outputting this.
<img src=’bloginfo(‘theme_url’); /img/date/mon.png’>Forum: Plugins
In reply to: php inside phpTried that already and it doesn’t work.
<?php $d = strtolower(get_the_time(‘D’)); echo (“<img src=’bloginfo(‘theme_url’);/img/date/{$d}.png’> “); ?>
would be the full code.Forum: Everything else WordPress
In reply to: Comment Editing messes up linksThanks! That did the trick!