Tamas Miletics
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: image from a url not displaying within a pageWorks. That’s the point. ??
T.
Forum: Fixing WordPress
In reply to: The right place for google tracking codeHello,
Didn't you get a child-theme (zip) for your theme? child theme means about an "empty" theme where you can overwrite functions of the original theme. (usually there is 3 files , style.css, functions.php, screenshot.jpg) in this case in the functions.php in the child-theme you can add the GA code and you dont't have to copy or modifiy the header.php files.
Tom M
Forum: Fixing WordPress
In reply to: Помощь с картинкамиHello,
It is not a wordpress feature, I think you should check the Yoast SEO (plugin) your theme and other plugin (cache) settings.
Tom M.
Forum: Fixing WordPress
In reply to: image from a url not displaying within a pageThe image url works, but withous https only: https://broadwatersc.org.uk/bsc/camtest/Webcam.jpg ??
- This reply was modified 3 years, 6 months ago by Tamas Miletics.
- This reply was modified 3 years, 6 months ago by Tamas Miletics.
Forum: Fixing WordPress
In reply to: Помощь с картинкамиHello,
If you check the page source you see all images are in lazy loading so a scritp load the images later (after the page loaded and the user scrolled it down.)
So the crawler see no images immediately afther the loading…Tom Miletics
Software Developer – https://www.mile.huForum: Fixing WordPress
In reply to: image from a url not displaying within a pageHello,
Your site is ssl protected (https), so the browser will not show any non secure (http) object (image).
Tom Miletics
Forum: Fixing WordPress
In reply to: The right place for google tracking codeHello,
The GA code is on the right place now but when you download an update for your theme it will remove the code from the header.php.
So using child theme is a better solution.
If you got it for your theme, upload it and activate. After it you can copy the header.php from the original theme (and modify it) , or the best solution you integrate it into the functions.php
https://developer.www.ads-software.com/themes/basics/including-css-javascript/
Tom Miletics
Forum: Fixing WordPress
In reply to: Sometimes getting an ‘Internal Error’ MessageHello Matt,
In most cases it is a memory limit problem. You should check the PHP enviroment settings, but I aggree with Steve you should check the PHP & server error logs. If you see no messages my be your error logging level is too low, check it in the php settings too. (<?php phpinfo(); ?>
Tom Miletics
Forum: Fixing WordPress
In reply to: Fatal error with WordPress UpdateHello,
I think you should check the enviroment and the php functions before the upgrade.
Try to modify the wp-includes/wp-db.php file:
(from line 612)original:
—// Use ext/mysqli if it exists unless WP_USE_EXT_MYSQL is defined as true. if ( function_exists( 'mysqli_connect' ) ) { $this->use_mysqli = true; if ( defined( 'WP_USE_EXT_MYSQL' ) ) { $this->use_mysqli = ! WP_USE_EXT_MYSQL; } }
—
for the check:
—
// Use ext/mysqli if it exists unless WP_USE_EXT_MYSQL is defined as true. echo "checking mysqli ... \n"; if ( function_exists( 'mysqli_connect' ) ) { $this->use_mysqli = true; echo "mysqli found ... \n"; if ( defined( 'WP_USE_EXT_MYSQL' ) ) { $this->use_mysqli = ! WP_USE_EXT_MYSQL; echo "disable mysqli \n"; } }
—
After it you will see (on a reloaded page) the statuses of the checking functions…
Tom Miletics
Developer
You can contact me privately:
https://www.mile.huForum: Fixing WordPress
In reply to: Our Website is gone after WP updateDear Katie!
I received the access thanks.
Symptom: It seems there was a problem under the upgrading process because some source files version was 5.6.4 some 5.8.
Solution: I up/downgraded ( ?? ) all core files to 5.7.2 version manually and now the site works again, you can use the admin too. May be you disabled some plugins what you have to (re)enable again to see the fine appearance of the page.`
Have a nice day / Namaste !
Tamas Miletics
Forum: Fixing WordPress
In reply to: Our Website is gone after WP updateHello Katie,
HM. Astra is php 7.3(7.4) comaptible so no need to change…
debug:
I see no changes on the site, so it seems the “display_errors” not works,(?),may bu you should check the server error log file again (or there is new debug.log file )
The SetEnv is interesting, I think it isn’t needed for wordpress and php.
If no new line in the log files i can offer only one solution if you trust me and give me an ftp access than may be I can check the WP. You can send me a message (or your email address via our site: https://www.mile.hu/hiba-bejelentes/
(free of cost naturaly)
Regards,
Tom MileticsForum: Fixing WordPress
In reply to: Our Website is gone after WP update(another tip, rename temporaly your .htaccess )
T.
Forum: Fixing WordPress
In reply to: Our Website is gone after WP updateHello Katie,
I think there is a php/wp calling problem in somewhere, (i think in the theme). You should try two possible things:
1: change the theme in the database manually to the twentytwenty (or similar which is uploaded)
(f. ex: https://uk.godaddy.com/help/change-a-wordpress-theme-in-the-database-26331 )
2: you can switch on the php and WP error reporting in the wp-config.php and after it check the message:
—// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', true ); @ini_set( 'display_errors', 1 );
( https://www.ads-software.com/support/article/debugging-in-wordpress/ )
(by the way may be you need to check your server’s security settings)
Tom
- This reply was modified 3 years, 6 months ago by Tamas Miletics.
Forum: Fixing WordPress
In reply to: Our Website is gone after WP updateHello Katie,
can you copy the last (5-10) lines from the server error log here?
Tom M.
Forum: Plugins
In reply to: [External Database Authentication Reloaded] Notice of Password ChangeHello Matt,
Try this solution:
function donot_send_password_change_email($t,$old,$new) {return false;}
add_filter( ‘send_password_change_email’, ‘donot_send_password_change_email’, 1, 3 );
Regards,
Tom Miletics