estockw1
Forum Replies Created
-
It was an issue with the .htaccess file. The rewrite module was incorrect after changing my domain.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~truegrou/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /~truegrou/index.php [L]
</IfModule>I needed to get rid of /~truegrou in the RewriteBase and RewriteRule:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Forum: Themes and Templates
In reply to: How do I apply a template to a new page?Figured it out, I needed to add the Template Name at the top of the template
Forum: Fixing WordPress
In reply to: 500 Error after updating functions.php, can't undoNevermind I found it 🙂
Forum: Fixing WordPress
In reply to: 500 Error after updating functions.php, can't undoAwesome. I figured that out, my last question is locating the functions.php file in the directory in Filezilla. Do you know where it’s located? I can dig through the directory but figured I’d find it much faster if you know where it’s located. Thank you for your help!
Forum: Fixing WordPress
In reply to: 500 Error after updating functions.php, can't undoI’m completely new at this and I’m afraid I don’t know how to use FTP in this way. Can you point me in the right direction?