EL45
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Session changes in 5.1.1? Problems integrating 3rd party sessionsApologies. In my head, a session is how you stay logged into a site via cookies, filesystem etc…
Forum: Fixing WordPress
In reply to: Session changes in 5.1.1? Problems integrating 3rd party sessionsForum: Fixing WordPress
In reply to: Session changes in 5.1.1? Problems integrating 3rd party sessionsThank you for your response. I was referring to https://github.com/WordPress/WordPress/blob/master/wp-includes/class-requests.php#L138 Which is failing to locate classes such as “Requests_Cookie_Jar”, maybe autoloader is the incorrect term?
I appreciate the tips for plugins to try. I will give that a shot.
Forum: Fixing WordPress
In reply to: 4.6.x Upgrade: Fatal error: Class ‘Requests_Hooks’ not foundThank you for your response, as I’ve mentioned, I have tried manually updating multiple times. with both 4.6.1 and 4.6.0.
Forum: Hacks
In reply to: Programmatically Add User Using wp_insert_user()A custom plugin that I am writing myself. This is where I was trying to make the
wp_create_user
call from. Sorry for the confusion.Forum: Hacks
In reply to: Programmatically Add User Using wp_insert_user()@onelife1985 I’m still unsure why it wasn’t working before. BUT… I was able to finally get
wp_create_user
to work.I accomplished this by installing the plugin as ‘must use’ (ie: in ‘wp-content/mu-plugins’ instead of ‘wp-content/plugins’)
Also, I switched the ‘hook’ that I was using to create the user. Again, not sure why it wasn’t working before.. Wish I had more info for you, but I hope this helps, as I received little support from the community.
Forum: Plugins
In reply to: Override Pluggable functionsOn further investigation is appears that when logging out
wp_logout()
isn’t even called at all. I temporarily added an output to the core implementation and it was never activated.The user is logged out though, how can this be?