paulhastings0
Forum Replies Created
-
We have exactly the same problem. I set up a fresh install of WP-MS 3.2.1 on a Media Temple Dedicated Virtual server. I believe it’s using the latest versions of MySQL and PHP. The PHP is running as Fast CGI (as opposed to Apache) and everything’s working fine… except for creating subdomains.
It has all the symptoms described above. The database tables aren’t created, neither are the folders in the wp-content/blogs.dir directory.
Has anyone else experienced this or figured it out?
Forum: Fixing WordPress
In reply to: Increasing max_post_sizeCheck inside your wp-config.php file and your .htaccess file, there’s a possibility that one of those 2 files may be interfering.
Forum: Plugins
In reply to: [Easy Featured Image] [Plugin: Easy Featured Image] Good but lackingAgreed. I could really do an easy way to not only add, but change and remove featured images.
Forum: Plugins
In reply to: [Add Link to Facebook] Protest: no updates for this plugin the next 30 daysMarcel, You should seriously consider about turning your Add Link to Facebook plugin into a commercial plugin solution before ending support of it. I know that there are hundreds, if not thousands of WordPress users who benefit from your plugin right now.
I would be more than willing to pay $10/year to continue using your plugin. Have you considered starting a Kickstarter campaign so that you can host it (and of your other plugins) in your own private repository?
Forum: Plugins
In reply to: Simple plugin to auto post to Google ?Looking for the identical thing. Has Google seriously still not released that portion of their API?
Yes, I would be interested in hearing if Facebook’s fixed this bug yet. Any word?
Forum: Everything else WordPress
In reply to: [TimThumb Vulnerability] iframe hackYup, we got the same hacks yesterday on 2 of our sites. Thanks for posting this info. We’ve done what’s shown in this thread and so far so good.
+1 for the WordPress community!
Forum: Plugins
In reply to: Better WP Security Broke My SiteI have the exact same problem as well.
871e1_users:
871e1_usermeta:
871e1_posts:
871e1_comments:
871e1_links:
871e1_options:
871e1_postmeta:
871e1_terms:
871e1_term_taxonomy:
871e1_term_relationships:
871e1_commentmeta:Forum: Plugins
In reply to: [Add Link to Facebook] [Plugin: Add Link to Facebook] hidden jewelI heartily concur.
Ah, thanks a ton. I’ll mark this thread as resolved.
@fredericktownes Glad to hear that. Do you know when the next release will come out?
Forum: Plugins
In reply to: [Photo Galleria] [Plugin: Photo Galleria] Not working in IEHmm, what version is your WordPress install?
Forum: Themes and Templates
In reply to: Can't find Enterprise themeIronically I actually own that theme from StudioPress. However it’s not the same. The WordPress.com version has just a few options making it dramatically simpler for users to use.
No one else knows where this theme might reside?
Forum: Themes and Templates
In reply to: Can't find Enterprise themeI just encountered a friend of mine who’s using that same theme on WordPress.com but might be moving to a self-hosted install.
Does someone know if WordPress still planning on releasing this them to the public?
Forum: Networking WordPress
In reply to: how to select a theme for multisites different from main siteI had the same problems described here (WP 3.0.1) I finally got the following code in my .htaccess file to work
# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] # END WordPress