lulewittchen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WPMU remove wpmu_welcome_user_notificationit seems that I found a solution:
i wrote a plugin whick hooks the the 2 functions ‘wpmu_welcome_notification’ and ‘wpmu_welcome_user_notification’
I simply killed the wp_mail calls in them and replaced them with a none-sense function.
Here is my code:
`
function my_nonesense() {
return true;
}remove_filter(‘wpmu_welcome_notification’, ‘wp_mail’);
add_filter(‘wpmu_welcome_notification’, ‘my_nonesense’);
remove_filter(‘wpmu_welcome_user_notification’, ‘wp_mail’);
add_filter(‘wpmu_welcome_user_notification’, ‘my_nonesense’);Forum: Fixing WordPress
In reply to: WPMU remove wpmu_welcome_user_notificationThanks Andrea. I found that chackbox. But I’d also like to stop the mails sent to the user.
We have our own system to do that. So I don’t want our customers to get 2 mails for the same thing.
Forum: Networking WordPress
In reply to: Image upload issuehad the same issues on my apache server. No uploaded images where displayed since I updated to 3.0
The new rewrite rule from ChirsTorp worked great for me. Thanks a lot!!!!#uploaded files RewriteRule ^(.*/)?files/$ index.php [L] RewriteCond %{REQUEST_URI} !.*wp-content/plugins.* RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Can’t get started, keeps saying upgrade tablesI have the same problem. But I use it under WPMU and the Gallery doesn’t create the needed tabeles for new users (which I check in phpMyAdmin)