logicsound
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Custom Permalinks and 404 pageOk just got it fixed, The web guy before me did all his programming custom and not through the cpanel so I called my host company and this is what they had to add to httpd.conf file
<Directory “DIRECTORY”>
Options +FollowSymLinks
AllowOverride AuthConfig FileInfo
</Directory>
to you httpd.conf file and distilled it. This allows your .htaccess file
to override the redirect rules.Thanks for pointing me in the right direction, no I just need to get comments working but thats another post.
T
Forum: Installing WordPress
In reply to: Custom Permalinks and 404 pageTried adding that, no luck
do I need to contact my hosting company to see if mod_rewrite is turned on? I am on a vps server and my permalinks in my other website/blog work fine.
I just tried this
https://www.tutorio.com/tutorial/enable-mod-rewrite-on-apacheand it worked, I made a subfolder called modtest.
Thanks for the help!
Forum: Installing WordPress
In reply to: Custom Permalinks and 404 page/%category%/%postname%
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule># END WordPress
THANKS!
Forum: Themes and Templates
In reply to: Custom Theme problemswell, I scrapped the whole idea of having seperate header.php, sidebar.php,footer.php and just copied all of my code into the index.php and then added the loop. BAM! everything is working, I guess I am just not good enough at code to make it work seperatly. Now to find out how I can add widgets to my blog?? Thanks for the help….can anyone point me to someone who can help with future problems? I will pay!
Thanks
Forum: Themes and Templates
In reply to: Custom Theme problemsThanks but I have been trying to fix these errors for 12hrs now, no matter what I put in I get an error, I copied from one that validates and I still get an error
Line 38, Column 5: "DOCTYPE" declaration not allowed in instance <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/T…
I see the errors but don’t know how to fix them, can anybody heelp with these errors? Please
Thanks
TForum: Themes and Templates
In reply to: Custom Theme problemsI validated it online but I am not to good at code, so most of it I could not figure it out. `Right now I removed the <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>` from the header.php and it is as close as I can get it, the menu is stretched out and the footer wants to center (when you refresh page it is in center then shifts left) but is shifted left, if anybody can look at my code I would be very greatful!!!going on 24 hours working on this, and I bet it could have been done in 1hr by someone who knew what they were doing……
i am desperate….
T
Forum: Themes and Templates
In reply to: Custom Theme problemsI guess I should have added my site.
https://www.lockersnmore.com/blog
I will look at tehe above.
Thanks