pashmakii
User
 Senior Boarder
| Posts: 16 |   | Karma: 0
|
Re:Permission Denied in configuration? - 2008/04/01 20:07
Well that didnt help either.
I checked the file , its says something with:
| Code: | if ( $handle = opendir ( $path ) )
{
while ( false !== ( $file = readdir ( $handle ) ) )
{
if ( $file != '.' && $file != '..' )
{
$file = $path . $file ;
if ( ! is_dir ( $file ) ) { if ( $mode != "DIRS" ) { $dirlist[] = $file ; } }
elseif ( $d >=0 && ($d < $maxdepth || $maxdepth < 0) )
{
$result = searchdir ( $file . '/' , $maxdepth , $mode , $d + 1 ) ;
$dirlist = array_merge ( $dirlist , $result ) ;
}
}
}
closedir ( $handle ) ;
|
So it has maybe something to do with opendir?
The thing is that I tested this component on exact same webhost. The only different is that the database on the not-working site is Database Version: 5.0.51 ,
and the version for the working site its : 4.0.26-standard
|