Bradley Jacobs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Contact Form 1 – Yahoo, gmail do not workForum: Fixing WordPress
In reply to: Contact Form 1 – Yahoo, gmail do not workIs Contact Form 1 a plugin?
Forum: Fixing WordPress
In reply to: Importing Blogger to WordPressIts labeled wontfix because it is no longer a core issue.
The import plugins were removed and made into separate plugins for each type of blog you could be importing from.
For more information, you’d need to go to the plugin page for the Blogger importer.
Forum: Fixing WordPress
In reply to: add form to pageI hear good things about the Gravity Forms plugin.
Forum: Fixing WordPress
In reply to: Managing Lists on WordPressIf you aren’t afraid to do a lot of development, you could play around with custom post types. Each doctor could be a custom post type.
In addition, we are able to create custom taxonomies in WordPress. In this case, you may create a custom taxonomy called Specialties.
I would only recommend this if you are familiar with plugin development and don’t mind also creating a couple new template pages for your new custom post types.
This is probably a little more advanced than what you are looking for though.
Forum: Themes and Templates
In reply to: Fatal error: Call to undefined function: has_post_thumbnail()I had this issue too, but the above solution worked for me. I am making use of the feature in a plug-in and added the above code to get everything working again.
Thanks!
Forum: Alpha/Beta/RC
In reply to: Scheduled Posts not posting 2.5Having the same issue.
Scheduled two posts. One for today and one for tomorrow.
Today’s never posted. When I checked at 10am (was supposed to post at 7am) it said 3 hours ago, but the status was still unpublished. Had to manually publish.
I doubt tomorrow’s will be successful now.
Forum: Fixing WordPress
In reply to: Multiple Admins Break Write Post page. Bug?That seems possible. I just checked my personal blog, which is running at 2.1 on an IIS host. That has myself and the admin account both set as administrators.
XAMPP runs Apache. I believe the version its running is 2.2.0 (Win32).
Forum: Fixing WordPress
In reply to: Multiple Admins Break Write Post page. Bug?CORRECTION: The Write Post page will work again if I set the second user to Subscriber (not just any other role).
This may be significant in that Subscriber is the only role that does not allow access to that page as far as I am aware.
Forum: Your WordPress
In reply to: POWET.TVThanks!
Forum: Fixing WordPress
In reply to: My post has been deletedForgot to say we’re on 2.0.*
Forum: Fixing WordPress
In reply to: My post has been deletedThis has happened to us multiple times now. Either parts of a post disappears or an entire post is deleted. We can’t figure out what is going on. We lost a post yesterday with comments on it and the whole post was deleted with the comments, yet newer posts were still there. It was only the one post.
Forum: Fixing WordPress
In reply to: How does WP send the user registration email?I finally figured out how to fix this. All you need to do is fix the mail function in pluggable-functions.php in your include directory.
The function looks something like this:
if ( !function_exists(‘wp_mail’) ) :
function wp_mail($to, $subject, $message, $headers = ”) {
if( $headers == ” ) {
$headers = “MIME-Version: 1.0\n” .
“From: ” . get_settings(‘admin_email’) . “\n” .
“Content-Type: text/plain; charset=\”” . get_settings(‘blog_charset’) . “\”\n”;
}return @mail($to, $subject, $message, $headers);
}
endif;For Brinkster, you want to rewrite it like this:
if ( !function_exists(‘wp_mail’) ) :
function wp_mail($to, $subject, $message, $headers = ”) {
// if( $headers == ” ) {
// $headers = “MIME-Version: 1.0\n” .
// “From: ” . get_settings(‘admin_email’) . “\n” .
// “Content-Type: text/plain; charset=\”” . get_settings(‘blog_charset’) . “\”\n”;
// }
//
// return @mail($to, $subject, $message, $headers);require(“c:\php\includes\class.phpmailer.php”);
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = “sendmail.brinkster.com”;
$mail->SMTPAuth = true;
$mail->Username = “User@yourdomain.com”;
$mail->Password = “your-pass-here”;
$mail->From = “User@yourdomain.com”;
$mail->FromName = “User”;
$mail->AddAddress($to);
$mail->IsHTML(true);
$mail->Subject = $subject;
$mail->Body = $message;$mail->Send();
}
endif;This should be the simplest possible solution. You don’t have to change any other settings in any files. I had no access to the php.ini file or other external files because my host doesn’t permit it. So this is what I came up with using Brinkster’s documentation and what I was able to figure out from WordPress.
Hope this helps!
Crazy.
Forum: Fixing WordPress
In reply to: Windows hosting with no .htaccess support…bump
Forum: Fixing WordPress
In reply to: Windows hosting with no .htaccess support…I put this into effect, however, when I go to a specific permalink, it returns a white page that says only “No Input File Specified.”
It also still gives me a 404 error when I attempt to open up my custom page that uses WordPress functions (not WordPress Page).