MyBB Community Forums

Full Version: In File Verification Question?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In File Verification where are the files copaired to the ones on MyBB servers or your own.
I Ask cause I tryed file Verification and 2 came back changed
inc/functions.php (This I changed for Google seo)
inc/functions_upload.php (this says changed but I did not change it)

From fresh MyBB 1.6 Download (lines 535-539)
{
			$file_info = finfo_open(FILEINFO_MIME);
			list($mime, ) = explode(';', finfo_file($file_info, MYBB_ROOT.$file_path), 1);
			finfo_close($file_info);
		}


From My Server (lines 535-539)
{
			$file_info = finfo_open(FILEINFO_MIME_TYPE);
			$mime = finfo_file($file_info, MYBB_ROOT.$file_path);
			finfo_close($file_info);
		}
There was a minor change made to the 1.6 download, if you download again and replace the file, it'll work.
Thanks mat so that means that there checked with files on the mybb server when there changed they will show up as changed on yours.

Going too fix now
(2010-08-04, 07:36 PM)Howman Wrote: [ -> ]Thanks mat so that means that there checked with files on the mybb server when there changed they will show up as changed on yours.

Going too fix now

Yup