gobot
Forum Replies Created
-
Forum: Plugins
In reply to: [Category to Pages WUD] Category in urlHi I have the same problem.
Scenario:
I checked Add Categories to Pages, but not Tags.
I checked Activate for Unique categories (tho I could go with post categories)
Settings Permalinks, I set Custom = /%categories%/%postname%/
(I saw no mention of permalinks in your docs…?)
My url = sub.localhost
My page slug = test
In my edit Test Page, I put it in Unique category = My Cat
At the top of the edit Test Page, the Permalink still says
https://sub.localhost/testHowever, that link no longer works, as expected.
I expect it to now be either
https://sub.localhost/my_cat/test
https://sub.localhost/my-cat/testBut neither work.
So the permalink is broken in every way now.
I tried with Unique category = ‘pages’, a category without a space, still nada:
https://sub.localhost/pages/testI changed Setting Permalink back to Postname, and the original link works, the unique category is ignored.
1. Please try to reproduce, or tell me where I messed up!
2. Do you convert spaces in categories to hyphen or dash?
thx-philForum: Plugins
In reply to: [Airpress] App IDThanks this helped me too!
Forum: Plugins
In reply to: [Airpress] Debugger Won’t ActivateI didn’t have an activation error. Installation and activation worked.
However, when I checked the ‘Enable Debugging’ control in the Airpress admin page, the Airpress plugin code wants to log stuff in the airpress.log file. This file is not created during installation.
To fix, you will need to create the text file, from the command line or a file manager. On your Mac or linux host shell, go to your WordPress document root directory, and do this:
sudo touch wp-content/plugins/airpress/airpress.logSet the permissions too. Assuming the group is the http server:
sudo chown 664 wp-content/plugins/airpress/airpress.logOn Windows, try something like this. You just need to create the file.
echo hey > wp-content\plugins\airpress\airpress.log