Tom Morton
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't login – Website unavailableIt sounds like PHP isn’t working.
Open your root site directory (public_html maybe?) and create a new file called “test.php”.
Type in “<?php phpinfo(); ?>” without the quotes and then visit that test file in your browser.
If it does the same thing, I would say Apache isn’t running or PHP isn’t running – possibly your server had an error and shut it down?
Forum: Fixing WordPress
In reply to: Comment Date showing same as post dateAwesome, glad you got it fixed! And you’re not bugging at all, its why we’re here: to help!
Forum: Fixing WordPress
In reply to: Article not listed in Category pageHAHA Thats what I get for assuming you had all your plugins deactivated.
Well at least you got the problem solved! Remember to mark resolved.
Forum: Fixing WordPress
In reply to: Article not listed in Category pageThats what I’m thinking, it is a theme issue. Activate the TwentyTen theme and see if the same error happens.
Forum: Fixing WordPress
In reply to: main theme stylesheet stop working in visual editorIt is, but the good news is that your site isn’t broken, right?
What did the visual css do for you? Was there something specific?
Forum: Fixing WordPress
In reply to: Errors Inserting Image into PostThats very different. I’m thinking it may be a host issue. Do you know if you are running PHP5?
Forum: Fixing WordPress
In reply to: Blank log-in/WP-Admin pageShoot.
Well the next option is to try a fresh install. I’d restart your local system first, just for kicks. You never know, that may reset something that makes it work.
Forum: Fixing WordPress
In reply to: Blank log-in/WP-Admin pageYES! Start MAMP again and see what happens
Forum: Fixing WordPress
In reply to: Blank log-in/WP-Admin pageHmm, that might be the problem. Did you stop your local apache server from running?
Forum: Fixing WordPress
In reply to: Errors Inserting Image into PostWow, very odd. So you can upload to the media library but you can’t upload from the post media library?
Or you just can’t insert the image into the post?
Forum: Fixing WordPress
In reply to: Blank log-in/WP-Admin pageWow, very weird. Have you checked your HTAccess file? Its located in whatever folder you installed wordpress in (so if its at your root domain name folder, example.com, then you’ll find it there in the ftp).
There may be an odd redirect there.
Can you link me to your site?
Forum: Fixing WordPress
In reply to: main theme stylesheet stop working in visual editorAh! So maybe something happened where your theme no longer calls the editor style! Change your admin style sheet filename to “editor-style.css” and then put this in your themes functions.php
// This theme styles the visual editor with editor-style.css to match the theme style. add_editor_style();Try that and see what happens
Forum: Fixing WordPress
In reply to: how can i avoid "Nothing found for Tag" messeage ?If you don’t care about SEO, look for this (or something similar) in your header.php file:
<title><?php /* * Print the <title> tag based on what is being viewed. */ global $page, $paged; wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ); ?></title>And replace it with:
<title>This is my custom title</title>Forum: Fixing WordPress
In reply to: main theme stylesheet stop working in visual editorSo you are saying that your active theme no longer has it? Maybe check your theme’s folder for the admin-css.css file?
Forum: Fixing WordPress
In reply to: Errors Inserting Image into Post404 error would indicate that your upload did not complete and you couldn’t get the uploading php file.
What is the address bar URL when you get the 404 error?
My suggestion is try a reinstall.