Mort
Forum Replies Created
-
I’ve figured it out. It’s not a problem with the members plugin. My client has a weird domain mapping set up going on. The multisite is set up for subdirectories but each site has custom domain maps to sub domains, and then vanity domains (like mysite.com) as well. So wordpress is getting confused about where to send the user.
I just wrote something in my functions file to override that feature forcing users to be sent to wp-admin upon logging in
I think I’ve figured it out.
WordFence doesn’t actually set any sort of minimum requirements. Strong passwords are defined by some included javascript file in the core called zxcvbn.js
Basically it uses math to determine how hard it would be to brute force your password. I think it uses a combination of things like, a dictionary to test whether or not your password is a real word, counts the number of times special characters, numbers, and capital letters are used. I think it’s also smart enough to know that p@s$w0rd = password and wouldn’t consider that strong enough.
Anyway – WordFence just relies on that JS file and says “hey, zxcvbn doesn’t think your password is strong enough, so we can’t accept your password. do it again!”
Not 100% sure to be honest, I’m not a SVN user. I’ll get back to you after I’ve gotten my plugin approved
Forum: Plugins
In reply to: [WP Password Policy Manager] Prompt for new password in new site in WPMUI do not think its Multisite compatible either which is a shame because this plugin is exactly what ever site needs. Especially if its been comprised
Forum: Plugins
In reply to: [Unyson] Don't have 'Styling'That page 404s, I’m guessing the feature was removed?
Im having a similar issue using the post_info hook.
This:
[post_comments zero="No Comments" one="1 Comment" more="% Comments"]results in :
April 1, 2013 “No
Forum: Plugins
In reply to: How do modify the dashboard and new post pagesactually im trying to achieve all this without the use of plugins. I was told the functions.php file was for modifying the dashboard and adding custom fields. I already know what type of inputs I want, i jut have to figure out how to put them into the create new pot page.
Forum: Fixing WordPress
In reply to: Trashing Posts does not Remove from Databasenvm, I got it. wp_posts doesnt have a column called post_id, its called ID
Forum: Fixing WordPress
In reply to: Trashing Posts does not Remove from Databaseit actually kills the query :/ Im not very good at SQL yet but I love your solution, can you help me with it?
Forum: Fixing WordPress
In reply to: Trashing Posts does not Remove from DatabaseI guess this part of the loop:
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>is what properly pulls active posts from the db? I just used the standard loop and my the post I deleted didnt appear. But as soon as I used my custom search again its there.
HELP!
Forum: Fixing WordPress
In reply to: How to stop images from being linked by defaultIm looking for a permanent solution. The less the user has to do the better.
Forum: Fixing WordPress
In reply to: How do I get external jquery scripts working??Ahhh cool. Got it, thanks!
Forum: Requests and Feedback
In reply to: Why are images linked by default?how exactly do I set it from options.php?
Forum: Fixing WordPress
In reply to: wpdb and wildcards! need help almost done with project!actually, I cant get using * to work. I switched it up so if a user selects “Any” from a drop down, it turns the variable into a ‘*’ so that way the query would in theory select everything from the column. Butttt it doesnt work. I also tried %% but no go.
also – Im not using LIKE for this particular part. Any suggestions?
Forum: Plugins
In reply to: Whats wrong with my jquery, $ not defined!ah I see, well I added the $:
jQuery(document).ready(function($){ $("#myTable").tablesorter(); });but now I get:
$(“#myTable”).tablesorter is not a function