Mark Jaquith
Forum Replies Created
-
Forum: Plugins
In reply to: Page Links To Plug in – does not open new browser window@bobbyc — Is this the latest version of the plugin? Is your post privately published?
@billerby — This was for backwards compatibility reasons, but I can probably standardize on the new way of doing pages now. The next version will fix that.
I believe this plugin should be removed from the repository
I agree. I passed this info along to one of the repository maintainers. Good catch.
Forum: Plugins
In reply to: [Plugin: Gravatar Signup] Not getting gravatar signup to work?Alternatively, remove the plugin or remove the “E-mail” type from Sociable, and that will work around it.
Forum: Plugins
In reply to: [Plugin: Gravatar Signup] Not getting gravatar signup to work?The Sociable plugin you have installed is interfering. It’s using an ID of “email” which is overriding the comment form’s input box which also has an ID of “email”.
I know the author of Sociable, so I’ll contact him and get him to update the plugin.
Forum: Plugins
In reply to: A fix for Gravatar SignupI just released version 2.0, a big update with fixes and much smoother and unobtrusive operation!
Forum: Plugins
In reply to: [Plugin: Antispam Collateral Condolences] changelog questionsThere were other changes… I refactored most of the code. But functionally, they should be the same.
We really need a
remove_options_page()function. I find myself manually removing plugin menus from WPMU and usingpre_option_OPTIONNAMEto hardcode the options in my WPMU installs.Forum: Fixing WordPress
In reply to: clean_url() vs. sanitize_url() vs. esc_url() vs. esc_url_raw().?http://markjaquith.wordpress.com/2009/06/12/escaping-api-updates-for-wordpress-2-8/
esc_url()is for something like<a href="SANITIZE_THIS">text</a>If you want compatibility with versions of WP before 2.8, you can still use
clean_url()esc_url_raw()is for other cases where you want a clean URL, but you don’t want HTML entities to be encoded. So any non-HTML usage (DB, redirect) would use this.If you want compatibility with versions of WP before 2.8, you can still use
sanitize_url()Forum: Plugins
In reply to: [Plugin: Page Links To] illegal offset type when quick editHave you tried upgrading to the latest version (1.9 as of this writing) ? Please let me know if you still experience this issue in the latest version.
Forum: Fixing WordPress
In reply to: [Plugin: Page Links To] Removing the page linkVersion 1.8 should have fixed this. The current version is 1.9
Version 1.9 of Page Links To fixes this!
Forum: Plugins
In reply to: How can I execute php scripts in my plugin folder?Don’t use PHP file names, fake or real, as your admin page slug. Use something like: “my-plugin-name-settings” A lot of old examples use
__FILE__— don’t. If you’re passing in a function callback, you can just use any string as the slug.Forum: Fixing WordPress
In reply to: no-www to www: will latest version 301 to www?All versions of WordPress since 2.3 will do 301 redirects based on the domain you’ve set as your “Blog URL” in Settings → General.
Forum: Plugins
In reply to: [Plugin: Redirection] 2.7 ErrorYou should deactivate the Redirection plugin, and contact its author for an updated version.
Forum: Installing WordPress
In reply to: GoDaddy Multiple Domain InstallIf you can’t get the change to “stick” you may need to edit the database directly. You want the options table, with the options names ‘siteurl’ and ‘home’
Forum: Installing WordPress
In reply to: GoDaddy Multiple Domain InstallBoth options should be
http://siteC.com/blogThe
/websites/subdirectory is a GoDaddy thing for separating your domains when you view your site via FTP. For accessing in a web browser, you’d just go to http://siteC.com/blog/