crewstyle
Forum Replies Created
-
Forum: Plugins
In reply to: [Blocksy Companion] php function is_readable bugHi team,
Here is the output of the $all_extensions var:
array(5) { [0]=> string(109) "/home/(...)/web/statics/plugins/blocksy-companion/framework/extensions/cookies-consent" [1]=> string(114) "/home/(...)/web/statics/plugins/blocksy-companion/framework/extensions/newsletter-subscribe" [2]=> string(109) "/home/(...)/web/statics/plugins/blocksy-companion/framework/extensions/product-reviews" [3]=> string(102) "/home/(...)/web/statics/plugins/blocksy-companion/framework/extensions/trending" [4]=> string(101) "/home/(...)/web/statics/plugins/blocksy-companion/framework/extensions/widgets" }
By the way, I’ll send you a mail today.
Bye ??
Forum: Plugins
In reply to: [Blocksy Companion] php function is_readable bugHi ??
I’m sorry I didn’t see your response and I’m still facing this issue.
To add some more details, I use Blocksy in a multisite WP configuration, with subdomains. And I try to access to extensions tab.Here is the output of the
BLOCKSY_PATH
constant:
/home/(...)/web/statics/plugins/blocksy-companion/
My website uses GetOlympus framework to work. Which means:
– the webroot folder is web/
– the wp-content folder’s name is statics
– and all the default WP constants are defined thanks to the frameworkIt seems
BLOCKSY_PATH
has a good value.
If you need some more details, tell me.Right now, from the file
blocksy-companion/framework/extensions-manager.php
, my fix is to change (line 448):
if (is_readable($path . '/readme.php')) {
Into:
if (!is_null($path) && is_readable($path . '/readme.php')) {
And (line 464):
if (is_readable($file_path . '/config.php')) {
Into:
if (!is_null($file_path) && is_readable($file_path . '/config.php')) {
Can you check please?
Thanks
AchrafForum: Plugins
In reply to: [Blocksy Companion] Demo importer bugsHi core team ??
Thanks for your feedback.
I’ll be waiting for this new release so.Best regards
AchrafThanks for your reactivity ??
Forum: Plugins
In reply to: [Blossom Recipe Maker] French versionThanks!
Forum: Plugins
In reply to: [Blossom Recipe Maker] French versionHi there,
As mentioned, I’ll ask to editors then.
Thank you very much for your answer.PS: I have lots of issues on Blossom Recipe plugin and Pro theme. Is there a way to give you feedbacks quickly?
Forum: Themes and Templates
In reply to: [Hypermarket] French versionPlease remove this topic.
Forum: Themes and Templates
In reply to: [Hypermarket] Trying to get property ‘post_type’ of non-objectPlease remove this topic.
Forum: Plugins
In reply to: [AdBack solution to adblock] Notice > Undefined index: pageHi there,
Any news on this thread?
Regards,
Forum: Plugins
In reply to: [W3 Total Cache] Browser cache compression + Nginx = bug@mateusz: thanks for the news. But for me, that was too late: I switched to another plugin…
By the way, this bug is resolved.Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Google News SitemapHi there,
Any news on this thread?
Right now, I use an other plugin only for this feature…Regards,
Forum: Plugins
In reply to: [W3 Total Cache] Browser cache compression + Nginx = bugHello,
It seems the bug is in the
PgCache_Environment.php
file, from line 1476 to 1491, you can find:if ( $compression ) { $maybe_xml = ''; if ($config->get_boolean('pgcache.cache.nginx_handle_xml')) { $maybe_xml = "\n" . " text/xml xml_gzip\n" . " "; } $rules .= "location ~ " . $cache_dir . ".*gzip$ {\n"; $rules .= " gzip off;\n"; $rules .= " types {" . $maybe_xml . "}\n"; $rules .= " default_type text/html;\n"; $rules .= $common_rules; $rules .= " add_header Content-Encoding gzip;\n"; $rules .= "}\n"; }
As you can see, the semicolon is missing in this line
" text/xml xml_gzip\n" .
(this should be" text/xml xml_gzip;\n" .
)Best regards,
- This reply was modified 7 years, 2 months ago by crewstyle.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Google News Sitemap+1 please!
Hi Georgian,
Thank you very much, I’ve updated the plugin right now and the feature is inside ??
Very good!Best regards,