View Full Version : AnyMedia BBCode for 3.5.x
Pages :
1
2
3
4
5
6
[
7]
8
Where exactly are the installation instructions?
I don't see anything that looks like install instructions.
There is an "install.htm" but it contains references to VB paths & there is no explanation on how to use this file.
Whn I unzip there are simply 3 directories:
do_not_upload
import
upload
in do_not_upload, the only thing that resembles instructions is the "install.htm" mentioned above.
Is there a readme file missing or something?
do the file edits in the install.htm
jeremycs
08-22-2006, 11:38 PM
VERY SORRY...
.... the mozilla noscript extention was blocking the install.htm file from loading properly.
jeremycs
08-23-2006, 01:35 AM
Anyone know the quickest way to disable autoplay / autostart (even if users enables it in the MEDIA tags) ?
Is it possible to hardcode a value of 0 / no / false somewhere for the autoplay value?
Maybe something around here in includes/class_anymedia.php?
var $_mediaInfo = array(
'width' => 0,
'height' => 0,
'autoplay' => '',
'extension' => '',
'loop' => 0,
'url' => '',
'link' => '',
'mime' => '',
'type' => '',
'id' => 0,
'layout' => 0,
'extra' => array()
);
Or maybe it would just be easier to strip the media tag flags when they are submitted (if you're worried about getting thread-DOS'ed via autoplay)
I just changed my google section in class_anymedia.php to this.
// {{{ google()
/**
* Google Video.
* @param array media info array
*/
function google(& $mediaArray)
{
if (preg_match('/docid=([^(\&|$)]*)/i', $this->_mediaInfo['url'], $match) || preg_match('/docid\/([^(\&|$)]*)/i', $this->_mediaInfo['url'], $match) || preg_match('/video_id=([^(\&|$)]*)/i', $this->_mediaInfo['url'], $match)) {
if(intval($this->vbulletin->bf_misc_anymediaplayer[$mediaArray[1]]) & $this->vbulletin->options['anymediaplayer']) {
$this->_mediaInfo['url'] = $this->vbulletin->options['bburl'] . '/players/flvplayer.swf?file=' . $match[1] . '&site=youtube&autoStart=' . iif($this->_mediaInfo['autoplay'] == 'true', 'true', 'false');
$this->_mediaInfo['height'] += 20;
} else {
$this->_mediaInfo['url'] = 'http://video.google.com/googleplayer.swf?docid=' . $match[1];
}
$this->player($mediaArray);
} else {
$this->_mediaInfo['type'] = 'error';
}
}
// }}}
will this code work for google using anymedia flash player ( not google flash player)
MajorFm.com
08-23-2006, 08:16 PM
Also does anyone know why this happens:
White Screen Instead Of Player - Even Though I Refreshed Again & Again
http://www.majorfm.com/forum/video-vault/32000-criss-angel-panties.html
but when you view the post on its own:
http://www.majorfm.com/forum/218984-post1.html
Seems to work fine on firefox though....
It works fine... something must be conflicting it on thread view... any suggestions?
I still cannot see em in ie... cannot work it out, on the flash dl site it says:
You have version 8,0,24,0 installed
I'm baffled... can't view it on 4 machines...
its fine in firefox...
any idea people?
thebuckeyeforum
08-26-2006, 04:09 PM
I am good up until the final step. I cannot find the "Anymedia bbcode permissions."
I am looking in the usergroup permissions but do not see it.
Am I missing something?
Mysticales
08-26-2006, 04:15 PM
Maybe redo your bitfield so it updates, Then try.
My concern is.. I am not secure about using this.. seems users could spam flash players all over a thread.. =/ Wonder what everyone does to secure this.
jeremycs
08-26-2006, 04:41 PM
My concern is.. I am not secure about using this.. seems users could spam flash players all over a thread.. =/ Wonder what everyone does to secure this.
There are definitely some security issues to consider when using this module.
#1: Think strongly about allowing macromedia files to be one of the file types that are allowed to play. (ie .swf and the other 2 in that row). It's very easy for someone to construct a .swf that will redirect your member to a url of the .swf authors choosing. Perhaps the site they redirect them to looks just like YOUR sites login page? Making the user think they are logged out and they need to log in again. But instead, the flash author harvests their password & logs them in to your board as if nothing happened.
#2: As mysticales says above, and I have said, and someone else originally said in this thread... there is potential for per-thread denial of service attacks. The attacker would just need to make a few posts and autoplay 20-30 large files.
Suggested fixes:
For #1: There's no fix really, unless your server pulls the submitted .swf or flash file on submission, scans it for anything you consider malicious, and then hosts it locally. Scanning a hotlinked .swf & leaving it that way would do no good because the person could just change the .swf file to something malicious later.
Btw, I'm think the same goes for certain windows media files as well... .asf and .asx I believe.
For #2: Add options to limit things like:
- The number of media tags a user can enter per day
- The number of media tag allowed per thread
And most importantly:
Ignore user-submitted autoplay? (YES) / NO
G_Man
08-26-2006, 11:16 PM
There are definitely some security issues to consider when using this module.
#1: Think strongly about allowing macromedia files to be one of the file types that are allowed to play. (ie .swf and the other 2 in that row). It's very easy for someone to construct a .swf that will redirect your member to a url of the .swf authors choosing. Perhaps the site they redirect them to looks just like YOUR sites login page? Making the user think they are logged out and they need to log in again. But instead, the flash author harvests their password & logs them in to your board as if nothing happened.
#2: As mysticales says above, and I have said, and someone else originally said in this thread... there is potential for per-thread denial of service attacks. The attacker would just need to make a few posts and autoplay 20-30 large files.
Suggested fixes:
For #1: There's no fix really, unless your server pulls the submitted .swf or flash file on submission, scans it for anything you consider malicious, and then hosts it locally. Scanning a hotlinked .swf & leaving it that way would do no good because the person could just change the .swf file to something malicious later.
Btw, I'm think the same goes for certain windows media files as well... .asf and .asx I believe.
For #2: Add options to limit things like:
- The number of media tags a user can enter per day
- The number of media tag allowed per thread
And most importantly:
Ignore user-submitted autoplay? (YES) / NO
Because of concerns like this only Admin/Mods are even allowed to use this on my forum. Still a wonderful addition to the forum though. :D
Mysticales
08-27-2006, 01:30 AM
I grabbed a plugin in the 3.6.0 area, about bbcode permissions, author made a unannounced 3.5.4 plugin that lets you chose via each usergroup which bbcode they are allowed.
G_Man
08-27-2006, 08:23 AM
I grabbed a plugin in the 3.6.0 area, about bbcode permissions, author made a unannounced 3.5.4 plugin that lets you chose via each usergroup which bbcode they are allowed.
Anymedia has its own selection in each UserGroup already, so that hack isn't need to limit usage by UserGroup. ;)
Ant!13
08-27-2006, 05:17 PM
Sorry, but works this hack on 3.6.0?
thebuckeyeforum
08-27-2006, 06:45 PM
Maybe redo your bitfield so it updates, Then try.
I'm sorry, I am not sure what you mean by "redo your bitfield." Any help would be appreciated.
As I mentioned earlier, I installed everything but I cannot locate the "Anymedia bbcode permissions" in order to complete the installation.
Thanks,
Jim
hotwheels
08-27-2006, 07:05 PM
Hey jim, when you go to your usergroup, it should be the second box as you scroll down.....
MissKalunji
08-27-2006, 08:53 PM
Sorry, but works this hack on 3.6.0?
yeah it does
thebuckeyeforum
08-28-2006, 03:18 AM
Hey jim, when you go to your usergroup, it should be the second box as you scroll down.....
I doesn't seem to be showing up. I am going to "usergroup manager" and selecting "edit usergroup." I see a list of permissions but no "AnyMedia BBcode Permissions."
Again, I am trying to install but I cannot find the last step, modify "anymedia bbcode permissions."
Any help would be appreciated.
Thanks,
Jim
Basboss
08-29-2006, 04:06 AM
has anyone tried attaching a real media file on a vB 3.6 with this hack installed?
Cos it does not seem to be working with real media files!
Pcparts
08-29-2006, 07:30 AM
I have a little problem with "jpg" attachments.
they do show up, but not in a thumbnail format, but the whole image shows up. and if its a large image, then it messes up the whole page formating.
Someone have any idea ?
I have checked everything. It seems ok.
AdmiralSpock
08-30-2006, 03:51 PM
I DO NOT know whether I should update the hack.
I'm not a coder of vBulletin-Chinese Team now, as I left there weeks ago.
Sorry about this, and I'll tell you how the update's going if it's really on the way.
I don't understand this. Why should it matter if he's a member of the vB Chinese team or not?
So far AnyMedia has worked fine on 3.6 for me. But I'd really, really appreciate some kind of "stability" update to make certain that it works on 3.6. I really don't care about new features, it does everything it should do. This hack has really made my site work a lot better, and I really appreciate the work Crist has done. :)
bballchris1504
08-30-2006, 04:34 PM
EASY Problem,
The videos and everything work great EXCEPT
they take FOREVER to start autoplaying -- this is because the entire video must download before it starts -- is there ANY workaround to this??
It seems like there should be an easy fix -- just that I don't know what it is :cross-eyed:
Like, could I set things up somehow to stream, or ANYTHING that helps really -- Help! Someone! :D
EASY Problem,
The videos and everything work great EXCEPT
they take FOREVER to start autoplaying -- this is because the entire video must download before it starts -- is there ANY workaround to this??
It seems like there should be an easy fix -- just that I don't know what it is :cross-eyed:
Like, could I set things up somehow to stream, or ANYTHING that helps really -- Help! Someone! :DIn the adminCP put auto start to off.
MajorFm.com
08-31-2006, 12:58 PM
Also does anyone know why this happens:
White Screen Instead Of Player - Even Though I Refreshed Again & Again
Seems to work fine on firefox though....
Something must be conflicting it on thread view... any suggestions?
I still cannot see em in ie... cannot work it out, on the flash dl site it says:
You have version 8,0,24,0 installed
I'm baffled... can't view it on 4 machines...
its fine in firefox...
any idea people?
Please check this thread:
http://www.majorfm.com/forum/uk-underground-scene/39815-nasty-crew-napa.html for a sample video...
None of my members can view the player, they all see a white player... what do i do? i really need your help on this, i have a busy forum... there must be a workaround?
For the moment, i have had to disable the built in player... please advise... do i need a new swf file or something?
AdmiralSpock
08-31-2006, 01:41 PM
Majorfm - did you enable them to be able to use the anymedia player? I had to go in and allow my usergroups to be able to see it, all they could see was the media tags.
MajorFm.com
08-31-2006, 02:13 PM
^^^ yes they can see it but only see white boxes... also does anyone know how to centralise the media player?
G_Man
08-31-2006, 08:20 PM
I don't understand this. Why should it matter if he's a member of the vB Chinese team or not?
So far AnyMedia has worked fine on 3.6 for me. But I'd really, really appreciate some kind of "stability" update to make certain that it works on 3.6. I really don't care about new features, it does everything it should do. This hack has really made my site work a lot better, and I really appreciate the work Crist has done. :)
ditto, twice....
What a GREAT hack. Would be a total shame to see it go to wayside. :(
Shazz
08-31-2006, 08:34 PM
How do you see that this is activated and works on the 3.6?
Also does anyone know why this happens:
White Screen Instead Of Player - Even Though I Refreshed Again & Again
Seems to work fine on firefox though....
Something must be conflicting it on thread view... any suggestions?
Please check this thread:
http://www.majorfm.com/forum/uk-underground-scene/39815-nasty-crew-napa.html for a sample video...
None of my members can view the player, they all see a white player... what do i do? i really need your help on this, i have a busy forum... there must be a workaround?
For the moment, i have had to disable the built in player... please advise... do i need a new swf file or something?
I dunno. I can see it just fine.
G_Man
09-01-2006, 03:00 AM
How do you see that this is activated and works on the 3.6?
What do you mean??
I am running it fine on 3.6
stan111
09-01-2006, 07:16 AM
anyone made this for 3.0.7 ?
or have it worked on 3.07 ?
AdmiralSpock
09-01-2006, 03:12 PM
anyone made this for 3.0.7 ?
or have it worked on 3.07 ?
This hack is for 3.5.x and uses plugins, so it won't work with the 3.0.x series. Have you tried this: https://vborg.vbsupport.ru/showthread.php?t=72162&highlight=media ?? I did a search in the 3.0.x hacks section, and thats what came up first.
DementedMindz
09-01-2006, 05:10 PM
I DO NOT know whether I should update the hack.
I'm not a coder of vBulletin-Chinese Team now, as I left there weeks ago.
Sorry about this, and I'll tell you how the update's going if it's really on the way.
hmmm i guess being on a team makes you have to update your code Crist? well i didnt think it was going to be updated since its been weeks with things not working right and you kept saying the same thing.
AdmiralSpock
09-01-2006, 11:52 PM
Maybe we all should develop a list of all the problems that people are having with AnyMedia on 3.6 right now, and a coder in the community could pick it up and figure out how to make it stable.
Before I purchased a vB license, I read here about the problems with selfish coders who abandoned their hacks and left many out in the cold, and I never thought that I'd experience that kind of thing. But apparently that is what is happening here.
My site depends on this hack, and for the most part it has been working on 3.6 but I know that there are some problems with it that people are having (that I have not experienced yet). I know now that I probably should have stayed with 3.5.4/3.5.5 for a while until this whole thing was settled.
Shazz
09-02-2006, 04:35 AM
What do you mean??
I am running it fine on 3.6
Show a screen shot or some example =\
phimshopcom
09-02-2006, 04:57 AM
What do you mean??
I am running it fine on 3.6
G Man ... were u able to play google video ..without its own player??? If so, what version are you using?
Attention All: Whoever got their forum to work with anymedia and able to play google video or any other...please be supportive and post your info... .
I am using VB 3.5... with the lastest AnyMedia 3.5 .. All seem to work fine... except that I have to use google's player ..to be able to play its videos.
AdmiralSpock
09-02-2006, 05:12 PM
I've attached a screenshot of flash working in anymedia.
I couldn't get Google video to work just now, all it said was "Loading". I haven't tried it with YouTube, as I don't use YouTube or Google videos on my site.
But Windows Media, flash, and .jpg images all work through the anymedia player. All I had to do was install it the normal way.
Edit: I see that Crist has been on the site today. Will he explain to the community further why being a part of the vB Chinese team matters in continuing the development of this hack?
G_Man
09-02-2006, 05:12 PM
I haven't used Google Video at all... I just tried and it did fail.
I have used it with YouTube (http://www.afterseppuku.com/theforum/showthread.php?p=89462#post89462) videos.
I will agree that this Hack is far from flawless, but I have used it a lot to make my forum better. I am sure that if Crist is not responding something has taken him away from a project that he has worked on for likely hundreds of hours...
Found it works best with stuff off your own server, like this video (http://www.afterseppuku.com/theforum/showthread.php?t=5715).
DementedMindz
09-02-2006, 05:14 PM
Show a screen shot or some example =\
do you use this player or googles and utubes? if you check with firefoxand internet explorer you will see its very buggy. yeah there is ways to get around it but when you do it check on both browsers cause they will mess up.
jeremycs
09-02-2006, 07:16 PM
Before I purchased a vB license, I read here about the problems with selfish coders who abandoned their hacks and left many out in the cold, and I never thought that I'd experience that kind of thing. But apparently that is what is happening here.
:laugh: You're kidding right?
How about selfish users expecting free updates for life on a free use-at-your-own-risk hack.
So if you publish a free add-on, then you are obligated to update it and keep it maintained for life? for free??
and if for some reason the author does not have the free time or inclination to update the add-on then they are being selfish???
And I suppose the more popular or useful the free add-on is, the more selfish the person is being by not keeping it updated? :p
It could just be that crist is burnt out on Anymedia or he doesn't have much time left to work on free projects at the moment.
But is there anything stopping you or anyone else from fixing the things you need fixed yourself (or hiring someone to do so) and publishing your fixes or changes here?
Just tackle the problems yourself, or wait for someone else does until Crist gets here.
I imagine since this project is somewhat popular, if Crist drops the ball too much longer, then someone else will pick up this project and run with it as they have with several other projects.
sandrodz
09-02-2006, 07:27 PM
its an awesome hack... he promised update and he'll do it... give him a break he's not obligated to make anything
jeremycs
09-02-2006, 07:29 PM
But Windows Media, flash, and .jpg images all work through the anymedia player. All I had to do was install it the normal way.
If you allow users to upload flash files to be played through anymedia, you're asking for big problems. A malicious user could easily trick you or your members into giving up their username & password for your forum.
In the event that they trick an ADMIN, moderator or other superuser into giving up their login information, then this could obviously cause a lot of problems.
AdmiralSpock
09-02-2006, 07:31 PM
If you allow users to upload flash files to be played through anymedia, you're asking for big problems. A malicious user could easily trick you or your members into giving up their username & password for your forum.
In the event that they trick an ADMIN, moderator or other superuser into giving up their login information, then this could obviously cause a lot of problems.
We don't allow users to post using the [media] tags. It's just admins, mods, and other staff. I'm not that stupid
How about selfish users expecting free updates for life on a free use-at-your-own-risk hack.
I didn't say I expected free updates for life. Had you taken the effort to read a few pages back, I had said that I and those who use this hack would appreciate a "stability" update to make sure that it works on 3.6. And if you would have taken the time to look at the first post, Crist states that he does not know if he will update the hack or not. If I knew PHP I would do it in a heartbeat. Perhaps someone else will update the hack, I don't know. Que sera, sera.
jeremycs
09-02-2006, 07:55 PM
We don't allow users to post using the [media] tags. It's just admins, mods, and other staff. I'm not that stupid.
Depending on the forum audience, it should be fine to allow the media tags.
As long as they are mature enough to know that it's possible that they will likely see something they might wish they hadn't once in awhile. :P
But it's allowing .swf (and other macromedia flash type) files to be played that is the problem. A person could easily create a flash file that would automatically redirect the browser upon loading. They could redirect it to a page that looks just like your forum login screen, steal the password & log the user user back in as if nothing happened.
The files from places like youtube, google video, etc when played through their respective players are flash & could pose the exact same problem.... but I seriously doubt that google or youtube will attempt to do anything malicious to your forum.
And if you would have taken the time to look at the first post, Crist states that he does not know if he will update the hack or not. If I knew PHP I would do it in a heartbeat. Perhaps someone else will update the hack, I don't know. Que sera, sera.
I don't need to look at the first post to know that authors of any of these free hacks are subject to disappear at any time. How's that for stability? :P
I understand what you're saying, but every time you click "INSTALL" you have to understand that you are taking and accepting a large number of risks.
If you're really worried about it, then don't install what you (or your programmers) can't audit & maintain.
The only thing that is really guaranteed is the base Vbulletin code.... and they do a pretty fine job :)
But you pay annually for updates to Vbulletin.
If you didn't, you could be sure that the Vbulletin wouldn't have anywhere near as many updates and timely fixes.
jeremycs
09-02-2006, 08:03 PM
Anyway I wouldn't be surprised if in the next year or so Vbulletin integrates something like this natively. If they don't, their competitors probably will & then vbulletin will have to. ;)
AdmiralSpock
09-04-2006, 12:36 AM
I don't know if anyone else has looked into this, but those of you having problems with YouTube on AnyMedia might want to look at this:
https://vborg.vbsupport.ru/showthread.php?t=111386&highlight=Media+BBCode
Edit: I just found a Google Video BBCode that was already made.. here it is https://vborg.vbsupport.ru/showthread.php?t=120212
Hopefully this might help someone who's having problems with these two until there is an update to the anymedia
hnjco
09-04-2006, 01:58 PM
I installed on my 3.6 board..
Everything working fine but for Google Videos i got message Error: unsupported media type.
anyone for help?
I posted how to get google video to work. But you have to use googles player. Which is no big deal IMO. Working fine on a 3.6 board and added some other sites to it.
Sarthek
09-06-2006, 08:09 AM
it doesnt show a videos in IE, in firefox it works fine
vb 3.5.4
itorrents
09-06-2006, 02:58 PM
It worked fine for me, but one thing I've noticed is that with the .flv files I have hosted that they stop showing up in the original post after a couple days! I can add a new post with the exact same link in the thread and it'll show up again in that post.
DementedMindz
09-06-2006, 03:00 PM
yeah i posted about that before but he failed to update it also dont update your post cache either or you will have to edit all your videos again
itorrents
09-06-2006, 03:03 PM
yeah i posted about that before but he failed to update it also dont update your post cache either or you will have to edit all your videos again
I was trying to backpeddle to see what I did to cause it, now it all makes sense :) that's exactly what I did ;) thanks for the tip m8 :cool:
DementedMindz
09-06-2006, 05:08 PM
no problem it just sucks to see a good hack go to waste since he wont be updating it and more. thats why i removed it support sucked and you can do the same thing this does with bbcode and not have to do near as many edits. add 2 bbcodes and your done this you have to edit templates all that bs only to find out half of the hack dont work.
angkor408
09-06-2006, 11:06 PM
is there a way user can upload there own song?
AdmiralSpock
09-07-2006, 02:25 AM
is there a way user can upload there own song?
You could upload as an attachment and link to the attachment through the [media] tags.
moonclamp
09-07-2006, 12:50 PM
When adding a .mid or .wav sound file, the attachment shows embedded in windows media player with the full visualization panel.
53161
So ... is there anyway to get rid of the video screen and just have the sound bar showing? .. it would be preferable if it played in the flash player, but that's not essential.
G_Man
09-07-2006, 10:19 PM
When adding a .mid or .wav sound file, the attachment shows embedded in windows media player with the full visualization panel.
53161
So ... is there anyway to get rid of the video screen and just have the sound bar showing? .. it would be preferable if it played in the flash player, but that's not essential.
I have 'cheated' by setting dimensions too small for the screen, like 400,100 .
moonclamp
09-07-2006, 11:02 PM
I have 'cheated' by setting dimensions too small for the screen, like 400,100 .
Yeah but then what happens when someone attaches or links a video file?
angkor408
09-07-2006, 11:50 PM
Where can I edit this option for the media tags? It would be nice if user have there own wma or mp3 song on there pc they can upload the file directly. All I see in this option is specify the song URL:
Thank,
angkor
You could upload as an attachment and link to the attachment through the [media] tags.
moonclamp
09-08-2006, 12:20 AM
Where can I edit this option for the media tags? It would be nice if user have there own wma or mp3 song on there pc they can upload the file directly. All I see in this option is specify the song URL:
Thank,
angkor
That would be through the standard attachment options in your admincp, although most servers have a 2 meg upload limit which isn't much good for large mp3 files.
angkor408
09-08-2006, 12:38 AM
HI, under my VBMusic max size I set to: 100000. I still can't see an option to upload music from my pc.
big dan
09-08-2006, 12:53 AM
works seemlessly on a heavily modded vB 3.6.0 for me :)
Thanks!
G_Man
09-08-2006, 01:43 AM
Yeah but then what happens when someone attaches or links a video file?
no no...
use it like this...
[ media=400,100 ] (without spaces of course)
That will resize it for THAT link only.
moonclamp
09-08-2006, 10:07 AM
Ah right, gotcha :)
That works on linked files, but you can't adjust the dimensions of attached ones.
angkor408
09-08-2006, 04:57 PM
Also, do you know why I'm getting this error msg? I check usergroup option but there setting for vbmusic. I got this error msg:
angkor408, you do not have permission to access this page. This could be due to one of several reasons:
Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
jojo77
09-08-2006, 05:54 PM
Has anyone got this to work with their VBAdvanced homepage? I get my player to show but when I click play, it says "Failed"
I'm using the Anymedia player to play all youtube and google vids btw.
*edit*
Just tryed using youtube's own player with this tag and it works. So I think it's an issue with the youtube video transferring to the anymedia player?
AdmiralSpock
09-08-2006, 07:31 PM
Also, do you know why I'm getting this error msg? I check usergroup option but there setting for vbmusic. I got this error msg:
angkor408, you do not have permission to access this page. This could be due to one of several reasons:
Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
It might be because you have denied your own admin usergroup access to that forum (if that's even possible). Are you sure you are referring to the right hack? You're saying vBMusic and I'm wondering if thats a different hack, or maybe a different name for this hack, I'm just a little confused on that. :)
So I think it's an issue with the youtube video transferring to the anymedia player?
That's probably the case. Someone will probably have to go in and edit the configuration for YouTube and Google video in the AnyMedia files to make it work. I've looked at it a bit, and it's extremely confusing (to me at least).
angkor408
09-08-2006, 07:43 PM
sorry I post in the wrong section. I had download this music module vB35Musicv2.
angkor408
09-08-2006, 07:51 PM
Does this module AnyMedia 3.0.4 able to allow use to upload song from there pc?
Silvio
09-09-2006, 01:25 PM
With I.Exploder 6 happen frequently that something goes wrong with temporary internet files.
At that point video wont be visible anymore (u can just hear it and it shows a dot on the upper left corner). To solve this just clear all the temporay files.
and again if u are looking at a movie for example on youtube, and at same time you look at the one you have loaded from youtube to your site. well it's interesting to see how they interact between them :alien:
Is it possible to correct this?
then I found noway to load anymore videos from google.
Pls CRIST don't leave us alone :cross-eyed:
swissknife
09-09-2006, 06:40 PM
hi!
i got the problem ,that i always get a black screen , if i try to play a file which is on my server located. other videos playing correctly. can anyone help me with this problem?
edit:
is that the problem?
Warnung: fopen(): SAFE MODE Restriction in effect. The script whose uid is 10001 is not allowed to access /tmp owned by uid 0 in /includes/class_upload.php (Zeile 269)
Warnung: fopen(/tmp/vbupload13841): failed to open stream: No such file or directory in /includes/class_upload.php (Zeile 269)
how can i solve it. all my trys didnt had an effect....
AdmiralSpock
09-10-2006, 10:52 PM
hi!
i got the problem ,that i always get a black screen , if i try to play a file which is on my server located. other videos playing correctly. can anyone help me with this problem?
edit:
is that the problem?
Warnung: fopen(): SAFE MODE Restriction in effect. The script whose uid is 10001 is not allowed to access /tmp owned by uid 0 in /includes/class_upload.php (Zeile 269)
Warnung: fopen(/tmp/vbupload13841): failed to open stream: No such file or directory in /includes/class_upload.php (Zeile 269)
how can i solve it. all my trys didnt had an effect....
Did you upload the files to your server?
Wait... try entering the full path (http://www.the-url/to/the/file) to the media and it might work
Edit: It might be that safe mode is activated on your PHP. Ask your host to deactivate it, and it might start working.
cheesegrits
09-11-2006, 04:24 PM
I didn't say I expected free updates for life.
No, indeed, what you said was:
Before I purchased a vB license, I read here about the problems with selfish coders who abandoned their hacks and left many out in the cold, and I never thought that I'd experience that kind of thing. But apparently that is what is happening here.
Which sure as heck implies that you consider Crist to be one of those "selfish" coders who has "abandoned" you and left you "out in the cold".
Sheesh. With that kind of attitude, I'm not surprised Crist is taking a break.
-- hugh
AdmiralSpock
09-11-2006, 07:26 PM
No, indeed, what you said was:
Which sure as heck implies that you consider Crist to be one of those "selfish" coders who has "abandoned" you and left you "out in the cold".
Sheesh. With that kind of attitude, I'm not surprised Crist is taking a break.
-- hugh
I wish you all would quit attacking me. I really don't care now as much as I did before, and although I really would appreciate some kind of update I realize that it may not happen and that I should develop something in-house to use instead.
So, officially, I say, quit attacking comments I made many weeks ago. And if you're just seeing this, read what I said above.
redlabour
09-13-2006, 11:41 AM
If there was a Update for the Future i would like to have support for this URL :
http://www.dailymotion.com/
hurry
09-13-2006, 02:45 PM
If I have an url link in the body of the post pointing to a mp3 file, will it automatically convert it into the embedded player? Please reply.
sabillondesigns
09-13-2006, 08:18 PM
hello,
i would like to see a Live Demo, where can i find 1?
Hornstar
09-14-2006, 03:29 AM
If you do come back and support it again, this is another hack that it could be integrated into DownloadsII
Maybe releasing a free and paid version would make you feel like supporting it again?
MajorFm.com
09-14-2006, 10:27 PM
Anyone get this working with google? i get a never ending buffer.... even though im not using the flash player...
http://www.majorfm.com/forum/i-get-you/19008-waco-massacre.html
sabillondesigns
09-15-2006, 08:57 PM
how do you play youtube and google videos?
like wat do you put in the URL section??? ?????
redlabour
09-15-2006, 09:32 PM
how do you play youtube and google videos?
like wat do you put in the URL section??? ?????
The URL of the Video ! :rolleyes:
teedizz
09-15-2006, 10:56 PM
will this work with 3.6.1 because i have seen a few people that says it does & a few that says it doesnt..haha
redlabour
09-16-2006, 04:31 AM
will this work with 3.6.1 because i have seen a few people that says it does & a few that says it doesnt..haha
It works !
teedizz
09-16-2006, 06:07 AM
It works !
well thanks for the advice. I took your word for it & installed it & it didnt work so i guess the others were right. It does work with 3.6 but i had asked about 3.6.1. thanks anyway
redlabour
09-16-2006, 07:03 AM
well thanks for the advice. I took your word for it & installed it & it didnt work so i guess the others were right. It does work with 3.6 but i had asked about 3.6.1. thanks anyway
http://www.politikstube.de/forum/showpost.php?p=42005&postcount=7
vBulletin 3.6.1 - it works ! :rolleyes:
criscokid
09-16-2006, 01:33 PM
Just installed... this is a fantastic mod!! Thanks Crist for the time taken to develop it :) :)
How easy is it to add new video sites like Veoh (http://www.veoh.com/) or is it something the developer needs to do?
criscokid
09-16-2006, 02:45 PM
The only way I could get Google Video to work was to use the [BB Code] Google embedded video mode (https://vborg.vbsupport.ru/showthread.php?t=120212).
Using the MEDIA tags option for Google video resulted in a 'connection was reset by server' error message in Firefox. What could be cauing this?
teedizz
09-16-2006, 04:14 PM
http://www.politikstube.de/forum/showpost.php?p=42005&postcount=7
vBulletin 3.6.1 - it works ! :rolleyes:
did you have to mess with any of the files or templates to make it work cause it just wont work for me bro..haha
AdmiralSpock
09-16-2006, 04:21 PM
did you have to mess with any of the files or templates to make it work cause it just wont work for me bro..haha
You have to upload the files :D
When I first installed it I didn't upload the files and I was trying to figure out why it didn't work. :D There are also template edits you have to make, and the product import. It's all in the install file. :)
teedizz
09-16-2006, 04:26 PM
You have to upload the files :D
When I first installed it I didn't upload the files and I was trying to figure out why it didn't work. :D There are also template edits you have to make, and the product import. It's all in the install file. :)
i did that bro, i uploaded all the files & made the template changes & imported the english.xml & still nothing. I use a different style so maybe that may be the problem.
well thanks for the advice. I took your word for it & installed it & it didnt work so i guess the others were right. It does work with 3.6 but i had asked about 3.6.1. thanks anyway
It works with 3.6.1
For google to work you have to do some edits. Google changed the url for the vids. I posted it somewhere in this thread on how to get it working.
Adding other sites isn't that hard. But take a few edits and you have to upload the plugin again.
teedizz
09-16-2006, 06:32 PM
you think having different styles has anything to do with it?
Morrus
09-17-2006, 04:24 AM
Having a problem - hope someone can help!
I've uploaded all files ad imorted the plugin. However, when I look at the install.htm file for the template edits, there's a whole load of text missing - so I can't tell which templates I'm supposed to edit.
Screenshot attached.
If someone could either attach a working install,html file or just tell me what the template edits are supposed to be, I'd be gratefull!
Raul7
09-17-2006, 03:41 PM
I posted how to get google video to work. But you have to use googles player. Which is no big deal IMO. Working fine on a 3.6 board and added some other sites to it.
hi, i tried your hack, but still no luck, i get a unsupported media any idea?
thanks
AdmiralSpock
09-17-2006, 04:32 PM
Having a problem - hope someone can help!
I've uploaded all files ad imorted the plugin. However, when I look at the install.htm file for the template edits, there's a whole load of text missing - so I can't tell which templates I'm supposed to edit.
Screenshot attached.
If someone could either attach a working install,html file or just tell me what the template edits are supposed to be, I'd be gratefull!
That is strange! I can't attach HTML pages for some reason, so it's in a zip file.
Perhaps the ZIP got corrupted somehow after a certain time and that html file got messed up... that is very weird.
Morrus
09-17-2006, 05:25 PM
That is strange! I can't attach HTML pages for some reason, so it's in a zip file.
Perhaps the ZIP got corrupted somehow after a certain time and that html file got messed up... that is very weird.
Hmm.. that does the same thing. I'm using the latest IE....
Any chance someone could just paste the text onto the forum here?
dakar
09-17-2006, 08:56 PM
Definately works with 3.6.1 without an issue :) Thanks!!!!!
Example;
http://www.captivereefing.com/showthread.php?t=3706
syrus.xl
09-17-2006, 09:04 PM
Hmm.. that does the same thing. I'm using the latest IE....
Any chance someone could just paste the text onto the forum here?
I had the same problem. IE 7.0 is still in beta, and is full of bugs. Use IE 6.0 or Firefox, and you'll see all the Installation edits, etc.:)
teedizz
09-18-2006, 01:02 AM
Definately works with 3.6.1 without an issue :) Thanks!!!!!
Example;
http://www.captivereefing.com/showthread.php?t=3706++
anything special that you had to do?
KevNJ
09-18-2006, 01:46 AM
fresh install on 3.6.1 not working :\
teedizz
09-18-2006, 02:23 AM
fresh install on 3.6.1 not working :\
exactly....thats why i know people that are saying they'r getting it to work on 3.6.1 have to be doing a few extra edits somewhere .... lol
criscokid
09-18-2006, 07:39 AM
fresh install on 3.6.1 not working :\
What's not working? What error messages are you receiving? At what step (assuming you're checking things still work as you go along) does it all stop working?
KevNJ
09-18-2006, 09:14 AM
What's not working? What error messages are you receiving? At what step (assuming you're checking things still work as you go along) does it all stop working?
it installs without a problem it just doesnt show up in the toolbar as an option to use. i did the edits as i had used version 1.3 without any problems, just wont show the media.gif as an option to use.
DementedMindz
09-18-2006, 09:25 AM
What's not working? What error messages are you receiving? At what step (assuming you're checking things still work as you go along) does it all stop working?
It dont work well at all. One thing may work in internet explorer and it dont in firefox. One thing dont update your post cache or you will lose all your videos this is buggy as hell we asked for a update and he blew it off but now he cant update it cause hes not with vBulletin-Chinese Team now. Ashame to let a good hack go to waste with a excuse your not part vBulletin-Chinese Team now.
redlabour
09-18-2006, 11:59 AM
It dont work well at all. One thing may work in internet explorer and it dont in firefox.
One thing dont update your post cache or you will lose all your videos
this is buggy as hell we asked for a update and he blew it off
but now he cant update it cause hes not with vBulletin-Chinese Team now. Ashame to let a good hack go to waste with a excuse your not part vBulletin-Chinese Team now.
1. Only Google Videos are buggy. All others work.
2. Absolutely wrong! It still works.
3. Only Googlevideos are buggy.
4. Full Ack.
DementedMindz
09-18-2006, 01:42 PM
Have you tested it in both internet explorer and firefox with both youtube and google video? Then you will see it dont work well. Have you updated your post cache? Look through this whole thread you will see alot of bugs so its not just google.
KevNJ
09-18-2006, 02:55 PM
hmm.. seems to be working now.. well for some files that is. hopefully this gets a fix given that it was mod of the month it shows that alot of members are interested in it and would need a fix.
redlabour
09-18-2006, 03:01 PM
Have you tested it in both internet explorer and firefox with both youtube and google video?
Then you will see it dont work well. Have you updated your post cache?
Look through this whole thread you will see alot of bugs so its not just google.
1. Yes !
2. Yes !
3. I only have the one with Google.
redlabour
09-18-2006, 03:19 PM
hopefully this gets a fix given that it was mod of the month it shows that alot of members are interested in it and would need a fix.
Let?s fight for it :
English Suggestions Thread at vbulletin.com (http://www.vbulletin.com/forum/showthread.php?t=201264)
Deutscher Vorschlagsthread auf vbulletin-germany.com (http://www.vbulletin-germany.com/forum/showthread.php?t=25887)
DementedMindz
09-18-2006, 03:45 PM
I posted my feedback but I think we have a better chance of getting pregant then seeing them include it.
KevNJ
09-18-2006, 04:47 PM
well only reason why i think it should be updated to work with vb3.6.x is cause well for 2 that i can think of right away.
*mod of the month - so big interest and lots of forums are using it based on the download number
*there was a "this will be updated in 3 days" for well longer then 3 days so some may have lead to believe it was going to and installed the then most current version and waited for an update that has not yet come.
reasons it shouldnt get updated
* the creator did this for free, its not a commercial product so he is not obligated to continue to make updates - and there doesnt need to be any other reasons really.
sabillondesigns
09-18-2006, 06:28 PM
The URL of the Video ! :rolleyes:
i tried that but videos from google or youtube are not workin :confused:
i works with windows media player files tho...
anybody knows how they get it to work?
and how do i make it show "buffering" when mpegs are buffering?
teedizz
09-18-2006, 07:01 PM
This is all screwed up....i mean then again, im speaking on behalf of 3.6.1 users.....another coder needs to step up & get this thing working ... hahaha...ill make sure im the first to donate for the effort
redlabour
09-18-2006, 08:35 PM
This is all screwed up....i mean then again, im speaking on behalf of 3.6.1 users.....another coder needs to step up & get this thing working ... hahaha...ill make sure im the first to donate for the effort
Better vote for it then Donate for it. There a Coders at Jelsoft that get our Money every Year. ;)
http://www.vbulletin.com/forum/showthread.php?t=201264
para777
09-18-2006, 09:25 PM
installed but when i try to watch video i get
click here to play>>>>>>failed
anybody any ideas
redlabour
09-18-2006, 10:04 PM
installed but when i try to watch video i get
click here to play>>>>>>failed
anybody any ideas
Read the Thread - some Videos causes that Problem. Wait for a Update.
G_Man
09-18-2006, 11:04 PM
Better vote for it then Donate for it. There a Coders at Jelsoft that get our Money every Year. ;)
http://www.vbulletin.com/forum/showthread.php?t=201264
I'd go either way. Posted over on .com. ;)
Ordovicium
09-19-2006, 09:42 AM
Is there a way to add very fast an user option, where the user can decide to load den code automatically or on request by clicking on the increase button?
redlabour
09-19-2006, 10:46 AM
Is there a way to add very fast an user option, where the user can decide to load den code automatically or on request by clicking on the increase button?
Lies den Thread - der Hack ist momentan eingeschlafen.
Stimm hier ab : http://www.vbulletin-germany.com/forum/showthread.php?t=25887
Read the Thread - this Hack is not under development at the Moment.
Ordovicium
09-19-2006, 11:32 AM
Naja, sowas hat ja nicht direkt mit dem Hack zu tun. Sozusagen ein Add-on zum Add-on :)
Actually this request doesn't need Anymedia. Maybe an Add-on for the Add-on. :)
hi, i tried your hack, but still no luck, i get a unsupported media any idea?
thanks
make sure ur using google.com and not google.ca
I noticed alot of people posting it with that saying its not working. Otherwise that code should fix google. As long as you're using googles player on your site.
barryhand
09-19-2006, 07:40 PM
Great mod, is there any method to customise the default black screen on the video player?
redlabour
09-19-2006, 09:39 PM
Alternative Hacks till there comes a Update of AnyMedia :
GoogleVideo (https://vborg.vbsupport.ru/showthread.php?t=120212)
YouTube (https://vborg.vbsupport.ru/showthread.php?t=111386)
QuickTime (https://vborg.vbsupport.ru/showthread.php?t=123505)
AVI, WMA, MPEG etc. (https://vborg.vbsupport.ru/showthread.php?t=103047)
teedizz
09-20-2006, 12:04 AM
Alternative Hacks till there comes a Update of AnyMedia :
GoogleVideo (https://vborg.vbsupport.ru/showthread.php?t=120212)
YouTube (https://vborg.vbsupport.ru/showthread.php?t=111386)
QuickTime (https://vborg.vbsupport.ru/showthread.php?t=123505)
AVI, WMA, MPEG etc. (https://vborg.vbsupport.ru/showthread.php?t=103047)
.
thanks bro..have those been tested on 3.6.1/
redlabour
09-20-2006, 06:20 AM
.
thanks bro..have those been tested on 3.6.1/
No Problem. ;)
ubblite
09-20-2006, 07:31 AM
Alternative Hacks till there comes a Update of AnyMedia :
I don't think there will ever be an update for this mod. I hope a coder takes over this modification and updates it... that would be very nice.
ChurchMedia
09-20-2006, 04:33 PM
I'd be willing to help pay someone (including Crist) to update this hack to 3.6.1. PM me if you're interested.
teedizz
09-20-2006, 05:25 PM
I'd be willing to help pay someone (including Crist) to update this hack to 3.6.1. PM me if you're interested.
add me to that pm list also ;)
rockethobbit
09-22-2006, 06:27 AM
I'd be willing to help pay someone (including Crist) to update this hack to 3.6.1. PM me if you're interested.
Include me. We should start a pot to get a coder motivated to doing this. If we get enough people to shell out then it would happen. Say 50x$10=$500
what doesn't work that you guys want to work?
redlabour
09-22-2006, 09:28 AM
what doesn't work that you guys want to work?
Google Videos, MyVideo.de Videos and some other are no longer compatible.
Sometimes if you have two Videos in one Posting only one is playing the otherone is "white".
Can it use those sites players? Or must it use the anymedia player? I prefer it to use the sites player. Gotta give them some credit.
redlabour
09-22-2006, 05:14 PM
Can it use those sites players? Or must it use the anymedia player? I prefer it to use the sites player. Gotta give them some credit.
Nobody will hate you if you use the original Players. ;)
But i think the most interisting Part is to have it officially released at 3.6 Section as a new Hack. ;)
sabillondesigns
09-22-2006, 10:24 PM
it installs without a problem it just doesnt show up in the toolbar as an option to use. i did the edits as i had used version 1.3 without any problems, just wont show the media.gif as an option to use.
does the code work tho?
try typin it (url)
redlabour
09-23-2006, 01:19 PM
Crist please update. Nobody understands what the Chinese Team has to do with the Hack.
We all love this Hack.
:D
Thanks for your concern on this hack.
Hmmmm.....and now ? ;)
hotwheels
09-23-2006, 04:09 PM
I had to quit using it for now, i am uploading video's by hand using bbcodes........One thing i have noticed though with google, every other upload change's it's call to show number.......say you upload 2 video's back to back, the first video number will be 78946134879876 and the next video number will ve -78946134879875....every other video call has the little "-" in the beginning........
Is the author done with this hack? I see he still visits this site. But this does work with one change to google.
redlabour
09-23-2006, 04:40 PM
Read then ask :
https://vborg.vbsupport.ru/showpost.php?p=1081457&postcount=1637
Tralala
09-25-2006, 03:03 PM
Still works for me... my only issue is that Google videos autostart, even though I turned that OFF in the Admin prefs...
daystorm
09-26-2006, 06:48 PM
Hi, there are so many posts on here that I am not going to have time to weed through them all to find the answer to my question... So, if this has been asked before, I apologize in advance...
Is there anyway to have this show on a regular page instead of just in the forums?
Thank you,
Ella
Tsabo
09-27-2006, 02:02 PM
Hi, there are so many posts on here that I am not going to have time to weed through them all to find the answer to my question...
There is a tool called "Search this thread", it works amazingly well. Yet another cool feature of vBulletin.
Tralala
09-30-2006, 04:44 PM
Still works for me... my only issue is that Google videos autostart, even though I turned that OFF in the Admin prefs...
Ah, phew. I managed to fix this by switching the settings to Use AnyMedia Player for Google's video site. In fact I use AnyMedia Player for all of them, except YouTube now (which continues to work fine, no autostart.)
Everything's working so well now, I'm almost afraid to do the upgrade to vB 3.6... considering the conflicting reports about whether it works or not! Seems like it'll work for upgraders, but not fresh installers?
i upgraded and it worked fine. I haven't installed in on a fresh board yet but I don't see why it wouldn't work.
dakar
10-01-2006, 01:36 PM
Installed on 3.5.4 and it worked great, upgraded that board up to 3.6.1 and still rocks... Even an install on a fresh install of 3.6.1 and no changes....
unitedbreaks
10-03-2006, 01:38 PM
I am using 3.6.1 .. I am waiting for this to mod to be approved by Crist for such version.
Looks like a great mod! One thing, Requesting additional Supported Flash/WMV Video Sites...
- Break.com to be added.
- CollegeHumor.com to be added.
Thanks!
Daniel J.
InfoSpyware
10-03-2006, 03:46 PM
I installed in vB 3.6.1 and working good, but i have problems with some videos and see this error:
Error: unsupported media type.
For example this video:
http://video.google.es/videoplay?docid=8196367439341104329
Salu2
unitedbreaks
10-04-2006, 12:23 PM
I installed in vB 3.6.1 and working good, but i have problems with some videos and see this error:
Error: unsupported media type.
For example this video:
http://video.google.es/videoplay?docid=8196367439341104329
Salu2
okay, im going to give it a try..
unitedbreaks
10-04-2006, 01:53 PM
Player shows.. but doesn't play.
http://www.unitedbreaks.fm/forums/showthread.php?p=618#post618
DementedMindz
10-04-2006, 02:11 PM
psst look at your link http://clip.break.com/dnet/media/content/f117_stealth_model_crashes.wmv
Not Found
The requested URL /dnet/media/content/f117_stealth_model_crashes.wmv was not found on this server.
BigVrunga
10-06-2006, 08:11 PM
This looks like a great hack - I cant get it working though. The AnyMedia player wont show or play. It playes videos fine when I turn the AnyMedia player off for a particular site.
Im a little confused - Ive read through this thread and early on Chrst said Template modifications werent necessary. In the install guide, it says to perform them so I did...could this be the problem?
Thanks,
BV
BigVrunga
10-06-2006, 08:13 PM
Awww damn it - Im using VB 3.6.1!!! No wonder it doesnt work. Shucks. :(
dakar
10-06-2006, 11:29 PM
Awww damn it - Im using VB 3.6.1!!! No wonder it doesnt work. Shucks. :(
Don't give up hope.... it's working fine on 3.6.x, double/triple check your install...
The only thing I've found is the linked media needs to end with a valid file extension which can take a little massaging the URL to get it to play...
AdmiralSpock
10-07-2006, 01:13 AM
Im a little confused - Ive read through this thread and early on Chrst said Template modifications werent necessary. In the install guide, it says to perform them so I did...could this be the problem?
He probably said that early in the thread because it was a version that didn't require tempalte modifications. But the official mod post says for the current version to make 4 template mods. Did you do all 4 like it said in the install guide? Also, did you upload all the files?
Wheemer
10-07-2006, 01:27 AM
Yeah I just installed this on a 3.6.2 site and it's working very well...
It would be nice if there was an update soon to support more google variations, like .ca, .es etc.
Also, if the file is a audio only file that is attached, it should auto recognize it and have a small player show, instead of the default size.
And if we could use the latest flv player that has the fullscreen button it would be great for sure.
Thank you for this great contribution.
Wheemer
10-07-2006, 01:44 AM
I just fixed the problem with it not working with other countries google urls
Line 255 of class_anymedia.php - change:} elseif ((strpos(strtolower($text), 'http://video.google.com') === 0) && array_key_exists('google', $this->_typeList)) {
to} elseif ((strpos(strtolower($text), 'http://video.google') === 0) && array_key_exists('google', $this->_typeList)) {
and it seems to now work for me...
DementedMindz
10-07-2006, 01:49 AM
you got better results with the same code? hmm you removed .com and it works good?
MissKalunji
10-07-2006, 02:29 AM
anyway to add a watermark on the videos attachement?
abramelin
10-13-2006, 09:08 PM
the flash player is not working on internet explorer but working on firefox. why is that?
and is this mod compatible with 3.6.2?
toolblast
10-14-2006, 03:01 AM
Have problem with this in IE. I can hear sound, but picture dont show up.
I using latest version .
I have the same issue.... I added a GOOGLE VIDEO video... and it just plays it in a very small 5x5px box.... and I hear sound but dont see it cause its so small
Works just fine in firefox.... but its a mini box thats impossible to see in IE6!!!
unitedbreaks
10-16-2006, 12:16 PM
I have it working good now... The only issue i'm having is lets say I post a thread/reply with a video inline.... It works fine for a few days then the media player disappears.. Like a Scheduled Task removed it or something.
When I click Edit - It shows the [media] tag.. then I save the post (with no edits)... It shows right back up and stays for a few more days.
Its very odd.
Stunner
10-16-2006, 11:50 PM
Any possible way to add this to the forum where you could post a Song of the day/week? I thought I saw this done somewhere.
saman
10-17-2006, 01:50 PM
is it possible to use this on 3.6.2 (using IE 6)?
big dan
10-17-2006, 03:47 PM
is it possible to use this on 3.6.2 (using IE 6)?
I'm running it on 3.6.2 with no problems. None of my IE members are complaining.
G_Man
10-17-2006, 06:31 PM
I'm running it on 3.6.2 with no problems. None of my IE members are complaining.
I think it depends on lots of factors, so it might run fine on one site and not another with the same version.
I have had videos quit on me, so I simply edit the post and click submit again without changing anything and then it works again...
Lots of factors here...
BamaStangGuy
10-18-2006, 12:10 AM
Is there a way to disable the media tag in signatures?
James T Brock
10-18-2006, 03:07 AM
I have it working good now... The only issue i'm having is lets say I post a thread/reply with a video inline.... It works fine for a few days then the media player disappears.. Like a Scheduled Task removed it or something.
When I click Edit - It shows the [media] tag.. then I save the post (with no edits)... It shows right back up and stays for a few more days.
Its very odd.
I'm having the exact same problem and actually came to this thread to find an answer. Anyone else encounter this annoying bug yet?
redlabour
10-18-2006, 10:49 AM
AnyMedia will never be updated again. That is what Chris send to me via PM today. :(
I wait for the next answer where i hope he tell us why.
saman
10-18-2006, 02:44 PM
AnyMedia will never be updated again. That is what Chris send to me via PM today. :(
I wait for the next answer where i hope he tell us why.
thats really bad :cry:
Carmen27
10-21-2006, 03:58 AM
This doesn't work with 3.6.1. As soon as I upgraded to 3.6.1 it stopped working for me.. I can't figure it out and it appears as though tihs hack has been abandoned so I have to unistall it.. Carmen
Datenpapst
10-21-2006, 01:01 PM
will there be an update to 3.6.2?
AdmiralSpock
10-21-2006, 05:23 PM
will there be an update to 3.6.2?
Probably not... it's been several months since Crist promised an update, and since he altered his promise to say "I dont know whether or not I will update the hack".
There are other hacks now that will probably do most of what anymedia did... we are still using the 3.5 version on our 3.6.2 site without much difficulty although we do not use google and youtube links which seem to be causing the most problems.
Will there be an update to 3.6.2? Plzz Crist!
redlabour
10-22-2006, 11:33 AM
Will there be an update to 3.6.2? Plzz Crist!
I have posted it several Times and others of course too :
NO!
AdmiralSpock
10-22-2006, 11:50 AM
I have posted it several Times and others of course too :
NO!
Your rudeness isn't necessary. I doubt they would want to read through all 100+ pages of the thread.
redlabour
10-22-2006, 12:18 PM
Your rudeness isn't necessary. I doubt they would want to read through all 100+ pages of the thread.
Are you kidding me ? He has only to read your single Post before .... and it is not to much to read minimum the last 20 Postings or use the "Search this Thread (https://vborg.vbsupport.ru/showthread.php?p=1101962&posted=1&nojs=1#goto_threadsearch)" Function.
AdmiralSpock
10-22-2006, 05:19 PM
Are you kidding me ? He has only to read your single Post before .... and it is not to much to read minimum the last 20 Postings or use the "Search this Thread" Function.
Perhaps he already understood that but wanted to know from Crist.
Whatever. But it's not necessary to attack every person who wants an update on the... update.
big dan
10-22-2006, 06:12 PM
I have a heavily modded 3.6.2 board and have no problem with uTube & Google videos. I haven't tried the others yet.
My biggest problem is getting users to use . :eek:
Braincrusher
10-22-2006, 08:57 PM
myvideo doesn´t works
saman
10-22-2006, 11:18 PM
is there any other trusted plugin such as this one (but for 3.6.2) ??
Ev!L ErN!E
10-23-2006, 05:32 AM
is there any other trusted plugin such as this one (but for 3.6.2) ??
ya I'd like to know as well, as of right now the only bbcode I'm using is one for You Tube, but I'd like to add more video options
BamaStangGuy
10-24-2006, 06:55 PM
Bummer
fatwillie
10-25-2006, 01:16 AM
Bummer indeed, I simply LOVE this mod. Please update to 3.6.2
saman
10-25-2006, 11:21 AM
does anyone have the ability to update this mod??
Steve123
10-26-2006, 11:35 AM
anyone know how to disable the autostart altogether?
osso12
10-26-2006, 06:42 PM
anyone know how to disable the autostart altogether?
ACP, Vbulliten options, Anymedia BBCode Options, Edit settings, Autostart?
Put the radio button on "NO" instead of Yes.
Steve123
10-26-2006, 09:37 PM
ACP, Vbulliten options, Anymedia BBCode Options, Edit settings, Autostart?
Put the radio button on "NO" instead of Yes.
Yes, but the users can still put the autostart option in.. i want to disable autostart altogether..
VbStudent1
10-27-2006, 02:09 PM
Super Hack! I have just installed into 3.6.2 and it works well. It is working in Firefox and IE for everything I have tested so far (YouTube, PDF files, WMV, MP3). Only small issue is that I do need to refresh after edit to view files. Other than that it is a very smooth addition.
Thanks Again!
Renmiri
10-28-2006, 02:26 PM
Is it just me or the AnyMedia player is woefully out of tune ?
Ewww!!!
Try AnyMedia on this URL, then try rm player to see the difference:
http://eternalspira.ffproject.net/showthread.php?t=616
Is there any way to default mp3 to rm player ?
fishhub
10-29-2006, 12:05 PM
Hello All,
I directly installed 3.0.4. into v3.5.4 and my system is with CMPS 2.1 Its not working at all. But I can set all the usergroup permissions and actiavted all the anymedia bbcode permission under vbulltin options. In fact while surfing some threads i got this message :
Warning: Unknown(class_anymedia.php): failed to open stream: No such file or directory in /includes/class_postbit.php(402) : eval()'d code on line 2
Warning: (null)() [function.include]: Failed opening 'class_anymedia.php' for inclusion (include_path='.:/usr/local/lib/php') in /includes/class_postbit.php(402) : eval()'d code on line 2
Fatal error: Cannot instantiate non-existent class: anymedia in /home/fishhub/www/www/forum/includes/class_postbit.php(402) : eval()'d code on line 3
Would like to know must i dowload from 3.0.0 to 3.04? If thats the case, there is'nt any files from 3.0.0?
HOpefuly some kind souls can assist.:glasses:
AdmiralSpock
10-29-2006, 12:07 PM
Hello All,
I directly installed 3.0.4. into v3.5.4 and my system is with CMPS 2.1 Its not working at all. But I can set all the usergroup permissions and actiavted all the anymedia bbcode permission under vbulltin options. In fact while surfing some threads i got this message :
Warning: Unknown(class_anymedia.php): failed to open stream: No such file or directory in /includes/class_postbit.php(402) : eval()'d code on line 2
Warning: (null)() [function.include]: Failed opening 'class_anymedia.php' for inclusion (include_path='.:/usr/local/lib/php') in /includes/class_postbit.php(402) : eval()'d code on line 2
Fatal error: Cannot instantiate non-existent class: anymedia in /home/fishhub/www/www/forum/includes/class_postbit.php(402) : eval()'d code on line 3
Would like to know must i dowload from 3.0.0 to 3.04? If thats the case, there is'nt any files from 3.0.0?
HOpefuly some kind souls can assist.:glasses:
Did you upload the files?
fishhub
10-30-2006, 07:02 PM
Did you upload the files?
yes, i certianly uploaded all the files.
pokerie
11-02-2006, 03:51 PM
Hi,
I'm using this on 3.6.2, it's cool thanks. Just one problem so far, on some swf games, some of the key wont work even though they do in the original game, just not when it's in the any media box?
syrus.xl
11-02-2006, 04:30 PM
Perhaps if I can can get Crist's permission I'll design an update for this hack. Re-design and recode the inline flash player.
A few of the FAQ's Crist has listed can be fixed, with very little code changes - I've looked at his code, thoroughly and it doesn't seem that hard to update to run on 3.6 and above. Quite a few changes have been made to vbulletin core files, but not many that would affect this type of modification.
I'm already in the middle of a bigger project that works very similar to this hack, and in development progress. A modification that can play mp3's, video, 'live' tv and radio streaming are all catered for.
I'll contact Crist in the next few days, hopefully with his permission to use his excellent code, and update the flash player.
:)
redlabour
11-02-2006, 05:22 PM
I'll contact Crist in the next few days, hopefully with his permission to use his excellent code, and update the flash player.
:)
Sure you can - he posted allready that somebody else can make it if he want. :)
syrus.xl
11-02-2006, 06:00 PM
Sure you can - he posted allready that somebody else can make it if he want. :)
I'll need the flash source files to collate the variables, and be able to update the players. Both use default flash skins, but their AS would differ significantly.
I did ask Crist before, but he never updated the mod and I never received the source files he promised.
Sexified Ninja
11-02-2006, 08:07 PM
it works for me on 3.6....
anyways, is there a way to put this in the bbcode manager after its installed (so users can know its available to use)?
I did some testing due to some issue's with normal operations of the forums, and for now i'm disabling this.
vB 3.62 & vBA 2.2.1
AnyMedia Disabled
Quick reply worked both in Firefox and IE.
AnyMedia enabled
Quick reply fails in Firefox. Giving just a white screen.
Quick reply is delayed for approx 5 seconds in IE after hitting submit.
4Prometheus
11-03-2006, 12:22 AM
We just wanted to say thanks.
We chose 3.5.4 just to use this hack and to have the building blocks for a castle sized hack...
We are 1/2 thru the testing phase for all exts.
Thanks again.
Prometheus...
Sexified Ninja
11-03-2006, 01:17 AM
it works for me on 3.6....
anyways, is there a way to put this in the bbcode manager after its installed (so users can know its available to use)?
:confused:
pokerie
11-03-2006, 07:01 AM
Is nobody else having the problem with only some of the keys working on swf games with this? I'm using 3.6.2 and everything else seems to work perfectly besides that:confused:
ShadowOne
11-03-2006, 02:52 PM
I Cant Even Read The Instructions...
Crazy Serb
11-05-2006, 08:54 AM
I did some testing due to some issue's with normal operations of the forums, and for now i'm disabling this.
vB 3.62 & vBA 2.2.1
AnyMedia Enabled
Quick reply worked both in Firefox and IE.
AnyMedia enabled
Quick reply fails in Firefox. Giving just a white screen.
Quick reply is delayed for approx 5 seconds in IE after hitting submit.
and the difference is?
both are "enabled"...
|oR|Greg
11-06-2006, 12:33 PM
Using 3.6.0, no workie. Oh well.
dreamflavor
11-07-2006, 06:33 AM
I'll need the flash source files to collate the variables, and be able to update the players. Both use default flash skins, but their AS would differ significantly.
I did ask Crist before, but he never updated the mod and I never received the source files he promised.
Attached are the Flash Source Files.
Morrighan256
11-07-2006, 11:26 PM
I have a small, stupid question. I can't the media image to show in the text editor. I can see the space where it should be, and I uploaded it to /images/editor/media.gif, but it's not showing up. How can I fix that, please?
I have a small, stupid question. I can't the media image to show in the text editor. I can see the space where it should be, and I uploaded it to /images/editor/media.gif, but it's not showing up. How can I fix that, please?
You need to copy the image in the folder of the skin you use. But you already found that when you rightclicked the words and selected VIEW IMAGE... then it will reveal the path to you...
Hope it works out! :)
Crazy Serb
11-09-2006, 04:18 AM
Attached are the Flash Source Files.
should we be expecting a fix for 3.6.x anytime soon then?
kotabe
11-09-2006, 11:05 AM
Don't know if anyone got same prob like me; this hack is work fine with default skin but i got prob when using this hack in my skin and the prob is when i post a .flv file (like youtube) it just play sound only not the flash movies :|
4Prometheus
11-09-2006, 09:29 PM
Excellent hack.
This hack is one of the reasons we chose this version of VB.
Diffenetly needs to be done for 3.6 +
Thank you.
saman
11-10-2006, 12:33 PM
It would be great if this hack would be adjusted for 3.6...
I would love to see this for 3.6.x as well! In fact I have serveral video forum still from 3.5.x waiting.....
Can anyone have updated Flash Player ??
default player is very simple and not attractive for site visitors..
YouTube style player will be cool :)
If Crist is not available... then other vB's coders! please try to update the player. :) as soon as possible.
Thanks.
MotMann
11-11-2006, 07:14 PM
Okey.. after i made the bitfieldsnew, it's work. But, what i must do, that the Player starts in a new Window and not in the Posting?
Okey.. after i made the bitfieldsnew, it's work. But, what i must do, that the Player starts in a new Window and not in the Posting?
Hmm thanks dear.. but i think player should play videos in the posting..
anyway.. All the best :)
syrus.xl
11-11-2006, 10:41 PM
I am looking at updating this modification... I've just been examining the original fla source code, which seems a bit strange to me, and probably the cause of the 'white screen' on some browsers.
I'll update the players default skins and look into the vb code changes needed, hopefully change this from 'template edits' to a Product XML.
I do have other projects and other work, so it maybe awhile yet - and it will be re-released under a new name, with the original copyright given to Crist.
nexus851
11-12-2006, 12:56 AM
I am looking at updating this modification... I've just been examining the original fla source code, which seems a bit strange to me, and probably the cause of the 'white screen' on some browsers.
I'll update the players default skins and look into the vb code changes needed, hopefully change this from 'template edits' to a Product XML.
I do have other projects and other work, so it maybe awhile yet - and it will be re-released under a new name, with the original copyright given to Crist.
awesome, please do... i also been waiting and willing to donate for a better/stable release =D
keep us updated because there is high demand for this
luckske
11-12-2006, 01:17 AM
Installed, great mod ! thnx
MotMann
11-12-2006, 03:27 AM
Hmm thanks dear.. but i think player should play videos in the posting..
anyway.. All the best :)
H??
Player plays the Videos in a new Browserwindow, if i click on a link in a posting. That's normal.
And not IN the Posting. That's take to much place ;)
I Think that the bbcode player do that :(
I am looking at updating this modification... I've just been examining the original fla source code, which seems a bit strange to me, and probably the cause of the 'white screen' on some browsers.
I'll update the players default skins and look into the vb code changes needed, hopefully change this from 'template edits' to a Product XML.
I do have other projects and other work, so it maybe awhile yet - and it will be re-released under a new name, with the original copyright given to Crist.
So.. there is a Hope :)
Okay, wish you all the best for this job !!
Morrighan256
11-12-2006, 01:13 PM
Thanks, LQD! One day I'll stop forgetting the obvious. :rolleyes:
redlabour
11-12-2006, 03:57 PM
I am looking at updating this modification...
We will be forever thankfull to you ! :D
Kaleem
11-13-2006, 01:31 AM
this mod is working fine in vbulletin 3.6.3
http://www.friendskorner.com/forum/f52/funny-song-white-nerdy-7426/
redlabour
11-13-2006, 05:04 AM
this mod is working fine in vbulletin 3.6.3
http://www.friendskorner.com/forum/f52/funny-song-white-nerdy-7426/
It is not - read the Thread.
Kaleem
11-13-2006, 11:00 AM
It is not - read the Thread.
It is WORKING
i gave u the demo man it is working on my site i gave u the link :P
saman
11-13-2006, 06:19 PM
I am looking at updating this modification... I've just been examining the original fla source code, which seems a bit strange to me, and probably the cause of the 'white screen' on some browsers.
I'll update the players default skins and look into the vb code changes needed, hopefully change this from 'template edits' to a Product XML.
I do have other projects and other work, so it maybe awhile yet - and it will be re-released under a new name, with the original copyright given to Crist.
IT WOULD BE GREAT, thanks a lot. we are looking forward to see the release ASAP.
Thanks again!!!! :D
nexus851
11-13-2006, 11:20 PM
this mod is working fine in vbulletin 3.6.3
http://www.friendskorner.com/forum/f52/funny-song-white-nerdy-7426/
if you go back outside the forum and come back into the thread again, it sometimes shows a white blank screen instead...
So it's not working 100%... unless u hit refresh multiple times to get it to show properly...
Hence, we still need the update to this module for 3.6x
Kaleem
11-14-2006, 12:20 AM
if you go back outside the forum and come back into the thread again, it sometimes shows a white blank screen instead...
So it's not working 100%... unless u hit refresh multiple times to get it to show properly...
Hence, we still need the update to this module for 3.6x
I did't get any complaints i have been using this mod since 3.5.4 and never touched it except upgrading the forum.
Its working fine for me no matterhow many time i go to the thread. But sometimes Google VIdeo creats problem only not YouTube.
valdeztke
11-14-2006, 07:36 PM
Can someone hit me up on AIM at valdeztke I have a few questions about the install/hack.
Thanks
saman
11-15-2006, 09:56 PM
if you go back outside the forum and come back into the thread again, it sometimes shows a white blank screen instead...
So it's not working 100%... unless u hit refresh multiple times to get it to show properly...
Hence, we still need the update to this module for 3.6x
Same problem here. :ermm: Is there any fix?
I like this mod a lot but its really unfortunate that the flash shows blank. any advice would be appreciated :)
nexus851
11-16-2006, 07:07 AM
so anyone going to remake the player or remake the whole program to updfate it to version 3.6??? as of now, there are over 830+ demand for it.. hmmm.. even at $20.00 a pop, that would be alot of money to make for a month's work perhaps?
MissKalunji
11-16-2006, 09:07 AM
It is WORKING
i gave u the demo man it is working on my site i gave u the link :P
mine been working too :tired:
AdmiralSpock
11-16-2006, 05:06 PM
so anyone going to remake the player or remake the whole program to updfate it to version 3.6??? as of now, there are over 830+ demand for it.. hmmm.. even at $20.00 a pop, that would be alot of money to make for a month's work perhaps?
Did you read the previous page of the thread? It said that someone was looking into updating the hack.
Adult SEO
11-16-2006, 07:43 PM
Hi!
I am willing to upgrade this mod within 1 week (100 hours) for vB3.6.x adding SEO features to it.
https://vborg.vbsupport.ru/external/2006/11/4.jpg
https://vborg.vbsupport.ru/external/2006/11/4.jpg
All will be product based with minor template edits and optimum (usable on big forums).
However, I will demand a small icon linking to http://www.publiceren.net/ with information about the free mod so please let me know if there is enaufh interest under this condition: https://vborg.vbsupport.ru/showthread.php?t=131739&highlight=any+media
Best Regards,
Jan Jaap
Crazy Serb
11-17-2006, 04:11 AM
Hi!
I am willing to upgrade this mod within 1 week (100 hours) for vB3.6.x adding SEO features to it.
100 hours?
damn, I could rewrite the whole mod from scratch in that time...
how about you just update this mod to work with 3.6.3 WITHOUT all the fancy SEO features (from your other mod)?
mine been working too :tired:
well, then you're an exception too... because I've been getting a blank screen on my 3.6.3 installation.
Adult SEO
11-17-2006, 04:23 AM
100 hours?
damn, I could rewrite the whole mod from scratch in that time...
how about you just update this mod to work with 3.6.3 WITHOUT all the fancy SEO features (from your other mod)?
well, then you're an exception too... because I've been getting a blank screen on my 3.6.3 installation.
If you want to do something really well it might cost some time, ofcourse you can put something simular together in just 10 hours but it won't be optimum and working well on big forums.
SEO features will bring extra traffic to the forums.
saman
11-17-2006, 05:18 PM
Go for it ADULT SEO
redlabour
11-18-2006, 05:25 AM
I just spoke to Crist from Any Media, the number 1 media mod for vBulletin 3.5.x and we agreed that I will continue with Any Media and make it availabe for vBulletin 3.6.x.
The new version of Any Media will be called Any Media 3.6.x and will be official linked to from Any Media 3.5.x.
I don't know yet if it will remain the same and if all features of the old version will remain and what new features will be added but I will try to make it as perfect, stable, optimum and fast as possible.
The mod will be free but will require an icon/link on the video display wich can be removed by paying a small fee.
Best Regards,
Jan Jaap
AnyMedia 3.6.x is on the Way ! :)
AdmiralSpock
11-18-2006, 06:28 PM
The mod will be free but will require an icon/link on the video display wich can be removed by paying a small fee.
How "small" of a fee?
Thanks for taking this project up! :)
syrus.xl
11-18-2006, 06:38 PM
The mod will be free but will require an icon/link on the video display wich can be removed by paying a small fee.
I would encrypt your AS if you're thinking of adding it to a SWF file - otherwise it will be too easy to remove.
phovanxua
11-18-2006, 10:12 PM
AnyMedia 3.6.x is on the Way ! :)
That's would be nice .
ubblite
11-19-2006, 08:02 PM
This mod doesn't need a complete re-working, it's fine for the most part, it just needs a small update. And there was a fix posted by a user for Google long ago.
I'm using AnyMedia for 3.6.3 and it works great. The only problem I have is with Firefox - even with autostart turned off, if the video window is open it will load & play the video.
I'd like to see CMPS integration, such as a module to play videos with AnyMedia, which should be a small addition.
This hack is free - to add the suggested fixes and charge a fee wouldn't be right. However, if nobody else is willing to update AnyMedia without charging, I guess we'll live with it until another hack comes along.
redlabour
11-19-2006, 09:16 PM
This mod doesn't need a complete re-working, it's fine for the most part, it just needs a small update. And there was a fix posted by a user for Google long ago.
This hack is free - to add the suggested fixes and charge a fee wouldn't be right. However, if nobody else is willing to update AnyMedia without charging, I guess we'll live with it until another hack comes along.
He will add some new Features and SEO.
Nobody wants a fee. He never said this. He is just talking about a Copyright Removal.
hnjco
11-21-2006, 03:25 PM
AnyMedia 3.6.x is on the Way ! :)
Great sir
but when it will be released?
Any date?
Mecho
11-21-2006, 04:11 PM
Thanks . Installed
works fine on vb 3.6.3 ( I just tested 3 type of files and it works perfect )
Hypocrisy
11-21-2006, 09:32 PM
The default media tag "youtube embedded url" doesn't work, however I think I edited all template files I should.. any advice?
4Prometheus
11-21-2006, 10:51 PM
Where the hell is:
"Installed" ?
We chose 3.5.4 and this hack as the backbone of our site...
Pearls....I tell ya.
'Please..... this is great hack!
Crist,
If you ever log in....lol....
Thank you so very much for taking the time and trouble to share a working hack.
Happy Holidays!
Peace.
Adult SEO
11-22-2006, 12:48 AM
Great sir
but when it will be released?
Any date?
Hi!
It's being worked on verry hard, it will be ready in a few weeks.
It's being tested on http://www.publiceren.net/anymedia/
It will be called AnyMedia 4 SEO edition.
Best Regards,
Jan Jaap
coffee
11-22-2006, 01:55 AM
this mod is working fine in vbulletin 3.6.3
http://www.friendskorner.com/forum/f52/funny-song-white-nerdy-7426/
Same here :)
Adult SEO
11-22-2006, 02:00 AM
It wasn't for me, as I wasn't able to configure the settings (they needed a fix for the new settings storage system of vBulletin 3.6.x.
coffee
11-22-2006, 02:39 AM
As a test, I just changed it from 600x400px to 640x480px and it saved without errors.
Could you please tell me which setting to test from ACP?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.