jxtgroup
Forum Replies Created
-
Thanks!
Forum: Fixing WordPress
In reply to: Really Need Help getting My Site back UpTry removing the YARPP plugin folder from your FTP. (Make a backup just in case you still need it)
Forum: Fixing WordPress
In reply to: Category using page.php templateIt seems that my theme is not recognizing the category-news.php file. How can I make the theme load this file?
Yes, that is the complete htaccess. I will check with the host. What’s weird is that posts and archives work via permalink, only pages don’t.
I will try creating another subblog and see if it persists.
Thanks for your help.
Yes, when I de-activate all plugins, instead of showing the error it displays the home page (but not the actual page I am looking for).
Thanks Ipstenu.
I replaced my htaccess file with this code and I am still getting the same error.
I am using a SubDomain. Here is the htaccess file:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
Forum: Networking WordPress
In reply to: Cannot Login to Individual Site DashboardsFound a fix for this here:
https://premium.wpmudev.org/forums/topic/login-redirect-loop-only-from-subdomain-blogsI added these lines to wp-config.php and it works now:
define( ‘COOKIE_DOMAIN’, ‘domain.com’ );
define( ‘SITECOOKIEPATH’, ‘/’ );
define( ‘COOKIEPATH’, ‘/’ );
define(‘ADMIN_COOKIE_PATH’, ‘/’);