Forum Replies Created
-
AuthorPosts
-
You must have valid license to access this content.You must have valid license to access this content.You must have valid license to access this content.You must have valid license to access this content.
FocuxTheme Support
Keymaster.htaccess file rewrite the page URL, for example, rewrite http://domain.com/?p=1 to http://domain.com/1
so the theme keeps work even without this file.But I found if I enable the URL rewrite, the detail page or post still doesn’t work.
This issue is my first time to see, but I’m sure it’s not the theme issue. Is it possible to reinstall WordPress?
I’m not sure how you deployed this site on your site, so it’s hard to know the real reason. This guy had the same issue, you can check his article: https://codeinreview.com/145/my-wordpress-upgrade-process-and-fixing-a-blank-website-error/You must have valid license to access this content.You must have valid license to access this content.FocuxTheme Support
KeymasterI found if I set the permalink to default, the inner page works fine.
So, please give two new test:1. delete .htaccess from wp root folder, then go to WP backend > Settings > permalinks, only resave it.
2. check wp-content/themes/ folder, what’s the theme folder name? Samsara or samsara.Sorry for this, because I’m sure it’s a server issue if you install any news. I can’t control your server, so I can only search and ask you here.
You must have valid license to access this content.FocuxTheme Support
KeymasterOK.
On wp-config.php side, you can give couple of test as below
Test 1:
Remove the following codes from wp-config.php
** * Other customizations. */ define(‘FS_METHOD’,’direct’);define(‘FS_CHMOD_DIR’,0755);define(‘FS_CHMOD_FILE’,0644); define(‘WP_TEMP_DIR’,dirname(__FILE__).’/wp-content/uploads’); /** * Turn off automatic updates since these are managed upstream. */ define(‘AUTOMATIC_UPDATER_DISABLED’, true);
Then, deactivate the theme and reactivate it.
Test 2: If test 1 doesn’t work, please try to add the following codes to wp-config.php
if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); define('WP_HOME', '/'); define('WP_SITEURL', WP_HOME); define('WP_CONTENT_URL', WP_HOME . '/wp-content'); define('WP_CONTENT_DIR', realpath(ABSPATH . '../wp-content/'));Thanks
-
AuthorPosts
