brashell
Forum Replies Created
-
I also did your upgrade.php script that you posted on your site, didn’t do a thing.
Hey, do you still need the database dump? Also I am running this script via mu-plugins
<?php /* Plugin Name: Add Users Description: Add users to blogs when they visit. */ function helf_add_users( $user_id = 0 ) { global $current_user, $blog_id; if(!is_user_logged_in()) return false; if( !is_user_member_of_blog() ) { add_user_to_blog($blog_id, $current_user->ID, "subscriber"); } } add_action( 'wp' , 'helf_add_users' , 10); ?>
but it for some reason after adding a user, doesn’t enable some of the blocking settings. So when it adds a user to the site, they still can access hidden features. What can I do to fix this? I am afraid to update, do you think the transfer might break again even with beta 2?
Forum: Plugins
In reply to: [Autoptimize] This plugin ruined my site, I need helpFor the mod_cache do you have suggestions or know how to use it?
Forum: Plugins
In reply to: [Autoptimize] This plugin ruined my site, I need helpI was loading about 40 scripts before too
Forum: Plugins
In reply to: [Autoptimize] This plugin ruined my site, I need helpDo you think you can add a feature to minimize some css but not combine them all into one file? I found that some of my files when all combined don’t work properly even after implementing your legacy thing. I am able to do most of them, but about 8 files can’t be. Do you think you can do the same for JS? Also what is the best way for image compression and how might I be able to cache some woof and svg files? (My fonts) I am having in issue trying to implement mod_cache and I don’t want to use w3 as it actually slows my site down believe it or not. I am loading at about 2 seconds to 3 seconds but I know I can go faster. Lol
Forum: Plugins
In reply to: [Autoptimize] This plugin ruined my site, I need helpYep, I got my site to load in about 1.8 seconds using your plugin, some advanced cache, and some heavy compression. Lets see how fast I can make it this time ??
Forum: Plugins
In reply to: [Autoptimize] This plugin ruined my site, I need helpHey Frank, I wanted to come back and apologize, it wasn’t your plugin causing the issue. The lovely Sucuri Waf got a false positive and banned me from my own website! How lovely is that? When I am unbanned and I restore my site to the FTP backup I made before backtracking I will give your plugin another go. Keep you updated ??
Forum: Plugins
In reply to: [Autoptimize] This plugin ruined my site, I need helpHas it stored something in teh database that could be causing issues? This is years worth of work that is going down the tubes if this doesn’t get fixed.
I was thinking maybe it would be possible to have like a bulk action badge thing in the users area maybe? I don’t know, just a suggestion.
I can do a var_dump in a couple places and see if I can find it, I do some development myself. Also are you guys building the bulk badge give thing? Its the latest version of the badge builder by the way.
I was talking about the auto updates from the core, not the plugin itself, I need to find that post where it tells you how to disable it. Anyway,
Strict Standards: Declaration of P2P_Indeterminate_Directed_Connection_Type::recognize() should be compatible with P2P_Directed_Connection_Type::recognize($item, $which = ‘current’) in /home/e1739543/public_html/wp-content/plugins/badgeos/includes/p2p/p2p-core/indeterminate-type.php on line 44
Strict Standards: Declaration of P2P_Indeterminate_Directed_Connection_Type::get_final_qv() should be compatible with P2P_Directed_Connection_Type::get_final_qv($q, $which = ‘current’) in /home/e1739543/public_html/wp-content/plugins/badgeos/includes/p2p/p2p-core/indeterminate-type.php on line 44
Strict Standards: Declaration of P2P_Widget::init() should be compatible with scbWidget::init($class, $file = ”, $base = ”) in /home/e1739543/public_html/wp-content/plugins/badgeos/includes/p2p/p2p-core/extra.php on line 86
Strict Standards: Declaration of P2P_Box_Factory::add_items() should be compatible with P2P_Factory::add_items() in /home/e1739543/public_html/wp-content/plugins/badgeos/includes/p2p/p2p-admin/box-factory.php on line 156
All I have for the debug output, if this doesn’t help I will start digging through the core when its not 2:32 AM…
It updated by itself, which I was mad about a bit, its the latest version though.
Forum: Plugins
In reply to: [BadgeOS] I am getting an error and can't save the imageYou think its a good idea and will be implemented?
Forum: Plugins
In reply to: [BadgeOS] I am getting an error and can't save the image@michael Beckwith You think it would be possible to add a bulk badge giving system? I have a few hundred users who I want to give a badge to and at the moment I am having to click each of the ones I want to give it to and go into their profile etc. Can you create a Bulk Action in the users area? Thanks ??
Forum: Plugins
In reply to: [BadgeOS] I am getting an error and can't save the imageI want to put this out there because it might help someone else out in my situation, not just BadgeOS but any kind of plugin utilizing an admin-ajax.php request. Check in the wp-admin directory for a .htaccess file. If you are using a security plugin such as bulletproof security, it may have created it for security reasons and to block sql injection attacks etc. I have found that even if you don’t have the plugin but used it before this file still exists and will cause you to get 404 and or 403 requests. Hopefully this will help some of you out if you ever find this.