idowebwork
Forum Replies Created
-
Forum: Plugins
In reply to: [My Simple Space] WP Plugin : “My Simple Space”Total memory is the total amount of RAM available to your site and is defined by the web host. The Memory used is the portion of that RAM your site is using of that total amount of memory. So the site in question is using 28MBs of the total 768MBs available.
- This reply was modified 6 years, 6 months ago by idowebwork.
Forum: Plugins
In reply to: [My Simple Space] Incorrect values reportedAwesome to here Eric. Glad I was able to fix it 😀
Forum: Plugins
In reply to: [My Simple Space] Incorrect values reported1.2.5 released, which should fix this issue.
1.2.5 released, which should fix this issue.
Forum: Plugins
In reply to: [My Simple Space] Incorrect values reportedStripping these two lines:
$path .= '.'; $path = pathinfo( $path , PATHINFO_DIRNAME );And replacing this line:
foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::FOLLOW_SYMLINKS ) ) as $file ) {With this:
foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::CURRENT_AS_FILEINFO ) ) as $file ) {To correct incorrect returned values from the change to 1.2.4
Stripping these two lines:
$path .= '.'; $path = pathinfo( $path , PATHINFO_DIRNAME );And replacing this line:
foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::FOLLOW_SYMLINKS ) ) as $file ) {With this:
foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::CURRENT_AS_FILEINFO ) ) as $file ) {To correct incorrect returned values from the change to 1.2.4
Forum: Plugins
In reply to: [My Simple Space] Incorrect values reportedProblem found. It was caused when adding 2 lines in 1.2.4 and a line I apparently put in extra code, which causing it to calculate from the root folder. Pushing up fix in a few minutes.
Forum: Plugins
In reply to: [My Simple Space] Incorrect values reportedYes, I noticed this myself yesterday and was about to post about this. Working on figuring the cause. Apologies for the delay.
Forum: Reviews
In reply to: [Advanced Button Block] Does nothingExcept it is not under layout. Even searching for Advanced Button here brings up nothing.
Just now seeing this. I have added those line into 1.2.4 and pushed up that release.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Updated to 7.5.18 and now displaying incorrectlyWorks great here. Thanks!
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Updated to 7.5.18 and now displaying incorrectlyCSS for plugin social share buttons are not being included on the frontend. Hopefully things can be fixed.
Forum: Plugins
In reply to: [Gutenberg] White Screen on Post / PageIf you have access to the Web Application Firewall for the domain under Plesk, you can whitelist the id you get from the error log right inside the WAF. That’s what I did at the domain level.
Forum: Plugins
In reply to: [Gutenberg] White Screen on Post / PageAs it turns out it was in fact something within the Web Application Firewall under Plesk blocking Gutenberg. Apparently something cause what appears to be an XSS, so the WAF blocked it. Setting a rule to whitelist it allows Gutenberg to work. Not at all a perfect solution, though.
Forum: Plugins
In reply to: [Gutenberg] White Screen on Post / PageI will pass this along to my host, as I am in fact using Plesk. Will follow up once I have worked with them.