• Resolved ecollart

    (@ecollart)


    Hello,

    I very like your plug-in giving me the information I want.
    As a minor problem, I must mention that size of wp-content, themes and uploads are exactly the same what looks incorrect.
    Sometimes wp-content displays same value as entire site …

    Any idea what is going wrong ?

    Thanks for any help

    Eric Collart

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author idowebwork

    (@mannweb)

    Yes, I noticed this myself yesterday and was about to post about this. Working on figuring the cause. Apologies for the delay.

    Plugin Author idowebwork

    (@mannweb)

    Problem 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.

    Plugin Author idowebwork

    (@mannweb)

    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

    Plugin Author idowebwork

    (@mannweb)

    1.2.5 released, which should fix this issue.

    Thread Starter ecollart

    (@ecollart)

    Man ! That’s just great support !

    I confirm the problem is solved by the last update…

    Sorry for the delay here, I was on holiday…

    Huge thanks for the so quick job !

    Eric Collart

    Plugin Author idowebwork

    (@mannweb)

    Awesome to here Eric. Glad I was able to fix it ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Incorrect values reported’ is closed to new replies.