wpsecuritylock
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Annoying "establishing a database connection" after site updatesI have the same issue with several sites running WP 3.5.
Any ideas how to fix this?
Forum: Fixing WordPress
In reply to: Password protected page does not workTry opening your site in a different browser and see if it works. Also try deleting your browser cache and cookies.
Forum: Fixing WordPress
In reply to: Remove author and timeSorry but without seeing your files, it’s hard to say.
Try using an html editor and search for the code you removed before in all files.
Example: <?php the_author() ?>
Forum: Fixing WordPress
In reply to: Remove author and timeLooks like you’re using a premium theme at
http://www.dreamtemplate.com/templates/4179/deskspace.html
You’ll have to check with the developer there since those files aren’t available to the public.
Forum: Installing WordPress
In reply to: 1-click applicationWordPress will not send you an email for a 1-click install at mediatemple.
Forum: Installing WordPress
In reply to: From the beginningDid you change the nameservers in the registrar to point to your hostgator account? It can take up to 24 hours to propagate to the new server. Try calling Hostgator and see if they can help resolve your domain.
Forum: Fixing WordPress
In reply to: PHP include is not working in pageI agree with Chris!
I don’t use any plugins that embed php code in post, pages or widgets.
Probably the easiest is to use short codes.
Forum: Installing WordPress
In reply to: Problem in upgradeForum: Installing WordPress
In reply to: Problem in upgradeTry this link to log-in http://vsagar.com/wp-login.php
Forum: Fixing WordPress
In reply to: Admin functions not working properlyI suggest making a backup of your site and database and doing the update.
You’re using StudioPress. They have an excellent support forum for their themes. If your upgrade doesn’t work then try there.
Forum: Fixing WordPress
In reply to: PHP include is not working in pageThis is a guess, but try putting the full path to the file
<?php include (“http://yourdomain.com/wp-content/themes/twentyeleven/slider.php”);?>
Forum: Fixing WordPress
In reply to: Menu links do not workoops forgot to mention whenever save your permalinks it creates a new .htaccess file if it doesn’t exist or re-writes to it if it does.
Forum: Fixing WordPress
In reply to: Menu links do not workYou have WordPress 3.4.1, so you’re only one behind but you should update. It contains some bug fixes and security updates. That might help your menu problem too.
You have your site installed in a folder called wordpress. Your .htaccess file should be inside public_html/wordpress.
If you’re connect via ftp and not sftp your host may not allow you to change “hidden” dot files.
Try to delete the .htaccess file in the /wordpress directory and then save your custom permalinks again and see if that works.
Forum: Fixing WordPress
In reply to: secure connectionForum: Fixing WordPress
In reply to: PHP include is not working in pageYou cannot write to “include” in a page or post. You would want to create a shortcode or use a plugin to do that.