robertallen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving WordPress directoryThat’s very strange. It should be wp-content, not wordpress-content.
FileZilla is a program, actually. https://filezilla-project.org/
If you download the client, and add your FTP hosting information into it, log in, and then you should be able to perform a search for wp-config.php
It shouldn’t be hidden, unless you have some type of Security plugin installed.
Forum: Fixing WordPress
In reply to: Website is slowAlso, try adding this to your .htaccess file…
#Begin gzip and deflate <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/css application/x-javascript text/plain text/xml image/x-icon </IfModule>This compresses files at the server level before it sends out to the browsers.
This is my favorite article on how to speed up your WordPress site.
http://diythemes.com/thesis/improve-website-pagespeedAlso, elminiating a lot of useless plugins can really help.
Forum: Fixing WordPress
In reply to: Blog defaults to "blog-2" – how do I stop this?Have you tried installing Custom Permalinks plugin and renaming it manually?
Forum: Fixing WordPress
In reply to: Moving WordPress directoryThat’s really odd, as there should be a wp-config file there somewhere.
Have you tried a search on your FTP?
In FileZilla you can go to your root directory of your hosting and perform a Remote Search for wp-config.php
Forum: Fixing WordPress
In reply to: Display Thumbnail Images on Categories and TagsYou’re wanting to put a thumbnail next to each post, correct?
This is usually done in the index.php file.
I usually put
<?php the_post_thumbnail() ?>somewhere in there and wrap a div around it.<div class="post_thumbnail"> <?php the_post_thumbnail() ?> </div>Then you can position it and style it however you’d like.
Forum: Fixing WordPress
In reply to: Moving WordPress directoryDid you use a security program that might have moved that wp-config.php file somewhere else? I know Sucuri does this, and moves it to the root directory of your hosting.
Forum: Fixing WordPress
In reply to: 404 PageWoo hoo! Glad I could help and that it worked. You’re most welcome.
Forum: Fixing WordPress
In reply to: 404 PageYou can essentially put it anywhere, but try putting it between BEGIN and END WordPress. I’m no .htaccess expert, but I think that might work.
Forum: Fixing WordPress
In reply to: 404 PageTry this…
To ensure the server finds your 404 page, add the following line to your .htaccess file:
ErrorDocument 404 /index.php?error=404Forum: Fixing WordPress
In reply to: 404 PageHave you tried copying the page.php theme in your theme folder and make it 404.php?
Inside the file there’s an area that says something like:
<?php the_content('Read more...'); ?>Replace it with a 404 Error message.
Forum: Hacks
In reply to: Dynamic Dropdown lists for Categories, Sub-Categories, Posts!I know this post is 4 months old, but I, too, need an answer for this. Does anyone have a solution?
Forum: Plugins
In reply to: [EWWW Image Optimizer] Trouble installing pngoutWorked like a charm! Thank you so much. (I haven’t had FileZilla checked to something other than auto in years)
Forum: Plugins
In reply to: [EWWW Image Optimizer] Trouble installing pngoutOh I didn’t think of transferring binary. I’ll try that. Thank you so much.
http://www.singleinstilettos.com/sitemap_index.xml
attachment-sitemap.xml works on this site but not on the one here…
Forum: Plugins
In reply to: [Plugin: WordPress SEO by Yoast] Error loading stylesheet on sitemapThank you so much! I had another web site to fix this problem and I couldn’t figure out why it wasn’t working this time.