kyle422
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: uploading new media – Fatal error: Out of memoryTry disabling all of your plugins before you upload any media. Once it’s uploaded, activate your plugins once again.
Forum: Plugins
In reply to: Yoast WordPress SEO: Titles / Title on homepage is from first postI think Yoast saw the post because the problem corrected itself today.
Forum: Plugins
In reply to: Yoast WordPress SEO: Titles / Title on homepage is from first postI don’t see those options under: Settings > Reading
This is all the info on that page:
Blog pages show at most posts
Syndication feeds show the most recent items
For each article in a feed, show
For each article in a feed, showFull text
Summary
Encoding for pages and feeds The character encoding of your site (UTF-8 is recommended, if you are adventurous there are some other encodings)Forum: Fixing WordPress
In reply to: Few issues after upgrading to 2.8Thanks. This worked for me:
define( ‘CONCATENATE_SCRIPTS’, false );Forum: Fixing WordPress
In reply to: Visual tab doesn’t work properly when editing postsI have the same problem. No deactivating all my plugins did nothing to solve the issue.
Forum: Fixing WordPress
In reply to: PHP sending as Nobody@….This how you get rid of email from Nobody. Change the wp_mail part of the code (near the bottom of the page in the functions.php file which is located in the wp-includes folder to this below:
function wp_mail($to, $subject, $message, $headers = ”) {
if( $headers == ” ) {
$headers = “From: ” . get_settings(‘admin_email’) . “\n”;
“Content-Type: text/plain; charset=\”” . get_settings(‘blog_charset’) . “\”\n”;
}return @mail($to, $subject, $message, $headers);