MOD EDIT: Post moved into new thread; original thread was: Need help loading video/x-flv with PHP.
i am using apache2 that uses apache.conf not the .conf file used in examples for adding type i wish to add type flv to my apache2 conf and that uses a thing called magic and it has been said to not edit this magic file directly, i do not know how to addtype i have tryed using .htaccess file but that way fails for some reason please help? what can i do to AddType video/flv .flv please?
Perhaps you are looking for this?
You could also try using ForceType in a .conf or .htaccess file like so:
<Files ~ "\.flv$"> ForceType video/x-flv </Files>
But speaking of things you tried... what specifically have you tried? How did you determine that it didn't work?