• I have done a number of scheduled posts for my blog. They publish fine, but they do not create a page as when you click on the headline you get a 404 error.

    Can anyone help?

    You can see the problem at https://www.turnupmyworkout.com/blog

    The posts that are affected are 12 Days to a Healthy Holiday.

    Thanks so much!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Same Problem !

    I use scheduled post for an upcoming concerts category.
    Each upcoming concert is a scheduled post and I need visitors to be able to wiew it.

    The problem is that scheduled posts URL get a 404 error, unless visitor is logged in as administrator.

    I want all the users/vistors to be able to display scheduled posts when they know the URL.

    Please, anyone could help ?

    Hi,

    Set your desired permalink and add this code in htaccess;

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Thanks,

    Shane G.

    Thanks Shane !

    I haven’t tested your tip because I’ve found the solution in the meantime thanks to this post :
    https://www.ads-software.com/support/topic/141099?replies=2

    The only annoying thing is that it needs to make a (minor) change in the WP core (wp-includes/query.php).

    Thread Starter adamj3333

    (@adamj3333)

    Shane,
    Thanks for your help. I did this (had to upload my own .htaccess file and still nothing. Will it fix the problem with the posts that have already been posted or will I only notice the difference on the next scheduled post?

    Thanks for your help.

    Adam

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Scheduled Posts – Link to 404’ is closed to new replies.