idowebwork
Forum Replies Created
-
No response, so marking as resolved.
Using static text like that would break other sites using this plugin. Looking for a solution.
Give this a go, replacing those two lines:
$wpadmin = str_replace( site_url().'/', ABSPATH, admin_url() ); $wpincludes = str_replace( site_url().'/', ABSPATH, includes_url() );This should fix the issue, whether installed in the root or in a subfolder.
- This reply was modified 5 years, 10 months ago by idowebwork.
- This reply was modified 5 years, 10 months ago by idowebwork.
- This reply was modified 5 years, 10 months ago by idowebwork.
Forum: Plugins
In reply to: [My Simple Space] How to display on the front pageThis is designed as a Dashboard widget and only meant to be shown in the admin area of the site.
Forum: Plugins
In reply to: [My Simple Space] PHP VersionTested to PHP 7.4.8, the PHP version on my development server.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageVersion 1.2.8 should now correctly add in the wp-content folder, if outside the main path.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageGlad to hear that the changes have at least fixed the plugin to work without throwing an error. Will address correcting the entire site calculation on sites where the wp-content folder has been placed outside the typical setup in a future release, so that the totals add up.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageHave changed the way the wp-content & plugins folder path are discovered, which hopefully will correct this, as WP is installed in a manner I did not account for in the past. Hopefully this fixes that issue. Still need to rethink how to calculate entire site, when folders are not in the same root folder. That will be coming in a future update.
1.2.7 Has been pushed up to the WP repository.
- This reply was modified 6 years, 2 months ago by idowebwork.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageI believe the problem is line 112, which gets the document root. Can you try a few things for me.
Change line 112 from
$homepath = ( get_home_path() === "/" ) ? ABSPATH : get_home_path();to$homepath = ABSPATH;and let me know if that fixes it. I believe this line is actually returning the second value get_home_path() which apparently seems to be returning something different there.Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageCould you click through to my profile, click my site link and send me a message through there. I really want to get to the core of the problem, but feel we might need to do this one on one.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageReverted a change made in 1.2.5 and hoping that updating to 1.2.6 fixes the issue you are seeing (and does not break anything for anyone else) 😀
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageOk. Reread what you initially posted and reposted again. I’m seeing a reference to /wordpress/wp-content and the plugin is under /www/wp-content/plugins/my-simple-space/my-simple-space.php (notice the /wordpress and /www at the beginning). So it seems to be looking for wp-content inside a wordpress folder, which is why it’s throwing the error. Let me look into this.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessagePlease update if that suggestion fixed the issue for you.
Forum: Plugins
In reply to: [My Simple Space] How bout more than that pleaseSome features like bandwidth and disk space depend on the control panel being used as well as how the host has set things up. I continue to look at providing more, but at the moment with so many projects here, I’m not sure how much time I can give to adding in new features at the moment. But will keep these in mind for sure.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageCan you install the clear transients from the dashboard plugin (https://ww.wp.xz.cn/plugins/clear-transient-from-dashboard/), which will add a way to clear out transients through a dashboard widget. Click the “Clear Transients” button and see if that resolves the issue.
What happens is my plugin caches the data as transients within the dashboard and this will let us know if that is causing the issue. Hopefully this fixes it. You can remove that plugin once done if desired.
Forum: Plugins
In reply to: [My Simple Space] Fatal Error MessageThanks for bringing this to my attention. Apologies for not seeing this soon. Will look into this and provide a solution shortly.