Warning: OpenDir: No such file or directory (errno 2) in /wwwroot/htdocs/forums/sources/Usercp.php on line 820
Warning: readdir(): supplied argument is not a valid Directory resource in /wwwroot/htdocs/forums/sources/Usercp.php on line 821
Warning: closedir(): supplied argument is not a valid Directory resource in /wwwroot/htdocs/forums/sources/Usercp.php on line 828
and this is whats on those lines:
CODE
$dh = opendir( $ibforums->vars['html_dir'].'avatars' );
while ( $file = readdir( $dh ) )
{
if ( !preg_match( "/^..?$|^index/i", $file ) )
{
$avatar_gallery[] = $file;
}
}
closedir( $dh );
while ( $file = readdir( $dh ) )
{
if ( !preg_match( "/^..?$|^index/i", $file ) )
{
$avatar_gallery[] = $file;
}
}
closedir( $dh );
that starts with 820 and ends with 828
Ive never had a problem like this before. anyone know how i can fix this?