fitztrev
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: File upload size limit (again)Try post_max_size.
If you wanted to do it via .htaccess, you could add these lines:
php_value file_uploads On
php_value upload_max_filesize 100M
php_value post_max_size 100M* Also, you probably did this already but anytime after you update the php.ini file, you’ll have to restart apache for the changes to take effect.
Forum: Everything else WordPress
In reply to: What are the biggest blogs using WordPress?You can get a list of the top blogs from Technorati. I would say quite a few of them are using WordPress.
Forum: Plugins
In reply to: Lester Chan’s WordPress Plugins December 2008 Update For WordPress 2.7As always, great work, Lester.
Forum: Plugins
In reply to: Fatal error: Cannot redeclare uninstall_pluginIn short, the plugin is not compatible with 2.7.
It’s because of a change that introduced the “uninstall_plugin” function to the WordPress core.
Forum: Fixing WordPress
In reply to: Export RSS to a straight html siteIf it’s just an HTML page, it would have to be done via javascript.
Google showed this.
Forum: Installing WordPress
In reply to: Ip banning helpingOn the Comments>Discussion page, you can blacklist either the entire IP or part of it.
Enter:
123.123.123.12
123.123.123.Forum: Fixing WordPress
In reply to: How to post directly via PHP?Do an include of wp-blog-header.php in your script. Then use the wp_insert_post() function. You pass it an array containing the post info. Check out the WP source for the function to see what you need.
Forum: Plugins
In reply to: Condense PHP<?php if ( is_home() || is_single() ): ?>
= “if this is the homepage of blog posts OR a single post…”Replace
is_home()
withis_front_page()
if you’re using a page for a static homepage.Forum: Fixing WordPress
In reply to: Error when using the if (is_page()) sintax1.) Try
<?php if (is_page('7'))
2.) Get rid of the emptyelse
If that doesn’t work, then you need to post your entire code that you’re trying to use.
Forum: Themes and Templates
In reply to: I’m new to this… my theme needs a quick tweak.In style.css, you just need to change a couple paddings:
#sidebar: from “padding:20px 0pt 10px;” to “padding:20px 30pt 10px;”
.narrowcolumn: from “padding:0pt 0pt 20px 45px;” to “padding:0pt 0pt 20px 90px;”Forum: Fixing WordPress
In reply to: Multiple blogs same comments and postsIt’s possible. But you would be penalized from search engines for having duplicate content. Your sites wouldn’t be successful for much longer.
Forum: Fixing WordPress
In reply to: Images clump together on pagesYou can add some paddings and margins to your stylesheet for the images.
Forum: Everything else WordPress
In reply to: Google search resultsIt will correct itself with time.
I suggest using a sitemaps plugin. Also, you should sign up for Google’s Webmaster Tools. It gives you stats about how they index your site. You can change some preferences on their end, too.
Forum: Fixing WordPress
In reply to: Auto save creating multiple draftsAre you using custom fields? If so, there’s already a bug report of the problem.
Forum: Your WordPress
In reply to: v. simple tumblelog designPeople don’t understand us minimalists. ?? I’m the same.
I like it. Nice work!