s1r0n
Forum Replies Created
-
Forum: Plugins
In reply to: [wpForo Forum] Error activating pluginya. you need to add the (array) cast to all three instances of $user-roles in that if/then loop.
Presume this will be fixed in code with the next update?
Forum: Plugins
In reply to: [Asgaros Forum] Text editorwell after waiting a month to try this I did and it didn’t work. this doesn’t change anything on the tinymce screen
Forum: Plugins
In reply to: [Asgaros Forum] thread idBrilliant. Thanks
Forum: Plugins
In reply to: [Asgaros Forum] Turning off “new topic” and reply buttonsThank you!!!!!!!!!!!!!!!
You are awesome, no doubt about it
Forum: Plugins
In reply to: [Asgaros Forum] Forums and posts not displayingYes. the conflict is piklist. Something about that plugin messes it up. I’ve started a threat over there
https://piklist.com/support/topic/asgaros-forum/
but am curious if this might be a known issue.
Forum: Plugins
In reply to: [Asgaros Forum] Forums and posts not displayingNope that’s not it. Set to “Access Everyone”
Forum: Plugins
In reply to: [Asgaros Forum] access controlbrilliant. perfect. thanks.
Forum: Plugins
In reply to: [Asgaros Forum] APInever mind, found it
not safari, I am having the same problem with firefox. I think the plugin might be broken
Forum: Plugins
In reply to: [HookPress] Hook into Update User MetaYes it is possible. I use the following function to email me on user_meta updates while I am debugging my custom site at https://www.thelightningpath.com/
You have to play with this otherwise you could get a lot of actions, but this is the basic template.
add_action('updated_user_meta','log_user_action',10,4); function log_user_action($meta_id='', $object_id='',$meta_key='', $meta_value='') { global $current_user; if ($meta_value=='' || $meta_key =="last_viewed_8") return true; $message = sprintf("Changing <b>User,/b> %s <b>meta key</b>: %s <b>value:</b> %s", $current_user->user_nicename, $meta_key, $meta_value); wp_mail('[email protected]', "Changed meta data for user", $message); }
Forum: Plugins
In reply to: [WP-FFPC] gibberishwell fixed it. set
memcache.compress_threshold=200000
in /etc/php.d/memcache.ini
and it all works hunky dory now.
surprised am I that this hasn’t happened to others before
Forum: Plugins
In reply to: [WP-FFPC] gibberishi tried setting
memcache.compress_threshold 50000000
memcached.compress_threshold 50000000didn’t make a difference. i’m currently using APC as the backend and that seems to be working. does that still use memcached?
Forum: Plugins
In reply to: [WP-FFPC] gibberishah.
php 5.3.3
nginx version 1.0.15
plugin version most recent.what configuratin are you looking for? the nginx config? i use the version provided by the plugin.
i think this might have to do with the fact that memcache is compressing the object, and its passing a compressed object to nginx, which doesn’t know how to handle it properly.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Help with footerthe problem seems to be the curious addition of the following styles to the element
- . if I disable these in a style viewer, the problem goes away
position: absolute; top: 0px; left: 496px;
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Help with footerya i fixed the markup. and yes when I switch to the parent theme the problem is still there