Raam Dev
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Independent Publisher] Subtitle@studiopie I’m not sure, but I don’t think that will work. We had to build in specific support for ACF related to categories (see https://github.com/raamdev/independent-publisher/pull/122) so my guess is that a similar integration will be necessary to allow showing the subtitle with ACF.
If you want to open a GitHub issue, it will get added to the todo list, but honestly I’m a bit busy right now with other projects so I can’t make any promises about when it will get worked on.
Forum: Themes and Templates
In reply to: [Independent Publisher] Subtitle@studiopie I just tested this and it’s working for me. You need to make sure that “Overlay Post Title on Post Cover” is enabled in the General Options inside the theme Customizer. Then you need to add a Custom Field to the post with the key
independent_publisher_post_cover_subtitleand the value set to your Subtitle.See the three screenshots here: https://cloudup.com/ixQoUW49_OH
Forum: Plugins
In reply to: [Comet Cache] php7.0 issueComet Cache is just reading the value of
PHP_VERSION, which is a predefined PHP constant set by PHP itself. If that’s reporting PHP v5.3.29, then that’s what is being used.Forum: Plugins
In reply to: [Comet Cache] php7.0 issue@sunset-cowboy We do most of our Comet Cache development testing on PHP 7 and haven’t seen this issue. Could you try uploading a
phpinfo.phpfile to the site with the following inside and then visit that file in your browser to verify that you’re actually running PHP 7?<?php phpinfo();Forum: Plugins
In reply to: [Comet Cache] Error when enabling plugin@mduh Thank you for the confirmation. That confirms my suspicion. I highly recommend upgrading. Using an old unsupported version of PHP may expose you to security vulnerabilities and bugs that have been fixed in more recent versions of PHP.
Forum: Plugins
In reply to: [Comet Cache] Error when enabling plugin@bb3lions @mduh My only guess is that you’re both using something older than PHP 5.3, as that’s the version where the
__DIR__magic constant was introduced. Thecomet-cache.phpfile is very simple: It just loadsplugin.php, but it does so using a magic constant to figure out the full path to that file:__DIR__/plugin.phpComet Cache requires PHP 5.4+ and there’s a version check that prevents Comet Cache from crashing when you’re running something older than PHP 5.4, but that version check happens inside
plugin.php, which is too late to catch the fact that the__DIR__magic constant might cause a fatal error if you try installing on something older than PHP 5.3.I’ll open a GitHub issue so that we can get this fixed in the next version, but if you could confirm that you’re running something older than PHP 5.3, that would help confirm this.
Forum: Plugins
In reply to: [Comet Cache] Error when enabling plugin@mduh Can you tell me which version of PHP your site is using?
@futtta Comet Cache uses
0775for permissions when creating the cache directory; see https://github.com/websharks/comet-cache/blob/160521/src/includes/traits/Plugin/InstallUtils.php#L356See also: http://permissions-calculator.org/decode/0775/
It sounds to me like the web server in question is misconfigured (or recently had its configuration changed).
Forum: Reviews
In reply to: [Comet Cache] Comet Cache Blazing Fast Easy Config@flyfisher842 Thanks so much for the 5-star review and for sharing all those speed metrics! I’m so happy that you’re enjoying the plugin. We put a lot of work into making Comet Cache as simple to use as possible so I’m glad you found it easy!
Forum: Plugins
In reply to: [Comet Cache] caching of wp-login page@flyfisher842 Thanks for the update! I’m glad you got this resolved. ๐
Forum: Plugins
In reply to: [Comet Cache] caching of wp-login page@flyfisher842 Can you submit a ticket here with more details about the path? http://wsharks.com/1TILupQ (link good for 24 hours) Please reference the URL for this forum thread in your ticket.
Forum: Plugins
In reply to: [Comet Cache] caching of wp-login page@raamdev I asked about Comet Cache Pro because Logged-In User caching is a Pro-only feature and it sounds like you’re seeing logged-in users being cached. Even if you were, the Pro-only Logged-In User caching feature does not apply to the WordPress Login Pageโthere is no scenario that I can think of with Comet Cache where the login page would ever be cached.
Were you using a different caching plugin before Comet Cache? If so, maybe that caching plugin generated the cache file that includes your username.
If not, can you tell me the exact path to the cache filename where you found your username? (e.g.,
wp-content/cache/...) The full path to the filename will help.Forum: Plugins
In reply to: [Comet Cache] caching of wp-login page@flyfisher842 Are you using Comet Cache Lite or Comet Cache Pro?
Forum: Plugins
In reply to: [Comment Mail] SparkPost and asynchronous mail@bobinoz We’ve been having some trouble reproducing the issue described in the GitHub issue you linked to, and that’s making it difficult to pinpoint what the cause is. However, your report makes 3 cases of this so far, so it’s definitely an issue.
If you could leave a comment on the GitHub issue with a list of your active plugins, that would be a huge help. My only guess at this point is that there’s another plugin conflicting with Comment Mail, because we haven’t been able to reproduce the issue in a clean WordPress install with only Comment Mail running.
I’ll also add a link back to this thread in the GitHub issue.
Forum: Plugins
In reply to: [Comet Cache] caching of wp-login page@flyfisher842 Comet Cache does not cache the
/wp-login.phppage or any WordPress Dashboard pages. How are you determining that Comet Cache is caching it?