brianbonner
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: WYSIWYG editorwhere is plugins developer?
Forum: Plugins
In reply to: comments quick tag pluginWhere are the coders out there? please help. I am even willing to change the code in comments and comments popup.
Man did I open up a can of worms! The plugin does work. it just doesn’t put the check box in the write advance of a new post. It is there when editing or publishing from a draft. I don’t know why I didn’t know that from the start.
As for plugins, I think they are a great idea. Obviously the deevelopers do as well or they wouldn’t have that functionality built into WP.
As for coding? I think programmers who love to code should use coding solutions. I think that is really what drives the desire to do it your way and that is fine.
frankly I do it both ways. I have figured out enough php to customize my blog to do what I want it to do on a basic level. But when there is a plug-in that does whta I want then I am more then happy to use it.
As for you coders out there why don’t you help me out on the quick tabs plugin? It puts buttons on the comment page but not on the comments popup page and for the life of me I cannot figure out how it is even calling the comments in the plugin.
Forum: Your WordPress
In reply to: Awesome BlogsI am sure everyone thinks their blog is awesome. Mine is exactly what I want it to be and it is here:
Forum: Fixing WordPress
In reply to: Pingback confusionFor some reason it messed the code up using back ticks it should have been like this:
“\r\n\r\n”;
Forum: Fixing WordPress
In reply to: Pingback confusionI have gotten both pingback andd trackback to work for me in 1.5. Do you have pingbacks enabled?
There is a debug option for pingback it is line 589 in the functions.php set it to true.
For trackback debugging line 624 should look like this:
$http_request .= "rnrn";And there is a debug option on line 630-639 it is blocked out remove the commentors and it will output a log in your admin folder. It helped me out allot.
Forum: Fixing WordPress
In reply to: I want the option of not using pingbackI unchecked the auto button, but it still pingbacks.
Forum: Requests and Feedback
In reply to: Trackback fix?I had the same problem. It turned out my server did not have the apache handler mod_rewrite installed. Now it works
Forum: Fixing WordPress
In reply to: I want the option of not using pingbackOK. that is half the problem no it won’t pingback, but there is no check to send a pingback in a particular post.
I guess I could go back into options recheck it and then post then uncheck it. why did they loose the check box in 1.5?
Forum: Everything else WordPress
In reply to: Trackbacks question…If you have pingback enabled and the other blog can recieve a pingback then the link in the story will be enough to send an excerpt back to other blog. Other wise you can choose trackback and it will automatically link back as well. To see what is working you can link back to one of your own posts. The pingback uses the permalink. just add it in the body. If it works it will show up in the comment for the post. Then don’t put the permalink in the body and put the track back link in the track back box. The track back link is different then the permalink. By default it is the permalink with /trackback/ added on the end
Forum: Fixing WordPress
In reply to: Trackbacks: Don’t Work and Replacing “Functions.PHP” is no HelpI enabled the tracback debug code and this is what it logged:
*****
Request:POST The HTTP/1.0
Host:
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Content-Length: 131
User-Agent: WordPress/title=test&url=http%3A%2F%2Funcooperativeblogger.com%2F2005%2F04%2F16%2Ftest%2F&blog_name=The+Uncooperative+Blogger&excerpt=test…
Response:
Notice there is no responce
Forum: Fixing WordPress
In reply to: Trackbacks: Don’t Work and Replacing “Functions.PHP” is no HelpThis is the error messages I get, in my servers error log, when trying to track back to one of my own posts.
[Sat Apr 16 16:29:42 2005] [error] [client 205.201.15.142] File does not exist: /home/owner/public_html/404.shtml
[Sat Apr 16 16:29:42 2005] [error] [client 205.201.15.142] File does not exist: /home/owner/public_html/robots.txtI hoped this might help somebody figure this out.
Forum: Fixing WordPress
In reply to: MY posts do not appear on my serverI am a idiot. the posts are not saved in a folder, they are saved in a database. That folder was created with the import from blogger tool, and not cleaned up. for some reason the script did not clean up at all after itself at all. This messed up the calendar script. when it looked for 2005/03 it ended up at that folder instead of switching months on the calendar. Once I deleted the folders it works fine.
Forum: Fixing WordPress
In reply to: Trackbacks: Don’t Work and Replacing “Functions.PHP” is no HelpAs to the problem with the track back link, don’t use it I found it confusing as well because it gives the pingback address not the track back address. in other words it takes you to the permalink. I replaced the code in my comments and popup comments to display the address in text form. here is the code from my comments.php for rss and trackback.
<p><?php comments_rss_link(__('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.')); ?></p>
<?php if ( pings_open() ) : ?>
<?php _e("The <acronym title=\"Uniform Resource Identifier\">URI</acronym> to TrackBack this entry is:"); ?> <em><?php trackback_url() ?></em>
<?php endif; ?>
give it a try.
For the confusion on trackback and pingback:
pingback is the link you embed or use in your post. this will be done automatically if you have it enabled. It can also slow down your publishing if there are allot of links to check.
Trackback is the link you put in the trackback box.
Both send information back to the site you are linking too. Mine uses a brief summary.
I have gotten everything except send trackback to function.
Forum: Fixing WordPress
In reply to: WP Publishing posts 4 timesReally nothing as far as coding. but there is now a huge amount of articles on the blog. But that is all I can think of as far as new.
It also does not do it all the time. strange.