RossMitchell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: White blank space on bottom of my websiteDifferent browsers react differently to errors in html and css.
Please use: http://validator.w3.org/
Or other validator to scan your site. Fixing the errors may help with your problem.
If fixing these problems requires you to change theme files then you should change to using a child theme.Significant errors I see include (may other warnings and error are probably of limited impact):
Error: Stray end tag head. From line 512, column 5; to line 512, column 11 Error: Start tag body seen but an element of the same type was already open.Forum: Fixing WordPress
In reply to: Site broke after latest WP update…In your wp-config.php file, find the line:
define('WP_DEBUG', false);
and comment it out, then add:define('WP_DEBUG', true); error_reporting(E_ALL); ini_set('display_errors', 1);Now re enable your plugins etc and see what error messages you get. If you need more support just paste the error messages on this thread, or start a new thread.
Forum: Networking WordPress
In reply to: How to migrate WP Multisite to another multisiteI am sure you would need multisite super admin login. With that you would need to load a database backup plugin and save all the databases. Then using the media manager etc you would save all the media and uploaded files.
Take note of all the plugins and themes that are present.
Grab a few other files like “robots.txt”, I would want a copy of the .htaccess file as well, not sure how, but recreating the permalinks setting should achieve the same thing.Forum: Fixing WordPress
In reply to: Plug-insSuggest that you just try it out and see what happens. Are you happy with how it looks, or can you fix it by customizing the css easily enough ?
Forum: Fixing WordPress
In reply to: my portfolio is broken after intall furion themeFirstly have you talked to the support forum behind the FURION theme, they may have a quick fix.
Otherwise you need to disable the errant plugin and theme, you can do this even without a working WordPress by going into your website files using either FTP or your website management file manager. Once there rename the directories that your theme and plugin are using, they are in the directories “wp-content/themes” and “wp-content/plugins”. Your website will then use the default theme and you will be able to login again.
Forum: Fixing WordPress
In reply to: Recovering websiteI am afraid that you are either in for a good deal of work recreating your website text as best you recall it. OR in this case godaddy wins and your friend is out of pocket $150.
Forum: Fixing WordPress
In reply to: Uploading a theme size to bigYou can use the cPanel username + password to login, the host address would have an “ftp.” prefix on your domain name (the www would be replaced by ftp).
OR in your cPanel hosting management, you could setup a new ftp login with its own username and password.
If you have any trouble then godaddy support will have the answers.
The error I am getting seems to be saying that your WordPress blog cannot access its own database. From your WordPress hosting point of view, the connection is nearly always to a local database and not a remote one. Are you really trying to use a database server which is remote to your hosting server ?
Have you talked with your website hosting support ?
Forum: Fixing WordPress
In reply to: Recovering websiteDo you have a backup of the website database ? This database contains all of the website text and settings.
Do you have backups of copies of all the images that were uploaded to the site, these images are not included in the database.
Similarly for any child theme (or theme) customizations ?From the database you will also be able to identify the theme and plugins that you used. The database will be able to identify which images were used in which content.
Forum: Fixing WordPress
In reply to: How do I change the header colour?You need to learn to use your web browser’s “browser inspector”, each browser has one (firefox / chrome etc). Using it will show you how your pages are com[posed, how the html and css are behaving. They will even let you easily experiment with some settings.
Then when you have changes you wnt to incorporate, login to your dashboard, then while viewing your page, on the top edge click “customizer” and choose the “additional css” tab.Forum: Fixing WordPress
In reply to: http to https wordpress core filesHave you gone through:
https://make.wordpress.org/support/user-manual/web-publishing/https-for-wordpress/For the moment suggest turning off the cache etc stuff. Get the site working before making it fast.
Also this site:
https://www.whynopadlock.com/
Can show places where the odd “http://” persists.- This reply was modified 8 years, 3 months ago by RossMitchell.
Forum: Fixing WordPress
In reply to: Custom Theme not working at allIn your wp-config.php file, please find this line:
define('WP_DEBUG', false);
And change it to:
define('WP_DEBUG', true);
and for good measure add:
error_reporting(E_ALL); ini_set('display_errors', 1);
and for good measure also:
define('SCRIPT_DEBUG', true);Then with your old theme active, see what your website displays now. Please post whatever it shows here.
- This reply was modified 8 years, 3 months ago by RossMitchell.
Forum: Fixing WordPress
In reply to: White Screen of Death!-I have deactivated my divi theme and activated another theme (the other theme works, but with the divi theme it’s blank)
Here is a starting point. Run with the theme that works.
-I have tried inserting /** error_reporting(E_ALL); ini_set(‘display_errors’, 1); define( ‘WP_DEBUG’, true);**/ into wp.config.php (and now that’s what it says on my blank screen)
This is looking like you have inserted a comment line, this would (or should) change nothing. This is curious.
Now load and activate the plugin: “https://wordpress.org/plugins/health-check/”
Delete and reload your Divi theme.- This reply was modified 8 years, 3 months ago by RossMitchell.
Forum: Fixing WordPress
In reply to: Site with Audience Conditional LogicI see various ways to do this, essential to all are:
– If a user is new then you must establish their level and subject.
– Otherwise you follow the track that a user is in.
This behavior requires tracking the status of the session, now the concept
of “a session” is very natural to us humans, but is not particularly natural to a web server and browser, they are using “a connection” protocol which is a different thing. Still there are ways of approximating a session in various ways.Though you may be able to create the required mechanisms using hook functions etc,
I would be creating a child theme instead so that I can take control of manipulating all the page content in its entirety by customizing the page templates.You could use cookies. This requires that the user is accepting cookies, fails utterly otherwise. I will not follow this line further as I have not used them this way.
I would create a page template that did this:
– If it were a new session I would know because the form variables are not present, so I would present a form that gave the level and subject choices, the view / submit / join button will submit the choices and re-render the page.
– If the form variables are present then create a hidden form and preserve the variables there so th session can be perpetuated. Use the settings to show the relevant menu and fetch the relevant page content. When the user wants to progress to another page, then rather than using a link as is conventional, the action needs to be dressed as a submit button so that the next page request gets to see the form aspects of this mechanism.
– You could instead use javascript (and possibly AJAX) to have the page refresh itself, fetch and render the new content, manage navigation etc. This would require that the user have javascript enabled, it would be possible to show friendly failure messages and explanations when javascript was not enabled.You could log the IP address and session choices in a custom database table, possibly incorporate the session time to time limit the persistence. Would have to provide for the case where an IP got reused.
Forum: Fixing WordPress
In reply to: WEbsite doesnt work – cant add to cart or check outWhich shopping cart are you using ? Suggest that you also seek support in the support forum of the shopping cart.
Also suggest that you load the healthcheck plugin, maybe it will see a problem, details here: https://wordpress.org/plugins/health-check/