MarkOlbert
Forum Replies Created
-
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Multiple Sites, same emailOkay, I’ll keep that in mind. FYI, it’s not intuitively obvious when you’re installing the plugin that you can, in fact, enter the same free license key.
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Multiple Sites, same emailHmmm, I don’t remember a field to simply enter a license code. Where was it?
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Confirmation EmailsSorry, it’s not clear from your UI or the documentation where that option is set.
FWIW, I pretty much accepted the defaults.
– Mark
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Multiple Sites, same emailHi Roberto,
I’ll try to document the problem the next time I run into it (right now I’m working around it by just creating email aliases).
As I recall, though, what happens is I enter my primary email (i.e., the one I use for most of my work) into the field that requests it, and then hit enter or activate or whatever. At which point an error message gets displayed to the effect the email is already in use.
– Mark
Thanx, but I’ve uninstalled your product and switched to Newsletter, which meets my needs more closely and is one of the best-written plugins, with one of the best UIs, I’ve ever come across in the WordPress space.
Forum: Plugins
In reply to: [MaxGalleria] MaxGalleria Gutenburg Not WorkingThat seems like a lot of work to diagnose the problem. And why would the outcome be any different than deactivating all the plugins?
Forum: Plugins
In reply to: [MaxGalleria] MaxGalleria Gutenburg Not WorkingI don’t think so. At least, when I changed the theme to the standard 2022 theme the problem still existed.
I’ll try to send you the debug.log file I just generated while testing the dummy page I created. It’s got a host of deprecated function call errors, but I’m not sure they apply to MaxGalleria.
Forum: Plugins
In reply to: [MaxGalleria] MaxGalleria Gutenburg Not WorkingThe Pro one
Forum: Plugins
In reply to: [MaxGalleria] MaxGalleria Gutenburg Not WorkingLOL! I disabled every single plug-in, simultaneously, except for MaxGalleria Pro and the problem is still there. No gallery is disabled, in either the draft/preview or the published view.
Is there some setting/choice I need to make in the gutenberg widget that maybe I’m failing to make? All I’m doing is selecting the MaxGalleria gallery I want displayed from the dropdown in the gutenberg editor.
Forum: Fixing WordPress
In reply to: Supporting dovecotGee, I guess the approach I came up with — which does intimately involve WordPress — must be in violation of international law or something :).
Thanx for the suggestions. But may I suggest leading with what can easily be taken as a slap in the face is not really the best way to encourage dialog and/or involvement with a community-oriented and based ecosystem like WordPress?
Have a nice day.
Forum: Fixing WordPress
In reply to: Mysterious Top MenuFor anyone else encountering this issue I figured it out: that little menu is displayed, by default, by BuddyPress if you have it installed. You can disable it in the BuddyPress options.
Why BuddyPress clutters up a website, by default, with a menu — and one it doesn’t look like you can style — is a really, really good question. Not a good design/architectural choice, IMHO.
Forum: Fixing WordPress
In reply to: Display php.ini File In UseA little write-up, in case others run into this problem…
https://imperfect.olbert.com/the-most-important-wordpress-command-youll-ever-see/
Forum: Fixing WordPress
In reply to: Display php.ini File In UseThanx, @threadi! I am such an idiot — I literally didn’t notice that big, fat button…because I assumed the add-in “simply” added a new section to the accordion area.
When something doesn’t work, check your assumptions. Or your cables, if we’re talking hardware :).
Forum: Fixing WordPress
In reply to: Display php.ini File In UseSorry, but I don’t see where the path information is displayed. I installed and activated the plugin, but I don’t see any newly-added sections under the info tab and all the obvious ones that I checked don’t display the path to the php.ini file.
Where exactly is the information displayed by the plugin?
Forum: Fixing WordPress
In reply to: Downrev to PHP7.4 Not WorkingThanx for the quick response. I’d solved the problem in the meanwhile — it did, as you suggested, have to do with php-fpm. Specifically, if you have multiple versions of php-fpm running on a server (which I do) you have to configure your apache config files to specify which one you want apache to use. Otherwise, you get apparently get the most recent one.
Here’s the necessary configuration for inclusion in the apache conf file for a site:
# Specify which version of PHP to run since we have several# (added 6/17/2022 per https://www.digitalocean.com/community/tutorials/how-to-run-multiple-php-versions-on-one-server-using-apache-and-php-fpm-on-ubuntu-18-04)
<FilesMatch \.php$># For Apache version 2.4.10 and above, use SetHandler to run PHP as a fastCGI process server
` SetHandler “proxy:unix:/run/php/php7.4-fpm.sock|fcgi://localhost”
</FilesMatch>