Mark Jaquith
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Links To] Doesn't work with an URL with @ in itWhat error do you get? That URL works just fine for me, both for the URL rewriting and redirection.
Forum: Plugins
In reply to: [Page Links To] Not redirecting to the right page (but Google instead…)The plugin has nothing to do with Google, and certainly nothing to do with google.com.mx
I’m wondering if you accidentally had the home page of your new site set to “link to” Google Mexico as a test, and that resulted in a “double” redirection, which was stopped when you deactivated the plugin on the new site.
Forum: Plugins
In reply to: [Page Links To] doesn't work for meIt’s working as expected. If I click that link, it redirects to Google.
$ curl -I http://davidabauer.com/?page_id=19 HTTP/1.1 301 Moved Permanently Date: Tue, 10 Mar 2015 10:02:57 GMT Server: Apache X-Powered-By: PHP/5.4.38 X-Pingback: http://davidabauer.com/xmlrpc.php Location: http://www.google.com Content-Type: text/html; charset=UTF-8This is the expected behavior. The idea is for that page to always point to the URL you specified. So even if someone ends up at it manually, or because they used to have the internal WordPress URL, they’ll get redirected to the location you’ve said you want the page to point to.
Forum: Plugins
In reply to: [Page Links To] no page links to boxCheck your “Screen Options” on that screen.
1. Is “Page Links To” present? (If not, are you sure you activated it?)
2. If “Page Links To” checked? (If not, check it, to get the box to show up on the edit screen).Forum: Plugins
In reply to: [Page Links To] Is the author still supporting this plug-in?Yep. Are you having issues, or were you just wondering about compatibility? I recently updated it and bumped the compatibility it reports.
Forum: Plugins
In reply to: [Page Links To] Open this link in a new tab – jQuery conflictThat’s not an error message — that’s code. Can you link me to an example? Are you running version 2.9.5?
Forum: Plugins
In reply to: [Page Links To] New file in update install-wp-tests.shIt’s harmless, won’t do anything on your site, and you can ignore it.
But here’s the explanation:
It is a bash script (has to be run on the command line), used by Travis-CI (a continuous integration service) to run unit tests for the plugin. This file is specified to be used inside of the
.travis.ymlfile. WordPress itself never knows about or cares about or uses or can even do anything with these files.But when I make a code change to the plugin, GitHub tells Travis-CI about the new changes, and Travis-CI grabs the new code, and then (on their servers) installs WordPress, installs the plugin (with the new code changes), and then runs a series of automated tests I have written to make sure that I don’t accidentally break something essential in the plugin with my code changes. And then it does this for: PHP 5.2, 5.3, 5.4, 5.5, and 5.5, for WordPress 3.9.3, 4.0.1, 4.1.1, and the latest WordPress, each in multisite mode and not, for a total of 40 different configuration combinations (imagine doing this by hand!). Then it lets me know if something went wrong.
Forum: Plugins
In reply to: [Page Links To] Page Links Not Saving when UpdatedEdit the page in the wp-admin, find the “Page Links To” box (usually in the main column, but check screen settings if you can’t find it), click the “normal WordPress URL” option, and re-save the page.
Forum: Plugins
In reply to: [Page Links To] PHP ErrorPlease try version 2.9.5, released today.
Forum: Plugins
In reply to: [WP Help] Need to move sync source to other websiteThe key portion of the URL is stored under the ‘key’ key of the
cws_wp_helpoption.If you migrate your options to a new site, the slurp key will stay the same.
You can update it like this:
$option = get_option( 'cws_wp_help'); $option['key'] = 'KEY YOU WANT TO SET'; update_option( 'cws_wp_help', $option );Forum: Plugins
In reply to: [W3 Total Cache] Experience with HHVM ?I haven’t specifically used W3TC with WP 3.9 on HHVM, but HHVM does support APC and Memcached, so object cache backends that use those should work. I can confirm that my standalone APC object cache backend is working fine in HHVM.
Do note that there is currently a WordPress incompatibility in HHVM due to a bug in how HHVM sets cookies. You can log in to WordPress, but you won’t get a cookie that is valid for the front-end of your site. So you won’t see a toolbar. And there also seem to be issues logging out. I opened a bug report with HHVM here.
Forum: Plugins
In reply to: [WP Help] error_log is floodedOdd, something must be running that hook without the fifth argument. I’ll make sure it has a null fallback so that error doesn’t occur.
Forum: Plugins
In reply to: [WP Help] Custom Role Can't See the DocumentationAdd the ‘edit_posts’ capability to the role. They SHOULD have that already, if they’re modeled after the Author role, but maybe they’re missing it for some reason. Also make sure you update to version 1.3.
Forum: Plugins
In reply to: [WP Help] 3.6?It will work fine with 3.6, 3.7, and 3.8, in my testing! I updated the reported compatibility.
Forum: Plugins
In reply to: [WP Help] Publishing Issues with WordPress 3.6.1Is this still happening, Lan? Haven’t had any other reports of this. Also make sure you’re using the latest version.