ideag / gust

port of Ghost admin panel to WordPress
Other
69 stars 12 forks source link

WP 4.2.2: /Gust Page now is 404 #61

Closed lukeed closed 9 years ago

lukeed commented 9 years ago

Hey,

After upgrading to latest Wordpress & Gust, my clients can no longer use Gust. Navigating to http://perditionbbq.com/gust gives the 404 page & I'm not sure why

ideag commented 9 years ago

@lukeed have you tried flushing permalinks? Visit WP Admin > Settings > Permalinks and check if the problem still exists.

lukeed commented 9 years ago

Hmm... that did the trick. Still not sure why that happened though...

Thanks!

xetryj commented 9 years ago

This solution is not so easy, at it seems to be. I have a detailed manual, maybe it will help someone. So you go to functions.php and add here:

/* A function: */ flush_rewrite_rules();

Or

// And a method of the global object $wp_rewrite global $wp_rewrite; $wp_rewrite->flush_rules();

It helped me, hope it will be useful for you.