Unable to save posts with permalink options
-
In a fresh WordPress installation, I only can save and update posts and pages if permalink option is set to “plain”.
When try to update I get the red label displayed“Updating failed”
Server is an Apache2 installation.
I followed all the requirements listed in the documentation.
FollowSimLynks
and
AllowOverride
are set.
Fired the rewrite module with
“a2enmod rewrite”
.
.htaccess
exists, is owned by ‘www-data’,
I tried the 777 permissions to check,
I checked that it is edited when permalink option is set in dashboard (I get “Permalink structure updated.” confirmation aswell)…My “
/etc/apache2/sites-enabled/000-default.conf
” looks like:
`<VirtualHost *:80>
ServerName example.com
ServerAdmin webmaster@localhost
Redirect permanent / https://example.com/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:80>
ServerName blog.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/blog
<Directory />
Options FollowSymLinks
AllowOverride FileInfo
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:8019>
<Location />
Require ip x.x.x.x/24
</Location>
ServerName example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html2/phpmyadmin
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost> `What am I doing wrong?
The page I need help with: [log in to see the link]
The topic ‘Unable to save posts with permalink options’ is closed to new replies.