Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Lee H

    (@leeh)

    Well that wasn’t so hard.
    I ended up making a location for wp-signup.php and wp-register.php.
    If the comments for cookies cookie isn’t set, a 403 Forbidden is returned.
    Sweet ??

    location ~ \wp-(signup|register).php$ {
    		if ($http_cookie !~ "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX") {
    			return 403;
    			break;
    		}
    		# Adjust for your setup
    		include fastcgi_params;
    		fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    		fastcgi_pass php;
    	}

    If anyone knows a better way… I’m all ears!

    @adbl… A useful (and working) snippet at the moment I needed it. Thanks!

    I found a way to resolve not having the option to generate another page. So I’m now a registered member to help ya out.

    I’m running WordPress 3.0 in multisite so your mileage may vary.

    ———————————————————————–
    Make sure Profiler plugin is deactivated.

    Go to pages and delete the pages you might of attempted to set up.
    Go to Trash and EMPTY it. (or plugin created page will append a number to the slug if you’re trying to create the same page)

    Then if multisite (can’t remember how to get to hidden options on single)
    Go: Super Admin > Sites

    Find main site on list. Likely ID 1, and path /
    Hover mouse below ID number and click “edit” link that appears.

    Scroll down and find “Pf Directory Page Id” and “Pf Issetup” and clear the fields.
    Hit the “Update Options” button at the bottom of page.
    Re-activate Profiler Plugin.
    Go set up the Profiler Plugin as expected.
    ———————————————————————–

    It’s a pain to do, but at least it’s not too hacky.

    Hope this is helpful to someone. A very clever plugin… but lacking a bit here and there.

    Have a great day,
    Lee

Viewing 3 replies - 1 through 3 (of 3 total)