Forum Replies Created
-
RESOLVED
In looking more closely it appears Filezilla was having trouble continuing transfers to backup before the cloning (timed out i suppose) so it only backed up partial uploads/avatars/ folders and hundreds were missing from my cloned site.
Uploaded the missing folders in chunks to be sure all crossed over… and ‘problem’ was solved.
In reply to: Issue Friend RequestingAlong the same lines – i just updated to 1.5 and now the friendship requests and accepting show the user an error with every action even though the friendship is accepted or sent successfully. : /
Says something like “There was an error processing your request please try again”In reply to: Who’s Online widget has too short an idle timeoutI have not received any type of response.. and still no luck in trying to solve it myself. So sorry.
-graceIn reply to: Who’s Online widget has too short an idle timeoutThis is looking like it is an issue in conjunction with DRP WPUM – where you have settings to check if a banned user is still online. I suppose what i want is to disconnect how these two things affect each other.
Code:if(is_user_logged_in())
{
$data = array(
‘interval’ => (get_option(‘wpum_online_interval’, self::DEFAULT_INTERVAL) * 60 * 10800),
‘nonce’ => wp_create_nonce("add_online_user")
);wp_localize_script(‘wpum_user’, ‘PingServerData’, $data);
wp_enqueue_script(‘wpum_user’);
}could this be the right spot?