adentone
Forum Replies Created
-
Hi @rubengc,
Thanks for the very prompt answer.
Is this a possibility with custom code with existing hooks?Forum: Plugins
In reply to: [Clean Login] [Redirection] Return to page viewed when login activatedI’m having this same issue now and the solution isn’t entirely clear….
OP, @fhundewadt, would you mind sharing your new version of clean-login.php in its entirety? Thanks for giving back to the community!This might not be the best way to do it, but it works for my purposes.
SOLVED:function my_get_media_tags_by_attachment( $attachment_ID ) {
$full_media_tags = wp_get_object_terms($attachment_ID, ‘media-tags’);
$media_tags = array();
foreach ($full_media_tags as $key => $tag_details) {
$media_tags[] = $tag_details->slug;
}
return $media_tags;
}Forum: Fixing WordPress
In reply to: htaccess tweaks to ignore non-WP directorySo, upon further investigation, the directories are 755.
And, WordPress works as expected as long as the directories ARE NOT password protected.
Any suggestions on getting it to work with password-protected directories?
Thank you!
Forum: Fixing WordPress
In reply to: htaccess tweaks to ignore non-WP directoryThanks for your reply.
So you suggest that I set the permission of the directories to 775? They are supposed to be set to 644 and password-protected.
Does anyone else have a good idea for me to try?
Both directories exist and contain files – and both are set to 644 and are password-protected.
Any other suggestions are greatly appreciated.