Greg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: SSL – Getting http instead of httpsIf you’re looking to force SSL on all pages and have mod_rewrite enabled, you can add this code to your .htaccess file:
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [R,L]
Forum: Installing WordPress
In reply to: GoDaddy & WordPressLooks like both links are redirecting to a GoDaddy placeholder page, did you by chance accidentally “park” your domain?
https://support.godaddy.com/help/article/338/parking-your-domain-name
Forum: Fixing WordPress
In reply to: Domain and Server switchAs for moving the site, there are some steps you need to take once you’ve moved the files (and database) from your testbed to its new home, check out the codex here for that: https://codex.www.ads-software.com/Moving_WordPress
I’m not entirely clear what your question about the nameservers is, are you moving their hosting, or just moving your site to their existing server?
Forum: Fixing WordPress
In reply to: Redirect In HtaccessLooks like you got it figured out? I checked your site and all the categories seem to working like you wanted.
Forum: Fixing WordPress
In reply to: My WP is hacked, site is blockedHere’s a couple of good resources to start with:
https://codex.www.ads-software.com/FAQ_My_site_was_hacked
https://codex.www.ads-software.com/FAQ_Security#I.27ve_been_hacked._What_do_I_do_now.3F
Forum: Everything else WordPress
In reply to: 404 not found errorNothing short of deleting is irreversible. Search and replace should get you back on track.
Forum: Everything else WordPress
In reply to: 404 not found errorForum: Installing WordPress
In reply to: New install – homepage is a blank white screenI tried /index.php and it loaded blank.
Forum: Installing WordPress
In reply to: New install – homepage is a blank white screenCan you check your webserver and PHP error logs?
Forum: Installing WordPress
In reply to: Where to Install WordPress1) If you install WordPress into the root directory (/public_html/) there’s definitely a possibility that it could interfere with your production site. I would recommend installing it into a subdirectory so that the two are separate while you tinker.
2) You can do this in a couple of different ways:
- A redirect from the https://www.site.com/ to https://www.site.com/wp
- Move your WP site into the root directory once complete, slightly more complicated: https://codex.www.ads-software.com/Moving_WordPress#When_Your_Domain_Name_or_URLs_Change
Forum: Fixing WordPress
In reply to: Can't Find Where I Did What I DidSince that’s a premium theme, I can’t check myself, but can you look in Admin > Appearance > Widgets and look on the right side of the page and see if it’s listed there as a “text” object?
Forum: Fixing WordPress
In reply to: right click disabledTo help narrow it down, try switching to the default “Twenty Twelve” theme and see if right-click works. If it works, then it’s a theme option that’s causing the problem.
If right-click still doesn’t work, try disabling your plugins one by one, refreshing your main page each time, and trying the right-click. That should help you narrow down the plugin (if applicable).
Forum: Fixing WordPress
In reply to: Leave a Reply links brokenIn the Admin Panel, check in Settings > General and make sure you have the correct WordPress URL. If you’re pointing to https://hspbooks.com change it to point to the actual blog.
Forum: Fixing WordPress
In reply to: No Blog posts are working??From that excerpt, it looks like your server is trying to redirect visitors to a custom 500 error page which doesn’t exist. Looks like another issue, but it does tell us that your server is kicking out a server error message.
Do you know where to find your PHP error logs? There may be something of more substance in those, as opposed to the webserver error logs.
Forum: Fixing WordPress
In reply to: No Blog posts are working??How about those error logs, have you looked through them? If PHP is spitting out blank pages, it should be logging a reason.