all, my images are missing after the move, I can see them in the data / internal data folder and they are permissioned to 777 and still can't see them on my site?
$filePath = $attachmentModel->getAttachmentDataFilePath($attachment);
if (!file_exists($filePath) || !is_readable($filePath))
So the things to check:
That you haven't specified any alternative paths in your config.php.
That the attachment files are in the internal_data directory in the correct directory structure.
That the attachment files themselves (and all parent directories) are readable by PHP. You mention the folder permissions, but you want to make sure the correct permissions are on the files as well. (You'll want 0666 or 0777.)
sorry about that, When, I go and look for the image that is missing, its in the attachament folder, when I download it, its the correct picture that should be in that location...