array to string, call to undefined function error messages
Brought to you by:
kwak
Hello,
When I try to browse to qss3 dir, I get :
Notice: Array to string conversion in
/home/baronsam/samuelmurez.com/qss3/includes/qError.class.php
on line 38
Fatal error: Call to undefined function:
file_get_contents() in
/home/baronsam/samuelmurez.com/qss3/modules/plainTextAuth.class.php
on line 56
All best,
--Sam
Logged In: YES
user_id=10715
create a function like this:
<?php
function file_get_contents($filename)
{
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
return $contents;
}
?>