Error uploading files bigger than 58 MB

Some ideas: You should check your php info, just to verify your upload settings (<?php phpinfo();?>) You could try a single install, to see if you have the same problems as with multisite. You should also try some 3rd party upload script yourself. In /wp-includes/script-loader.php I found these lines: // common bits for both uploaders … Read more

How do you disable account activation in WPMU and then log the user in right away?

In a WPMU setup the account information is sent to the wp_signup table before being passed to the wp_users table. an easy fix for this is: function your_disable_activation( $user, $user_email, $key, $meta=”” ) { // Activate the user $user_id = wpmu_activate_signup( $key ); wp_set_auth_cookie( $user_id, true, is_ssl() ); wp_redirect( /*redirect to */ site_url() ); exit; … Read more

Possible to enqueue scripts and CSS to Multisite Network dashboard?

You can use the global variable $current_screen. It has the property is_network, with a boolean value, that indicates if we are in /wp-admin/network/ or not. add_action( ‘admin_print_scripts’, ‘network_scripts_wpse_91699’ ); function network_scripts_wpse_91699() { global $current_screen; if( !$current_screen->is_network ) return; wp_register_script( ‘test’, plugins_url( ‘test.js’, __FILE__) ); wp_enqueue_script( ‘test’ ); } This action hook can also be used … Read more

error code: 521