I open {Add Videos} choose uploader {embed} enter {youtube video link} but the botton {continue} remains inactive.
I open {Add Videos} choose uploader {embed} enter {youtube video link} but the botton {continue} remains inactive. |
My bad, I figure it out. |
Yeah, kinda weird but you have to click somewhere else on the page to get it to become active. Nothing to see here |
Have been discussed. Ticket is not added, it is necessary that 10 people have written about this error. http://www.boonex.com/unity/forums/#topic/YOUTUBE-EMBED-NOT-WORKING.htm |
Thanks! I didn't know about that! I wish they would fix whatever is wrong with the error file not found on the other video thing but hey this is good :) |
The video error is due to new album coding they placed in the file. You need to take out the if statement that calls the album class and you will be able to upload videos. It was discussed plenty and for some unknown reason they absolutely refuse to make a ticket for the issue or comment on it. You can do a search for video upload error to find my post on it and the directions to fix it, and do a search for video sound as that is broke as well. You will need to change some code in the sound file to have your encoded videos make sound. |
The video error is due to new album coding they placed in the file. You need to take out the if statement that calls the album class and you will be able to upload videos. It was discussed plenty and for some unknown reason they absolutely refuse to make a ticket for the issue or comment on it. You can do a search for video upload error to find my post on it and the directions to fix it, and do a search for video sound as that is broke as well. You will need to change some code in the sound file to have your encoded videos make sound. How do I do this give me direction please! OMG I am excited |
To get sound on encoded videos you must do this : Instructions: 1) open file \flash\modules\video\inc\functions.inc.php of d7b7 2) locate this text: function getConverterTmpl($sInputFile, $sSize, $bSound = true, $bRecorded = false)
3) Change the string $sSound = $bRecorded ? " -ar 44100 " : " -acodec copy "; in $sSound = $bRecorded ? " -ar 44100 " : " -acodec libmp3lame -ar 44100 "; 4) save and upload!!! To get the videos to upload and be able to play them without "Error: File not found" this fixed my issues and others as well: open flash/video/inc/classes/BxDolCronVideo.php 1. comment out the new BxDolAlbum.php require like this: replace require_once(BX_DIRECTORY_PATH_CLASSES . 'BxDolAlbums.php'); with: // require_once(BX_DIRECTORY_PATH_CLASSES . 'BxDolAlbums.php'); 2. Comment out the new IF statement included in this file so it will not call the Albums.php as that contains a code error causing this problem. Find this section at line 83 if (getSettingValue($sModule, "autoApprove") == true) { replace it with /* |
Now I get this error with a blank screen! Has there been a ticket on this?
|
Hell no there hasn't been any tickets regarding the video issues! |
Ticket added: http://www.boonex.com/trac/dolphin/ticket/1353 Life is a fatal disease, sexually transmissible - Virginity is carcinogenic! Ask here for vaccine. |
I have emailed Boonex about this issue and asking them to help me solve it without any help...BS |
Michael can you make a ticket about the video issue in general. There has been nothing on trac about the many issues and work arounds we have had to use just to encode the damn things. I've tried to email boonex but recieved the same response as our forum posts, pure unadulatrated silence. Videos are messed up with the code they added and it needs to be fixed and is a very critical issue. |
@ mauricecano A link to this Forum topic was added to the ticket I re-opened ;-) Life is a fatal disease, sexually transmissible - Virginity is carcinogenic! Ask here for vaccine. |
I could post many emails concerning both the install and also the videos in correspondence with Boonex. However I thought they would help. The one I did toward the beginning of last week was links to some of the forum Threads that have been going on with the videos, installs and whatnot! I didn't hear from them. Than either yesterday or the day before, I asked them if the could PLEASE help me to fix this. All I need is the code!! and directions. Still nothing. I wish I KNEW PHP! but I am a newbie to that but I do pretty good at html OK I am new at that too...well not as new. |
mankya sent you an email |
mankya sent you an email Thanks I answered it just been busy working ;) |
Boonex Got a hold of me in email, they took my FTP and than replied today this Dear Customer. Fine I looked it is set at 755 I changed it too 777 still error no file found.... I than proceed to take a file I had Dolphin 6.1.4 I thank did a install
I want the Dolphin 7 cause you can at least do something with your profile page. Everything else in the Dolphin 7 Beta 7 seems to be working fine except that error. And the host is one that Dolphin Boonex has here advertising them as supporters for this Dolphin |
Now I get this error with a blank screen! Has there been a ticket on this?
Have you solved this problem? If not please open the file with an editor that show rows numbers, copy and paste here the rows with numbers from 165 to 170. Thank |
Now I get this error with a blank screen! Has there been a ticket on this?
Have you solved this problem? If not please open the file with an editor that show rows numbers, copy and paste here the rows with numbers from 165 to 170. Thank If I change that file I will get that error. Here is what is from 165-170 global $sFfmpegPath; If I change the string I get nothing but error $sSound = $bRecorded ? " -ar 44100 " : " -acodec copy "; |