LABachlr
Forum Replies Created
-
Great. Thanks. It’s already installed in the root folder. Can I just move the files over to a new directory like that doc suggests and work on it there, or are those instructions for only when I want the WordPress site to be live? And if I do move it (vs doing a fresh install in another folder), is that going to screw up the link to the database, or is the database path a full path in the coding?
If I need to do a fresh install into a new folder, that’s fine, but I would prefer to keep this installation, as I have already created some pages.
Btw, with this setup, what will the URL to the blog post be?
https://website.com/blog-post-title
OR
https://website.com/blogfilesfolder/blog-post-title
Thanks.
Forum: Fixing WordPress
In reply to: What's the best way to emulate this website?OK. Thanks.
Forum: Themes and Templates
In reply to: How do I modify this WordPress theme so the background is white?I figured it out. I just had to edit the style.css file.
Forum: Fixing WordPress
In reply to: [Plugin: Events Calendar] Time and Day of week not showingAnyone?
Forum: Fixing WordPress
In reply to: Publish page and not have it appear in navigation bar at the top?Great. Thanks.
Forum: Fixing WordPress
In reply to: Paragraph tag dissappearing upon save or code view changeJust thought I would let everyone know that the fix that I found was to use Safari on an XP machine. Crazy, but it works for me every time.
Safari 3.1.2
WP 2.5.1Forum: Fixing WordPress
In reply to: [Plugin: Events Calendar] Time and Day of week not showingUsing WP 2.5.1
Forum: Fixing WordPress
In reply to: Having problems posting a page – Character limit?OK. Now I tried using the same coding for another page that I already did that shows fine (it keeps the paragraphs), and it still won’t work for this page. I tried another page and it won’t work for that as well. Suggestions?
Forum: Themes and Templates
In reply to: Need help customizing header of templateI just tried it and the new image was way off center.
The dimensions of the original gif is W332 X H166.
The dimensions of the new gif is W600 X H310.
What do I have to change in the coding so the new gif will be correctly placed in the header?
Forum: Fixing WordPress
In reply to: How to move my site to root directory/Upgrade first?/Static homepageI tried it both with and without a copy of the files in the new location. Both gave errors.
When I tried changing the URL’s without a copy of the blog files in the new location, it tried to go to the following location: “https://www.mysite.com/wp-login.php?redirect_to=%2Fblog%2Fwp-admin%2Foptions.php”.
After that, I could not get back into the blog. So, I logged into my database and in wp_options, I changed the “siteurl” and “home” values back to the original URL. I then went into the Pages section, clicked on Edit next to one of the pages, and then saved the page without changing it. All of the pages were accessible again.
Since the above didn’t work, I put a copy of the blog files and folders in the new directory and tried changing the URL’s. Here is the error that I got:
Fatal error: Call to undefined function: nocache_headers() in /home/user/public_html/wp-login.php on line 10
I had to do the same thing as above to get the blog back up and running again.
Could it be my .htaccess file?
# 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
If not, what am I doing wrong? I’m following the instructions on the link I mentioned in my original post.