markc
Forum Replies Created
-
Same here, v4.1.3 no longer works at all for me. There is a call to /wp-json/omgf/v1/download/css?etc but it’s returning a 404. My “Save files to” setting is the default /uploads/omgf but there is no /wp-content/uploads/omgf folder created. Even if I create one there are no local static font files created. The previous version worked really well.
Update: Embed Google Fonts kind of works but the first page hit is horrendously slow and there is no way to stop it caching other fonts (Roboto, Noto serif, italics) that are not used or wanted in my case. The only alternatives I can see is to download and manage Google fonts manually or perhaps pay $5/m and use Cloudflares new Automatic Platform Optimization for WordPress and let Cloudflare worry about caching Google fonts. Hmm, or maybe copy an older version of OMGF from another site that has not been updated yet and store it on Github.
Forum: Plugins
In reply to: [Postie] Option to insert into Gutenberg blocksThanks for the explanation. According to that ticket in the last comment, the serialize_block functions were added to v5.3.1 quite a few months ago. Or do you mean that PHP core (not WP) needs to have a serialize_block() function too?
Forum: Plugins
In reply to: [Postie] Option to insert into Gutenberg blocksBut surely whatever settings are persisted in the database when a user selects “convert to blocks” could be automated similar to what this plugin does?
Forum: Plugins
In reply to: [Postie] Will Postie convert to using Gutenberg block editorCould we please have the option of importing emails directly into Gutenberg blocks rather than a Classic block?
It may only be a simple click to enable Gutenberg blocks but someone has to log into the system to manually do that (assuming they even know how) which completely destroys the idea of automated and unattended remote posting via email.
Forum: Plugins
In reply to: [WP2Static] Partially static websiteThis is not specific to WP2Static but if you make sure your webserver gives a precedence to displaying index.html before index.php (for nginx it’s “index index.html index.php;”) then you could even use something like wget to pull a static copy of the current index.php page as index.html then that could work on the same site.
Forum: Reviews
In reply to: [WP2Static] No SFTPWay to go to encourage new users! To be clearer, in theory, on paper, this plugin could suit my needs perfectly but because it doesn’t support SFTP it is useless. I can’t use it so I have no idea how many stars it may deserve.
Forum: Themes and Templates
In reply to: [OnePress] Lazy loading suggestionsI have settled on a combination of WordFences “performance settings” using the Falcon engine (plus nginx custom rules) and Autoptimize but gtmetrix.com was still showing that the test site was taking 64 seconds to load the full Plus demo content. This is a worst case test server (an old core-duo laptop) on a very ordinary ~5Mbit ADSL link.
A reasonable solution is to use the BJ Lazy Load plugin which reduced the page load time dramatically to 25 seconds.
FWIW I have the same error on *some* sites and I am not using easy-wp-smtp. I’ve seen some reports it may have something to do with using nginx, which I do, but not sure if that is the case for you.
Forum: Plugins
In reply to: [RootsPersona] v3.3.3 patched for PHP7 at GithubIt looks like something is wrong with your installation as /home/~~/public_html does not look like a real path to me. Hmm, it may be as simple as renaming plugins/rootspersona-master to plugins/rootspersona. Yes, try that first.
https://github.com/markc/rootspersona/blob/master/rootspersona.php#L34
Forum: Plugins
In reply to: [bbPress Move Topics] Converting bbPress Topics to Native PostsHere’s a “me too” post. I also want to convert bbPress topics/replies to native posts/comments. Seems posts to topics already works so that would be brilliant to be able to go both ways.
There is a 3 yo old dead plugin on Github that might (or used to) do it so I’ll clone that and see how I go…
Forum: Plugins
In reply to: [RootsPersona] RootsPersona 3.3.3 works with PHP 7Version 3.3.3 does NOT work with PHP7.
Not unless all your changes you outlined are made but v3.3.3 as released does not work. Here’s hoping we have a v3.4.0 sometime soon.
Forum: Plugins
In reply to: [RootsPersona] RootsPersona 3.3.3 NOT ready for PHP 7.0.0 RC 3 yetWhy is this topic marked resolved because v3.3.3 does not work with PHP7 final?
Is anyone working on this?
Forum: Plugins
In reply to: [Postie] How to post to a server using a self-sign certificateMy fault, I had the TLS option also selected whereas it should have been just port 993/SSL for IMAP-SSL but with TLS set to No. It’s working now regardless of the self-signed certificate.
Forum: Plugins
In reply to: [Nginx Cache Controller] Flush cache when php user is different to nginx userI haven’t tested it yet but a proxy_cache per fastcgi_pass instance may solve my per user permissions problem but I also realized that it’s really the nginx process owner that is doing the deleting so it’s up to me to arrange for the nginx PID to have access to each separate vhost/vuser cache store. If that makes sense.
For my situation I am thinking I’d be better off using a plugin to create static files and store them on tmpfs because clearing the right cached files on demand, although possible, also seems too unreliable.
Forum: Themes and Templates
In reply to: Theme GeneratePress – remove title on static homepage?Something like this in a relevant style sheet might do the trick but it will remove all h1’s…
.post-wrapper .h1-wrapper h1 { display: none; }so you might have to tinker with a template and add a class (class=”h1-frontpage”) just for the front page and then apply this to the stylesheet…
.post-wrapper .h1-frontpage h1 { display: none; }