cfriedman12
Forum Replies Created
-
Did purge cache and then even disabled W3Total Cache.
Here’s all active plugins on our multipress site: https://www.dropbox.com/s/zr146ttfb7wru6i/Screenshot%202016-04-14%2009.00.37.png?dl=0
Same error here. Can’t click the text editor in post/page editing.
Error happened in 4.4.2 and 4.5. We do have ACF and many other plugins. No problems until we updated SMUSH plugin through WPMU Dev.
Forum: Plugins
In reply to: [AMP] amp plugin installed but posts with /amp/ are blankDitto on blank pages. I’m going to guess that it has something to do with your theme code.
Forum: Plugins
In reply to: [Event List] Show event-list current monthThis solution doesn’t work. I believe this is a bug.
Also I’m not certain what this line means in the About section: “Filtered events according to date_filter value are not available in the event list.”
Forum: Plugins
In reply to: [Login-Logout] Not working in 4.3I know this is going to be much help
1. Upgraded to the newest release, probably added too many plugins, recently enabled WT3 total cache
2. worked before the changes
3. Some users click and nothing happensForum: Plugins
In reply to: [Login-Logout] Not working in 4.3I looks like the latest release has broken this plugin for some browsers.
OSX chrome/safari work.
Win 7/10 chrome doesn’t work.We do meet those requirements. The site is mays.tamu.edu. I’ve uploaded your plugin on another multipress site we have but on our main site it doesn’t show in the menu.
Here’s our stack:
Server 2012R2 64 bit
IIS 8.5
PHP 6.5.6Forum: Plugins
In reply to: Thumbnails in media viewer are taking forever!Anyone got some advice?
Forum: Plugins
In reply to: [WP Booking Calendar] Multiuser – Can't add userIn multiuser.php this code:
global $wpdb; $sql_check_table = "SELECT * FROM " .$wpdb->prefix . "users as u LEFT JOIN " .$wpdb->prefix . "usermeta as m ON u.ID = m.user_id WHERE m.meta_key='" . $wpdb->prefix ."capabilities' ORDER BY user_nicename ASC" ; $res = $wpdb->get_results(wpdevbk_db_prepare($sql_check_table));
needs to look like this:
global $wpdb; $sql_check_table = "SELECT * FROM " ."wp_users as u LEFT JOIN " ."wp_usermeta as m ON u.ID = m.user_id WHERE m.meta_key='" . $wpdb->prefix . "capabilities' ORDER BY user_nicename ASC" ; $res= $wpdb->get_results(wpdevbk_db_prepare($sql_check_table));
For the user table to be populated with the correct user list.
Forum: Plugins
In reply to: [Bulk User Management] Bulk edit users only available via Network Dashboardwrong post.
Forum: Plugins
In reply to: [WP Booking Calendar] Multiuser – Can't add userRight – except that it’s broken. The user list isn’t displayed because of WPDB connection prefix is different.
Forum: Plugins
In reply to: [WP Booking Calendar] Multiuser – Can't add userTo update I’ve found the plugin isn’t setup for multi-sites/networks. You have to modify the database connection strings because a single site works differently than a multi site.
Forum: Plugins
In reply to: [WP Booking Calendar] Multiuser – Can't add userI’m logged in as the super user and I can see all the administrative options. admin id=1.
It’s not giving me any options to add users in the user panel or approve anyone either.
Forum: Plugins
In reply to: [WP Booking Calendar] Multiuser – Can't add userI’ve looked through the code and I think what’s happening is that when the new user visits the page it’s not setting the var “activated_user” or whatever variable is suppose to be set to allow super-admin to approve isn’t being set.
Forum: Plugins
In reply to: [WP Booking Calendar] Multiuser – Can't add userI’ve added a new user and set it as an “administrator”. I visist the page with “test123” the new admin account and get the “you can’t access this page contact admin”.
I then pop open the users page with super admin account and I don’t see the any user’s names in the user’s tab.