jkmills78
Forum Replies Created
-
Actually, I just discovered what is going on, if anyone else stumble across this post. My current setup is WordPress 3.5.1 running in multi-site mode. I have Buddypress 1.7 running with a self-built theme. I discovered that by going to the Media Upload area, I couldn’t upload this file either. However, by going to this area, I did get an error that I could work from (I would like to suggest in future releases of this plugin, that you include some error feedback as I can see how the lack of this could be frustrating for my end-users.
The error that I received said that the file type was not supported (it was an MP4). When I went into Network Admin Dashboard > Settings > Network Settings I discovered that MP4 was not in the list of allowed MIME types. Once I added MP4 to the list, I was able to upload videos. Hope this helps others who are stuck in this situation.
I am experiencing the exact same issue and I would be glad to share my error log. Where is the log located that you need?
Nevermind, just solved the issue (sort of). Navigate into the bp-xtra-signup/admin directory and edit the bpxs-admin.php file. Look for the function add_menu() and modify the line that says:
add_submenu_page( 'bp-general-settings', __( 'BP Xtra Signup', 'bpxs' ), __( 'BP Xtra Signup', 'bpxs' ), 'manage_options', BPXS_FOLDER, array( &$this, 'show_menu' ) );
and modify it to the following:
add_submenu_page( 'options-general.php', __( 'BP Xtra Signup', 'bpxs' ), __( 'BP Xtra Signup', 'bpxs' ), 'manage_options', BPXS_FOLDER, array( &$this, 'show_menu' ) );
This will place the Xtra Signup menu under the Settings menu in your control panel. This way you can see the panel for it anyways. I haven’t tested any further to see if all functionality works or not. I will get to that tomorrow and post back here.
I am having issues with this as well. Just want to see if anyone knows anything yet?