I have read through all the other post & could not fix the problem. I am trying to upload small 30 sec video files in WMP format. I changed the file names as advised & it still says "o files uploaded". Any suggestions? ???
What do you mean by 'small' exactly.
And by the way, we manage to read all the other posts on these boards, without the need for a magnifying glass, so why did you think you had to post it all in bold text?
Sorry about the bold... habit from my email... :-*
The files are 3000 kb, I think that is small.
WMP is an unsupported file type, here's the query that builds the list of supported movie file types - if your file is not in the list, you could try to add it manually to the database (at your own risk):INSERT INTO CPG_filetypes VALUES ('asf', 'video/x-ms-asf', 'movie');
INSERT INTO CPG_filetypes VALUES ('asx', 'video/x-ms-asx', 'movie');
INSERT INTO CPG_filetypes VALUES ('mpg', 'video/mpeg', 'movie');
INSERT INTO CPG_filetypes VALUES ('mpeg', 'video/mpeg', 'movie');
INSERT INTO CPG_filetypes VALUES ('wmv', 'video/x-ms-wmv', 'movie');
INSERT INTO CPG_filetypes VALUES ('swf', 'application/x-shockwave-flash', 'movie');
INSERT INTO CPG_filetypes VALUES ('avi', 'video/avi', 'movie');
INSERT INTO CPG_filetypes VALUES ('mov', 'video/quicktime', 'movie');
GauGau
Thank you.. I will just convert them. :)