Reputation: 53
I have a big problem. i have this error
"Fatal error: Class 'COM' not found in C:\Program Files\EasyPHP-12.1\www\eu\include\general.php on line 2768"
and when I go to that line I see this:
" if (PHP_OS=='WINNT')
{
$filesystem=new COM('Scripting.FileSystemObject');
$file=$filesystem->GetFile($path);
return $file->Size();........"
Can anyone help me with this?
Thank you! Adi
Upvotes: 0
Views: 5012
Reputation: 1779
Open php.ini with a note editor (ctrl+F) search for Dynamic Extensions
after that add extension=com_dotnet
Upvotes: 0