Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: does this mean ‘hack” ??You must have used the Subscribe2 plugin at one time as those entries belong to it.
Forum: Everything else WordPress
In reply to: someone remotely accessing xmlrpc.php3 different IP addresses have tried to access wordpress\xmlrpc.php
Welcome to WWW. 🙂 I get dozens of hack attempts a day. Just make sure to harden your install.
With respect to that plugin make sure you’re using the latest version. There was a vulnerability in an earlier version. A good place to keep an eye on plugin vulnerabilities is milw0rm.com. Type wordpress in the search engine.
Forum: Fixing WordPress
In reply to: Fatal error: require() site wont openIs the www file suposed to have everything just about that the public html file has in it?
You mean folders. 🙂 The
wwwandpublic_htmlfolders are the same thing. They contain the same content. Thewwwfolder is simply a short cut pointing to thepublic_htmlfolder. (comes in handy when working at the command line level) The filewp-settings.phplives outside of the main WP folders (wp-content, wp-admin, wp-includes)The easiest thing to do is simply compare the WP structure on your hard drive to the structure on your host.
Forum: Fixing WordPress
In reply to: Fatal error: require() site wont openI found my theme folder in a subfolder in one of my plugins folder. I noticed that my wp-includes is in my wp-admin.
Wow. 🙂 A WordPress install will contain 3 main folders ->
1.wp-content
2.wp-admin
3.wp-includeswith a series of files living outside of them.
Forum: Fixing WordPress
In reply to: Fatal error: require() site wont openI’m unsure of the particular changes in the database schema between 2.6 and 2.7. To be safe you should re-upload the 2.6 files (or whatever version you were using) then follow the upgrade instructions.
I mentioned hanging on to the
wp-contentfolder because it may contain custom themes and such. If its not important to you then you can get rid of it and re-upload a fresh copy of that as well.Forum: Fixing WordPress
In reply to: Fatal error: require() site wont openAll of your posts and comments and such are stored in the database. If you’re unsure of what you did exactly you might want to delete the WP files and re-upload fresh copies.
Make sure you don’t delete:
wp-config.phpfile
wp-contentfolderif you’ve added any custom rules to your
.htaccessfile you might want to hang on to that as well – if not get rid of it as WP will generate a new one when you use fancy permalinksForum: Fixing WordPress
In reply to: Can anyone help.It’s unlikely you deleted the site. Posts and comments and such are stored in the database. Can you access the database via phpMyAdmin?
Forum: Requests and Feedback
In reply to: WordPress 2.7 hacked – could be related to wp-atom.phpIf you still have the server logs available send all pertinent info to security (at) wordpress (dot) org
@qti – They weren’t gunning for you specifically. They use scripts that scan the web looking for vulnerabilities. The entire process is automated.
Forum: Plugins
In reply to: Report comment plugin for WP 2.7?Forum: Fixing WordPress
In reply to: page on site which lets a user create a blogThe software used on wordpress.com isn’t WordPress – it’s WordPress MU. (multi-user)
Forum: Requests and Feedback
In reply to: I give upWhat are you specifically having problems with? If you’re just after general info, in addition to the Codex, WordPress has a new video tutorial site up at WordPress.tv
Forum: Plugins
In reply to: 2.7 – Is there a Post abbreviation Plugin that works?I’m not familiar with those plugins but if you’re simply wanting to show snippets of your post on the front page you don’t need a plugin. Use the template tag
the_excerpt()instead ofthe_content()Additionally, WordPress by default will limit excerpts to 55 characters when using
the_excerpt(). You can change that by adding this to your theme’s functions.php file,/* custom trim excerpt lenghts */ remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'custom_trim_excerpt'); function custom_trim_excerpt($text) { // Fakes an excerpt if needed global $post; if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); $text = strip_tags($text); $excerpt_length = X; $words = explode(' ', $text, $excerpt_length + 1); if (count($words) > $excerpt_length) { array_pop($words); array_push($words, '...'); $text = implode(' ', $words); } } return $text; }Just adjust the line
$excerpt_length = X;to whatever you want.Forum: Installing WordPress
In reply to: Quick QuestionYou installed it in a subdirectory –> movieblog.me/wordpress
Forum: Fixing WordPress
In reply to: There is a “d” at the top of every page!testcricket is right. Check
wp-blog-header.phpat root.Forum: Fixing WordPress
In reply to: Logged out users can pretend to be authorsIf you’re referring to Gravatars that’s how they work. They are tied to a specific email address.