Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Proper header setting@jronder
From the Nginx docs:
syntax: gzip_vary on | off;
default: gzip_vary off;
context: http, server, locationEnables or disables inserting the “Vary: Accept-Encoding” response header field if the directives gzip, gzip_static, or gunzip are active.
So, adjust your nginx.conf file, or, speak with your hosts to get the setting enabled.
Forum: Fixing WordPress
In reply to: Short URL's still linking to temp site addressReplace:
192.185.21.105/~gemini75with
www.geminimoonmosaics.comHow does this even happen? Is it the theme I am working with?
No, it’s a side effect of setting up a site without the proper DNS porpagation.
Forum: Fixing WordPress
In reply to: Password and UsernameIf you’ve reset the password and viewed the username, what other details do you need?
Forum: Fixing WordPress
In reply to: Short URL's still linking to temp site addressYou could try the search and replace plugin:
http://wordpress.org/plugins/search-and-replace/
You might encounter some issues with serialized data so an alternative but slightly more technical option would be:
https://wordpress.org/plugins/wp-migrate-db/
The first plugin is a fix-in-place thing. Enter a text string to search, so your IP address based URL, and replace with your proper domain.
The second would require entering the same details, downloading the amended database and then replacing the one that’s already in place.
Forum: Fixing WordPress
In reply to: Website text not showing up, only images and text linksYour text is white on a white background. It’s in your style.css defined as:
body { color: #FFFFFF; <--- here font-family: Arial,Helvetica,sans-serif; font-size: 14px; line-height: 1.5em; text-rendering: optimizelegibility; }Forum: Fixing WordPress
In reply to: Royal Slider position sizeYou didn’t include the links.
Forum: Fixing WordPress
In reply to: Hide image with facebook and email login (if login in)Try this then:
<?php if ( ! is_user_logged_in() ) { ?> // Your HTML <?php } ?>Forum: Fixing WordPress
In reply to: Language filesDoes this site help?
Forum: Fixing WordPress
In reply to: Hide image with facebook and email login (if login in)Try this:
<?php if ( is_user_logged_in() ) { ?> // Your HTML <?php } ?>http://codex.wordpress.org/Function_Reference/is_user_logged_in
Forum: Fixing WordPress
In reply to: Contact forms – not receiving emailsIf the SMTP plugin meant that the emails didn’t send, it’s most probable that your SMTP details weren’t right. Did you see error messages?
Forum: Fixing WordPress
In reply to: Call to undefined function image_slider_show()I think your best course of action would be to grab a new slider plugin. This one’s nice:
Forum: Fixing WordPress
In reply to: Possibly got hacked?If you do a fresh install with a new database then at least you’ll know the site is clean. However, you need to find out how your site was compromised in the first place. If you don’t, the attacker could just walk back in again.
Forum: Fixing WordPress
In reply to: Call to undefined function image_slider_show()Is the slider a custom plugin? It looks like it’s a customised Anything Slider install. Where did you download it from?
Forum: Fixing WordPress
In reply to: Login button disappeared – no site access – PLEASE HELP!Your wp-login.php file may be corrupted. Replace it with a new version from the WordPress download file.
Forum: Fixing WordPress
In reply to: Possibly got hacked?I think it’s pretty certain that your site was compromised. This is what’s usually recommended:
You need to start working your way through these resources:
How to clean and fix hacked WP blog:
http://codex.wordpress.org/FAQ_My_site_was_hacked
http://wordpress.org/support/topic/268083#post-1065779
http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/
http://ottopress.com/2009/hacked-wordpress-backdoors/
http://www.jtpratt.com/how-to-fix-a-hacked-wordpress-blog/
http://sakinshrestha.com/wordpress/fix-if-your-wordpress-site-is-hacked/
http://www.wpbeginner.com/wp-tutorials/how-to-find-a-backdoor-in-a-hacked-wordpress-site-and-fix-it/Harden your WP installation: http://codex.wordpress.org/Hardening_WordPress
Additional Resources:
http://sitecheck.sucuri.net/scanner/
http://www.unmaskparasites.com/
http://blog.sucuri.net/2012/03/wordpress-understanding-its-true-vulnerability.html