Scott B
Scott B

Reputation: 40177

Fatal error: Cannot instantiate non-existent class: directoryiterator

Need some help with this error. Fresh wordpress 2.9 install...

Fatal error: Cannot instantiate non-existent class: directoryiterator in /home1/test/public_html/test2/wp-content/themes/mytheme/functions.php on line 471

function get_dirs($path = '.') {
$dirs = array();
foreach (new DirectoryIterator($path) as $file) {   //THIS IS LINE 471
    if ($file->isDir() && !$file->isDot()) {
        $dirs[] = $file->getFilename();
    }
}

return $dirs;

}

Upvotes: 0

Views: 2223

Answers (1)

catchmeifyoutry
catchmeifyoutry

Reputation: 7389

The DirectoryIterator class is part of the Standard PHP Library (SPL), which is installed by default in PHP 5. Maybe you are using PHP 4?

EDIT

To get information on your PHP installation, use phpinfo(). Create a .php file with this single line and open it in your browser:

<?php phpinfo() ?>

Upvotes: 1

Related Questions