butlercenter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsNo that would be great
but when I customize the permalink structure to
https://www.arhistoryhub.com/hub/%category%/%postname%I get the same problem of the URL picking up the domain redirect
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsThe uncustomized permalink structure would be e.g.
https://www.arhistoryhub.com/hub/?cat=2When I customize the permalink structure to
https://www.arhistoryhub.com/hub/%category%/the URL picks up the domain redirect and resolves to
https://arhistoryhub.com/hub/new_site/?cat=2and will not load WP.
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsI have the permalinks set “Plain,”
https://www.arhistoryhub.com/hub/?p=123Does this need to be changed?
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsanyway the link is to
a href=”https://www.arhistoryhub.com/hub/?cat=2″Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsokay let me comment out so you can see what I am trying to say
<!–
Events
–>Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsthat is
“Events”
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsThe main menu item links are post category links, e.g.
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settings@luke Cavanagh, my current site URL is https://www.arhistoryhub.com/hub
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settings@sterndata, I have a redirect on the domain arhistoryhub.com to a non-WP webpage that is a landing page at arhistoryhub.com/new_site that links to the WP site at arhistoryhub.com/hub. Here is what the .htaccess reads in the public_html directory:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^arhistoryhub\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.arhistoryhub\.com$
RewriteRule ^/?$ “http\:\/\/arhistoryhub\.com\/hub\/new_site\/” [R=301,L]RewriteOptions inherit
# Use PHP54.4 Single php.ini as default
# Changed PHP handler from application/x-httpd-php54s to application/x-httpd-phpbetas on Fri Dec 18 00:45:34 MST 2015.
AddHandler application/x-httpd-phpbetas .php# BEGIN WordPress
# END WordPress
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settingsThere are no other references to ABSPATH in my wp-config.php
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settings@luke Cavanagh, I received the errors on theme twenty sixteen, theme twenty ten, and now on Education Hub free version theme.
Forum: Fixing WordPress
In reply to: PHP fatal error in wp-settings@sterndata, I have edited the wp-config.php, taking cues from other support forum posts for solutions. This is what the bottom of my wp-config.php looks like:
define(‘WP_HOME’, ‘https://www.arhistoryhub.com/hub’);
define(‘WP_SITEURL’, ‘https://www.arhistoryhub.com/hub’);/* That’s all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);/** Sets up WordPress vars and included files. */
require_once(ABSPATH . ‘wp-settings.php’);