redraider90
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: menu header not showing user names when logged inthe only real difference is they are a subscriber, not some user with a role like contributor, admin or editor, but that’s normal, I thought. I had thought about switching themes for a short bit to test. I’ll likely try that.
I’ll run health check, too, that’s a good idea!
thank you so much, Steven! I appreciate all the tips and feedback.
Forum: Fixing WordPress
In reply to: menu header not showing user names when logged inso yes, it shows the Display Name in the middle of the page with the option to log out, but not in the upper right corner where you would often see it.
Forum: Fixing WordPress
In reply to: menu header not showing user names when logged inyes, they are. First and last name. Are there other meta fields that need to be populated?
Forum: Fixing WordPress
In reply to: menu header not showing user names when logged insubscriber, but it doesn’t show in the upper corner when logged in like my username (as admin role) does.
Ok, good news. An admin very knowledgeable about WordPress helped me get this solved. It was embedded in the Elementor plug-in, in the actions after submit form area. In theory that plug-in app is very easy but if you’re unfamiliar with it it’s like a blind man trying to find his way through stuff.
Forum: Fixing WordPress
In reply to: WordPress 6.0 upgrade mostly failedWELL GUESS WHAT!! MISSION ACCOMPLISHED! I got this done. I will say that the permalinks issue was not entirely inconsequential or irrelevant. It partially was.
But that part about the Endurance Page Cache was the main thing. How that guy ever figured that out I have no idea, but I am indebted. I will put down my small doco for this approach that worked. There have to be scads of others having this issue.
1) Backed up and rewrote htaccess file at the root WP level.
2) changed the endurance page cache file name — giving it a bogus ext in the wp-content root.
3) deactivated all the plugins
4) commenced with the WP 6 install, successfully no less.After which, I have one by one reinstalled and activated my plugins. I had one acting up, causing the download issue of PHP files on one sole link! In a Paid Subscription plugin for payments. I got that fixed though.
I am now updating themes, plugins and the like that have been sidelined for 4 years now. Even applying a long overdue bootstrap theme to this site!
Thanks, folks!
Forum: Fixing WordPress
In reply to: WordPress 6.0 upgrade mostly failedOMG! I think I stumbled across the fix on anoother site!
THIS seems to have the answer. After I deleted this file or rather renamed it, the problem stopped!
I wonder if I can now commence with this upgrade!
Forum: Fixing WordPress
In reply to: WordPress 6.0 upgrade mostly failedI did find ONE BIG discovery on this, and I am not sure how to fix it.
If I click on my permalinks link, it messed up the site and causes PHP files to start being downloaded.
But what happens is it alters the htaccess file in the root to look like the following:<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /Site/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /Site/index.php [L] </IfModule> # php -- BEGIN cPanel-generated handler, do not edit # Set the “ea-php74” package as the default “PHP” programming language. <IfModule mime_module> AddHandler application/x-httpd-ea-php74___lsphp .php .php7 .phtml </IfModule> # php -- END cPanel-generated handler, do not edit <strong># BEGIN WordPress AddHandler application/php-56 .php <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /Site/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /Site/index.php [L]</strong> </IfModule> # END WordPressThat last part in bold (Between the strong tags) gets added, and should not be there. Any way to work around that?
BTW, addendum: I tried this recommendation in full
https://themanifest.com/web-design/blog/how-to-fix-broken-permalinks-wordpress#:~:text=You%20can%20fix%20broken%20permalinks,issues%20on%20a%20WordPress%20site.
and it was not successful! I deactivated all plugins and tried resetting permalinks and it continues to break the site and add that 5.6PHP reference in the wrong place. Any ideas here?- This reply was modified 3 years, 9 months ago by redraider90.
- This reply was modified 3 years, 9 months ago by redraider90.
Forum: Fixing WordPress
In reply to: WordPress 6.0 upgrade mostly failedWell, I tried the permalinks recommendation but this whole thing was pretty much a fail and I had to roll it back. At first I could get the home page and one other to work. The rest of the nav links failed and would give 404s. The IT tech support guy was very nice and tried to help but he claimed the DB was corrupted and tried to upsell me on SiteLock, which if I had a corrupted DB I should have been having ongoing problems and I really haven’t. It’s just the upgrade has again not worked. I deactivated all of the plugins. Oh, the advanced cron manager upon one restoration was failed, and one support person got that working as it was activated but she deactivated to get it up and going after a roll back. Bottom line, I’m open to suggestions but this is not working. Side note: the first IT support guy at the web host tried to upgrade to 5.9 instead of 6 after the first fail.
Any help is welcomed.
Thanks,
RR90Forum: Fixing WordPress
In reply to: permalinks breaks site on 4.9I am using PHP 7.4.27 on this 4.9 build. So I should check the download archives somewhere and see if ver 5.3 is supported by this ver of PHP? Is that what I do?
Forum: Fixing WordPress
In reply to: WordPress 5.8 breaks site on upgradeAnyone? hello? Can anyone answer this for me?
ThanksForum: Fixing WordPress
In reply to: MySQL queries on meta_key in wp_usermeta tableLet me look at that and see if I can recreate it on my end.
Thank you for the time and suggestions!Forum: Fixing WordPress
In reply to: MySQL queries on meta_key in wp_usermeta tableThat may very well be. It’s interesting to me. A glance at the “table” (which may be some view or other) of the wp_usermata table shows what appear to be 4 columns: umeta_id, user_id, meta_key, and meta_value.
So this meta_key can take on different identifiers or field names of sorts: i.e. the meta_key can be named ‘street_no’ and its value, 433. Or the meta_key could be ‘home_phone_no’ and the value 313-326-0924 for example, like embedded value pairs within the meta_key.
So maybe tnat is correct, concatenating two aliases.Can this be done or not really? And I’m talking about at the MySQL level, not within a WOrdPress PHP file or other type of file.
Thanks,
redraider90Forum: Fixing WordPress
In reply to: MySQL queries on meta_key in wp_usermeta tableOk, sorry. Thank you for the acknowledgement of the post here.
I was referencing this link on the concatenation part. I know different DB platforms run concat functions slightly different sometimes.
But, while I thought I had conveyed this the first time, as in above, I am indeed trying to concatenate a “first_name” field and a “last_name” field as a faux column, “NAME.”
For example I can choose
`SELECT * FROM wp_usermeta
WHERE meta_key= ‘street_no’ `OR
`SELECT * FROM wp_usermeta
WHERE meta_key= ‘street_name’ `But I cannot seem to concatenate the two and get results. Either of those meta_keys in the WordPress usermata table (one of the reasons I asked if this was maybe a WordPress issue as I was running this in PHPMyAdmin) will render a lengthy result set.
So I hope this clarifies it some and if I should go to a separate forum please let me know. If there’s a similar forum within the WP support, please inform me of that as well.
Thank you!You’re welcome. I’ve just had a hard time upgrading the one part of the plugin from 1.0.5 to 1.0.6. I keep getting an error in doing that.