Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to load my site or loginCan you log in here:
Forum: Fixing WordPress
In reply to: how to edit code in wordpress 3.9Is file editing disallowed in your wp-config.php?
It’ll look like this:
define('DISALLOW_FILE_EDIT', true);It’s (in my opinion) a good thing to disallow any kind of editing on a live server. I personally blanket disallow it across all sites I manage. All editing, even for the most minuscule thing should be done locally and then pushed to the live server.
Forum: Fixing WordPress
In reply to: Posts Page ProblemNot sure. Do you have any content in that particular defined page. I see you fixed things now anyway 🙂
Forum: Fixing WordPress
In reply to: Posts Page ProblemIt’s this that’s spitting out that content, right down near the bottom:
<?php the_content(); ?>Forum: Fixing WordPress
In reply to: Posts Page ProblemThere seems to be a mis-edit in that particular template. Elements that should be in the header are appearing after the
<body>tag.Can you post the front page template somewhere like pastebin.com and then post the link in here so that we can have a look-see?
Forum: Fixing WordPress
In reply to: Pics not appearingTry disabling the resizing module (I don’t use JetPack so I can’t name it). See if that makes a difference.
Forum: Fixing WordPress
In reply to: Code below opening body tagWhat kind of code is it?
Forum: Fixing WordPress
In reply to: Pics not appearingI take that back about the images on here. It was a local issue <blush>
Anyway, those images of yours that aren’t loading are being resized by a jetpack module. Maybe there’s a temporary issue there?
Forum: Fixing WordPress
In reply to: How to locate a script in the WP files easily?Everything is easier and quicker through the shell, it’s these pesky GUI thingamabobs that slow everything down. 😉
What’s the nature of the file. You say it’s a script, what’s the extension and what does it do?
Forum: Fixing WordPress
In reply to: Pics not appearingI suspect it’s a temporary WordPress/JetPack issue. You may notice that at the time of writing, even the avatars on here aren’t loading.
Forum: Fixing WordPress
In reply to: How to locate a script in the WP files easily?If you have shell access to the server:
find . -name 'your-script.ext'Forum: Fixing WordPress
In reply to: Accidently deleted .htaccess fileTo the root of your WordPress installation.
Forum: Fixing WordPress
In reply to: Site has messy outlook after backupping via FTPYou’ve changed it to load the nav menu, not the main stylesheet.
Forum: Fixing WordPress
In reply to: Accidently deleted .htaccess fileYou can find a basic WordPress .htaccess file example here:
https://codex.wordpress.org/htaccess
Try creating that and see if it helps.
Forum: Fixing WordPress
In reply to: Site has messy outlook after backupping via FTPThe links to certain elements are different. For instance a stylesheet URL is given as:
http://classicgym.y.neutech.fi/tampere/wp-content/themes/classicGym/style.cssIf I change that to:
http://www.classicgym.fi/tampere/wp-content/themes/classicGym/style.cssThe stylesheet loads correctly.