maiki
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] Redirections fail for "?lang=zh"Groovy! Please mark this as resolved. ^_^
Forum: Plugins
In reply to: [Redirection] Redirect loop caused by common wordOkay, so it isn’t the plugin. Please mark this thread as resolved. ^_^
As for the odd behavior you’re seeing, are you sure the new page exists with that exact URL? If I had to guess, I’d say that you were activating the canonical URL feature in WordPress.
To further debug it, I’d restore my
.htaccessto its regular state, sans redirects, and see if you are still getting the redirect. From there you should be able to take it to the general forum for troubleshooting.Forum: Plugins
In reply to: [Redirection] Integrate plugin in post editor or another automation?This plugin will create a redirect, but it isn’t clear to me what your motive is with the post editor button. Try using the plugin and see if it meets your needs. ^_^
Forum: Plugins
In reply to: [Redirection] redirect is not workingYou’ll have to share the redirect URLs you are using, with the source and target URL, if you are using regex, and which action you are using. Otherwise, no one can assist you.
Forum: Plugins
In reply to: [Redirection] Redirections fail for "?lang=zh"It makes sense that it wouldn’t work, if you aren’t using regex to account for the characters at the end.
http://www.travelnasia.com/blog/map-attractions-bangkok-skytrain/andhttp://www.travelnasia.com/blog/map-attractions-bangkok-skytrain/?lang=zhare two different URLs. I know they serve the same function for you, but with different languages, but for the web server, it is two different strings of characters.Your best bet is to use regex to account for stuff coming after the last slash, and forwarding it along. One thing to try is the following pattern, with regex turned on:
Source:
http://www.travelnasia.com/blog/map-attractions-bangkok-skytrain/(.*)Target:
http://www.travelnasia.com/blog/bangkok-skytrain-bts-mrt-lines/$1If
?lang=zh(or anything else) is present on the source URL, it will append it to the target URL. ^_^Forum: Plugins
In reply to: [Redirection] Extra characters being mysteriously added?I can’t reproduce this. If I were debugging this, I would install Redirection in a different WordPress instance in the same environment (same server, if you can), and see if the behavior is happening there.
Otherwise, try reinstalling the plugin, and maybe run a security audit on yer code, to make sure there isn’t anything else causing extra characters to be inserted. ^_^
Forum: Plugins
In reply to: [Redirection] Cannot import htaccess redirectionPlease look for other threads in this forum that refer to this issue, and mark this thread as resolved.
Forum: Plugins
In reply to: [Redirection] anyway to set up regular expression to redirect /&id=Try this, with regex turned on the redirection:
Source:
/page/.*/\?id=.*Target:
/Forum: Plugins
In reply to: [Redirection] Redirect to an imageTry changing the action to see if the redirect works. Pass-through may not work in this way for images.
Forum: Plugins
In reply to: [Redirection] Redirect loop caused by common wordYou’ll have to share the redirect patterns that you using. If you weren’t using regex, and were just making a regular redirect from
/test/test-loops/to/test/, the new-loops should not redirect.Did you check the log to make sure that was happening? Maybe it is something else. For instance, try turning off Redirection, and see if new-loops still redirects.
Forum: Plugins
In reply to: [Redirection] Redirect all generic 404 not found to a particular page404 pages are generated by a template in your theme, or is just a generic message created by WordPress. There is information in the Codex about creating a 404 page, but it is kinda heady. If you want to add one, you should use a child theme.
There are also a bunch of plugins that do stuff with your 404 page, so maybe something there can do what you want.
This plugin doesn’t create 404 pages, so please mark it as resolved. ^_^
Forum: Reviews
In reply to: [Remove Google Fonts References] Please add disable google maps functionHey, you should try turning off all your plugins and see if that is still the case. I have a few 4.0 sites, and it is definitely not loading Google Maps.
Forum: Plugins
In reply to: [Redirection] Links to images not working, became dead linksYeah, you should start a new thread, probably in How-To and Troubleshooting. They may be able to help you there. ^_^
Forum: Plugins
In reply to: [Redirection] Add Redirect shortcut and Export to CSV – Do not functionYou could try the latest version at https://github.com/johngodley/redirection/. Also maybe create one or two tickets there for those issues.
I can export to CSV fine, but the “add redirect” link has never worked for me, either.
Forum: Plugins
In reply to: [Redirection] Links to images not working, became dead linksIf I were you, I would look on the server (either ssh or SFTP) and look to see if there are images in
/wp-content/uploads/2014/01/. What you are seeing may be a thumbnail kept by WordPress, of your local cache. If you can’t see it in the media library preview grid, it is probably broken/missing/wrong permissions.At any rate, please mark this thread as resolved, since it wasn’t Redirection. ^_^