fhithich
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Address URLI’m really confused. I’ve changed nothing. I was getting loads of complaints that users were getting security warnings but I must admit they’ve seemed to have stopped. Fingers crossed.
Thanks for your help.
Forum: Fixing WordPress
In reply to: WordPress Address URLThank you for your help. I located the wp-config.php file but can not see the two define statements you mention.
Here is my wp-config.php file. I have replaced anything that looks remotely like a password or authorisation key by asterisks, just in case.
<?php
/**
* The base configurations of the WordPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys, WordPress Language, and ABSPATH. You can find more information
* by visiting {@link http://codex.ww.wp.xz.cn/Editing_wp-config.php Editing
* wp-config.php} Codex page. You can get the MySQL settings from your web host.
*
* This file is used by the wp-config.php creation script during the
* installation. You don't have to use the web site, you can just copy this file
* to "wp-config.php" and fill in the values.
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'ssf0qfc_a-wor-tb');
/** MySQL database username */
define('DB_USER', 'ssf0qfc_a-wor-tbx-u-137765');
/** MySQL database password */
define('DB_PASSWORD', '************');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.ww.wp.xz.cn/secret-key/1.1/salt/ ww.wp.xz.cn secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', ''************');
define('SECURE_AUTH_KEY', ''************');
define('LOGGED_IN_KEY', ''************);
define('NONCE_KEY', ''************);
define('AUTH_SALT', ''************);
define('SECURE_AUTH_SALT', ''************);
define('LOGGED_IN_SALT', ''************');
define('NONCE_SALT', '************);
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de.mo to wp-content/languages and set WPLANG to 'de' to enable German
* language support.
*/
define('WPLANG', '');
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
// Enable WP_DEBUG mode
define( 'WP_DEBUG', false );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', false );
// Disable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( 'SCRIPT_DEBUG', true );
/**
* Change this to true to run multiple blogs on this installation.
* Then login as admin and go to Tools -> Network
*/
define('WP_ALLOW_MULTISITE', false);
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
/* Destination directory for file streaming */
define('WP_TEMP_DIR', ABSPATH . 'wp-content/');Forum: Fixing WordPress
In reply to: WordPress Address URLThanks. I deactivated each of my 9 plugins in turn but it made no difference to the permalinks settings
Forum: Fixing WordPress
In reply to: WordPress Address URLForum: Fixing WordPress
In reply to: WordPress Address URLSorry, I’m none the wiser.
In the General Settings, both the WordPress Address (URL) and Site Address (URL) are set to http://www.fhithich.uk .
I am happy with this.
In the Permalink Settings, the setting is https://www.fhithich.uk/…
I would like to change this, but I don’t see how.
HTTP has served me well for 11 years, ranking lower in search engines, I can live with. It is a non-commercial site with a small regular user base, and I need to keep costs down. I am reluctant to spend the £150 my host (123Reg) asks for issuing their certificate. As for Let’s Encrypt, it’s a complete mystery. So I am happy to leave things as they are — if it weren’t for this Permalink Setting.
Thanks.
Forum: Fixing WordPress
In reply to: General and Permalink SettingsThanks I’m not with GoDaddy but 123 Reg. However they do supply LetsEncrypt. I’ll look into trying to figure out our this works tomorrow.
- This reply was modified 1 month, 2 weeks ago by fhithich.
Yes, it seems to be working now. Many thanks for your help.
Mick Garratt
I removed the ‘This Week’ line [tptn_list heading=”0″ daily=”1″ limit=”10″ Offset=”10″ daily_range=”7″] and the ‘All time’ list is now working.
I am not sure how to install the 4.2.1-beta1 version.
- This reply was modified 3 months, 2 weeks ago by fhithich.
Thanks again. First of the ‘Enable Cache’ checkbox was already not checked—there is a warning “Modified from default setting”. I can not remember unchecking this.
Anyway queries were:
SELECT wp_posts.*,wp_top_ten_daily.postnumber, SUM(wp_top_ten_daily.cntaccess) as visits, wp_top_ten_daily.blog_id
FROM wp_posts
INNER JOIN wp_top_ten_daily
ON wp_top_ten_daily.postnumber=wp_posts.ID
WHERE 1=1
AND ( wp_posts.post_date <= '2026-02-17 06:26:28' )
AND wp_posts.post_password = ''
AND wp_posts.post_type = 'post'
AND ((wp_posts.post_status = 'publish'
OR wp_posts.post_status = 'inherit'))
AND wp_top_ten_daily.blog_id IN ('1')
AND wp_top_ten_daily.dp_date >= '2026-02-11 0:0:0'
GROUP BY wp_top_ten_daily.postnumber
ORDER BY SUM(wp_top_ten_daily.cntaccess) DESC
LIMIT 10, 30and
SELECT wp_posts.ID
FROM wp_posts
WHERE 1=1
AND ( wp_posts.post_date <= ‘2026-02-17 06:26:29’ )
AND wp_posts.post_password = ”
AND wp_posts.post_type = ‘post’
AND ((wp_posts.post_status = ‘publish’
OR wp_posts.post_status = ‘inherit’))
ORDER BY wp_posts.post_date DESC
LIMIT 0, 30
Screenshot uploaded to my Dropbox as before https://www.dropbox.com/scl/fi/sh2bdgaopa0i0m64m2ltj/IMG_0943.PNG?rlkey=66aiedap8zwii3i3ljm4q582e&st=9hjwf1qk&dl=0
I’ve loaded the screenshot up to Dropbox here https://www.dropbox.com/scl/fi/mayewcyyj0ep946ffnxtw/IMG_0942.PNG?rlkey=buth6guf2b3o2uvtvsy0heo6e&st=iq8vhvcm&dl=0
Thanks for the quick response. I installed the plugin as you suggested, but nothing seems to be happening.
To be quite honest I am not 100% sure I’m doing it right.
I tried to include a screen shot but it doesn’t seem to have worked.
- This reply was modified 3 months, 3 weeks ago by fhithich.
Forum: Everything else WordPress
In reply to: How do I get rid of the Gravatar pageiPadOS 18.0.1 (22A3370). Also got the in built VPN running.
Forum: Everything else WordPress
In reply to: How do I get rid of the Gravatar pageThank you so much for your thorough response! I have to admit, I feel a bit anxious about making changes through the backdoor. However, I decided to dust off my trusty old MacBook from 2012 and was pleased to see that my site worked perfectly on both Safari and Chrome. Inspired by that, I installed Chrome on my iPad, and guess what? Everything ran smoothly there too!
So I’ve been thinking that the issue might be with the Safari app on my iPad. Since I don’t have a strong attachment to it, I think I’ll just stick with Chrome from now on!
Thanks again, Mick Garratt
Forum: Everything else WordPress
In reply to: How do I get rid of the Gravatar pageAs soon as I pressed the General option it logged me out and I struggled to get back in. “Error: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.” As far as I know cookies are enabled. Anyway eventually succeeded and both the URLs are set to:
It worked after I was asked to give the answer to a simple addition on the WordPress login screen. Didn’t have the question before.
I confirm the ‘Block all cookies’ option is not set. Using Safari.
it’s late here in the UK so shutting down for the night now.
Thanks again.
Forum: Everything else WordPress
In reply to: How do I get rid of the Gravatar pageYes, when I click on ‘Visit site’, ‘Add new Post’, or ‘Media’, etc. I’m directed to the Gravatar page.