jonas-e
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: How to get REST response in JSON?Found out with help from Clorith in the IRC channel, it works like this:
http://ellehauge.net/wp-json/wp/v2/posts/Guess I got fooled by the ‘postman’ extension for chrome!
I started by accessing the endpoint http://ellehauge.net/wp-json/ and then clicked on one of the links and assumed that postman opened it correctly, it didn’t.
Forum: Reviews
In reply to: [Multipage] Just what I was looking for!Cool 🙂
Forum: Reviews
In reply to: [Multipage] Just what I was looking for!BUG REPORT:
The plugin doesn’t work before the post has been published! TOC, headers and links are generated – but when navigating to the next page, it shows exactly the same content again – ie the content from the first page on all the following pages. Once the pages is published it works fine.Forum: Reviews
In reply to: [Multipage] Just what I was looking for!Cool, I hadn’t seen the settings page! I don’t think that is mantioned in the documentation, is it?
Forum: Localhost Installs
In reply to: permalink not working after migration to localhostYo, it seems I figured it out! Added directory to my virtualhost with allowoverride all option:
<VirtualHost *:80> DocumentRoot /mnt/jbod_01/jonas/sites/ellevator.net/apache/prod.wp.ellevator.local ServerName prod.wp.ellevator.local <Directory /mnt/jbod_01/jonas/sites/ellevator.net/apache/prod.wp.ellevator.local> Options FollowSymLinks AllowOverride All </Directory> </VirtualHost>– and restarted the apache2 deamon.
Forum: Localhost Installs
In reply to: permalink not working after migration to localhostHere is what my apache virtual host looks like:
<VirtualHost *:80> DocumentRoot /mnt/jbod_01/jonas/sites/ellevator.net/apache/prod.wp.ellevator.local ServerName prod.wp.ellevator.local #ServerAlias prod.wp.ellevator.local </VirtualHost>And my apache2.conf:
<Directory /mnt/jbod_01/jonas/sites/ellevator.net/apache/> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory>