Dolphin 7 migration issues

I am sorry to be posting this as it has been posted several times before, but Im getting nowhere with this.

I haveDolphin 7 and I want migrate from 6.1.6 to 7.

I installed the migration module, told it to transfer all profiles and it says queued.

I then installed D7 again and user the cron code provided in the installation as my cron command.

MAILTO=myemail cd /home/sites/mysite/public_html/d7/periodic; /usr/bin/php5 cron.php

It didn't work. I opened a ticket with my hosting provider and they said the command isn't valid and I should use:

/usr/bin/php -f /home/sites/mysite/public_html/d7/periodic/cron.php

When I tested it I got an undefined error so I then tried:

/usr/bin/php5 /home/sites/mysite/public_html/d7/periodic/cron.php

when I tested that it said it the command is valid.

The profiles still aren't transferring.

Where am I going wrong in my cron commands (if I am)?

Cheers

Peter

Quote · 30 Dec 2009

You were close with this one:

/usr/bin/php -f /home/sites/mysite/public_html/d7/periodic/cron.php

but it should be a -q not a -f

like this:

/usr/bin/php -q /home/sites/mysite/public_html/d7/periodic/cron.php

or

/usr/bin/php5 -q /home/sites/mysite/public_html/d7/periodic/cron.php (depending on your actual path to php)

Chris

Nothing to see here
Quote · 30 Dec 2009

Thanks for the reply

Still no luck

I tried

/usr/bin/php5 -q /home/sites/mysite/public_html/d7/periodic/cron.php

I get the following email when the cron runs:

Error in argument 1, char 3: option not found /
Usage: php5 [-q] [-h] [-s] [-v] [-i] [-f ]
php5 [args...]
-a Run interactively
-C Do not chdir to the script's directory
-c | Look for php.ini file in this directory
-n No php.ini file will be used
-d foo[=bar] Define INI entry foo with value 'bar'
-e Generate extended information for debugger/profiler
-f Parse . Implies `-q'
-h This help
-i PHP information
-l Syntax check only (lint)
-m Show compiled in modules
-q Quiet-mode. Suppress HTTP Header output.
-s Display colour syntax highlighted source.
-v Version number
-w Display source with stripped comments and whitespace.
-z Load Zend extension .

Thanks

Peter

Quote · 30 Dec 2009

Try adding /local/ into the equation like so:

/usr/local/bin/php -q /home/sites/mysite/public_html/d7/periodic/cron.php

Or

/usr/local/bin/php5 -q /home/sites/mysite/public_html/d7/periodic/cron.php

Chris

Nothing to see here
Quote · 30 Dec 2009

Im sure my host would have known that but Il give it a go.

Quote · 30 Dec 2009

there is no such directory according to my email:

nice: /usr/local/bin/php5: No such file or directory

anything else anyone?

is there a manual way of transferring users such as   exporting my 6.1.6 database and importing into the D7 database?

Thanks

Peter

Quote · 30 Dec 2009

Im assuming you are trying it as just /php and not just /php5 correct? Who is your webhosting with?

Is there a manual way? Yes.

Read this topic:

http://www.boonex.com/unity/forums/topic/Cron-Jobs-Migrations-Videos.htm

Chris

Nothing to see here
Quote · 30 Dec 2009

Here is what my host says when you create a new crontab:

"If the scheduled program includes code from a scripting language, the path for the interpreter must be specified before the script. For example, /usr/bin/perl (Perl), /usr/bin/php (PHP 4) or /usr/bin/php5 (PHP 5)" so i only think to use php5,

I think i tried just php at one point and received an email saying "PHP version too old, please update to PHP 5.2.0 at least"

I use heartinternet.co.uk, they allow scripting, cron jobs (for my account type) and the commands I'm tring to use. Crons are allowed as I use them with D6.

I will try using the bin/php instead again and see what happens.

Quote · 30 Dec 2009

"PHP version too old, please update to PHP 5.2.0 at least"

Dolphin 7 requires php 5.2.0 or higher to work properly. What version do you have?

Chris

Nothing to see here
Quote · 30 Dec 2009

I have both, my host providers offer both on the one server,  the reason i got that email was because i put in php instead of php5 in the cron command.

I also got this email when I tried using /php instead of /php5

Error in argument 1, char 3: option not found /
Usage: php [-q] [-h] [-s] [-v] [-i] [-f ]
php [args...]
-a Run interactively
-C Do not chdir to the script's directory
-c | Look for php.ini file in this directory
-n No php.ini file will be used
-d foo[=bar] Define INI entry foo with value 'bar'
-e Generate extended information for debugger/profiler
-f Parse . Implies `-q'
-h This help
-i PHP information
-l Syntax check only (lint)
-m Show compiled in modules
-q Quiet-mode. Suppress HTTP Header output.
-s Display colour syntax highlighted source.
-v Version number
-w Display source with stripped comments and whitespace.
-z Load Zend extension .

Quote · 30 Dec 2009

Im getting there, email now reports:

safe_mode is On, disable it
PHP version too old, please update to PHP 5.2.0 at least

I shouldnt use php4 and 5 on the same server, it just mixes things up

Il make a post if it work

Quote · 30 Dec 2009

I  did some research regarding that webhost and cron jobs, seems people are using the following type of syntax

#!/usr/bin/php5 -q /home/sites/mysite/public_html/d7/periodic/cron.php

With the "shebang" in front. Might work for you too.

Chris

Nothing to see here
Quote · 30 Dec 2009

hmm   this time an email saying "0"? is this normal?

Quote · 31 Dec 2009

"0" what?

Nothing to see here
Quote · 31 Dec 2009

yeah, an email from cron reports saying 0 and nothing else? still didnt transfer any profiles. Im stuck here.

Maybe its binary for "off" or "no"

Quote · 31 Dec 2009

what about the code that came with the installatino;

MAILTO=myemail* * * * * cd /home/sites/mysite/public_html/d7/periodic; /usr/bin/php -q cron.php  what do i do with this?

Quote · 31 Dec 2009

what about the code that came with the installatino;

MAILTO=myemail* * * * * cd /home/sites/mysite/public_html/d7/periodic; /usr/bin/php -q cron.php  what do i do with this?

That was to setup your cron job. Usually it doesnt work for everyone in that specific format. According to what you posted, most people us it like this:

/usr/bin/php -q /home/sites/mysite/public_html/d7/periodic/cron.php

Nothing to see here
Quote · 31 Dec 2009

Got them.

Renamed periodic/.htaccess to .htaccess.bk

opened cron.php then instantly clicked move data!!

You can't even leave it 5 minutes then do it  it had to be instantly for me for some reason?:S

Thanks for your help Zarcon!

Quote · 31 Dec 2009

I  did some research regarding that webhost and cron jobs, seems people are using the following type of syntax

#!/usr/bin/php5 -q /home/sites/mysite/public_html/d7/periodic/cron.php

With the "shebang" in front. Might work for you too.

Chris

Hi Zarcon, i try to put the #! before /usr/bin/php, and now i don't get any mail from the cronjob...

This is normal? I try to migrate the profiles, but nothing happen...

I try also to upload one video, after from the admin site i activeded it, from the site i can see the thoumbal, but when i try to see it i get the error : " file not found "...

And when i try to make a new user, after i fill up all the field and i click the "join now", nothing happen...

What test i can do for to be sure the cronjob work correctly ?

Thank you so much...

...
Quote · 31 Dec 2009

I had never problems with crons, but now Igot messages:  can't open cron.php 

I have tryed every possible combination of settings.  At this time I give up .

Kids first
Quote · 31 Dec 2009

Are you trying to access cron like site.com/periodic/cron.php? If so  rename /periodic/.htaccess to .htaccessbk

Make sure you rename it back once you're finished with the cron file though.

Do you think files not uploading could be related to cron?

Quote · 31 Dec 2009

I  did some research regarding that webhost and cron jobs, seems people are using the following type of syntax

#!/usr/bin/php5 -q /home/sites/mysite/public_html/d7/periodic/cron.php

With the "shebang" in front. Might work for you too.

Chris

Hi Zarcon, i try to put the #! before /usr/bin/php, and now i don't get any mail from the cronjob...

This is normal? I try to migrate the profiles, but nothing happen...

I try also to upload one video, after from the admin site i activeded it, from the site i can see the thoumbal, but when i try to see it i get the error : " file not found "...

And when i try to make a new user, after i fill up all the field and i click the "join now", nothing happen...

What test i can do for to be sure the cronjob work correctly ?

Thank you so much...

Adding # (and not getting emails) may result in you commenting out the cron job completely. Are you using Linux or Windows? What do you mean nothing happens when you try to migrate? I was having the same issue when I clicked "move data" and it seemed like nothing was happening. After hours of waiting, the status would move from "queued" to "transferred". I do not know if it is supposed to take this long or not. This is a funny process with the migration. I dont completely understand it myself.

Quote · 6 Jan 2010

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

 

Chat with webcam, video comments works fine, but not videos and audios

Quote · 6 Jan 2010

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

Chat with webcam, video comments works fine, but not videos and audios

What does your cron job look like? Are you using ssh to create jobs? Do you have the right email in the mailto section of the cron?

Quote · 6 Jan 2010

 

 

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

 

Chat with webcam, video comments works fine, but not videos and audios

What does your cron job look like? Are you using ssh to create jobs? Do you have the right email in the mailto section of the cron?

 Thanks for replay:

My cron is:

cd /home/musicosp/public_html/periodic; /usr/bin/php -q cron.php

And yes, I got my email in cron job section

 

I had tryed every thing but nothing, don´t work.

Quote · 6 Jan 2010

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

Chat with webcam, video comments works fine, but not videos and audios

What does your cron job look like? Are you using ssh to create jobs? Do you have the right email in the mailto section of the cron?

Thanks for replay:

My cron is:

cd /home/musicosp/public_html/periodic; /usr/bin/php -q cron.php

And yes, I got my email in cron job section

I had tryed every thing but nothing, don´t work.

The email address is valid and working? The syntax looks like:

MAILTO=admin@domain.tld

Try this for your cron job:

* * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

You should get an email. Let me/us know.

Quote · 6 Jan 2010

uninstall migration module and reinstall to start over

- Enter the OLD path in the migration configuration and start the transfer again
- Go into your /periodic folder and rename the .htaccess file to something like .htaccess.old
- In Admin Panel, Clear all cache (from admin home screen)
- Navigate to your D7 cron file (ex. www.yoursite.com/user/periodic/cron.php (it WILL be a blank screen and should take a few minutes to load completely). If it loads real quick, delete the contents of the /cache and /public_cache folder EXCEPT for the .htaccess file in the /cache folder and go back to www.yoursite.com/user/periodic/cron.php again

This forces your cron job to execute and SHOULD move your profiles.

courtesy of Zarcon

Quote · 6 Jan 2010

 

 

 

 

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

 

Chat with webcam, video comments works fine, but not videos and audios

What does your cron job look like? Are you using ssh to create jobs? Do you have the right email in the mailto section of the cron?

Thanks for replay:

My cron is:

cd /home/musicosp/public_html/periodic; /usr/bin/php -q cron.php

And yes, I got my email in cron job section

 

I had tryed every thing but nothing, don´t work.

The email address is valid and working? The syntax looks like:

 

MAILTO=admin@domain.tld

 

Try this for your cron job:

* * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

 

You should get an email. Let me/us know.

 

I tryed this, but I don´t get no email, but yes, I receive emails, time ago I tryed this:

/usr/local/bin/php5 -q /home/sites/mysite/public_html/periodic/cron.php

and get error mesages from cron to my email.

 

One thing I don´t understand, I got videos incrusted from youtube that work fine and other regular.

 

Youtube one, 5:07 minutes in DB time is 370000, and old ones time is much more less

Quote · 6 Jan 2010

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

Chat with webcam, video comments works fine, but not videos and audios

What does your cron job look like? Are you using ssh to create jobs? Do you have the right email in the mailto section of the cron?

Thanks for replay:

My cron is:

cd /home/musicosp/public_html/periodic; /usr/bin/php -q cron.php

And yes, I got my email in cron job section

I had tryed every thing but nothing, don´t work.

The email address is valid and working? The syntax looks like:

MAILTO=admin@domain.tld

Try this for your cron job:

* * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

You should get an email. Let me/us know.

I tryed this, but I don´t get no email, but yes, I receive emails, time ago I tryed this:

/usr/local/bin/php5 -q /home/sites/mysite/public_html/periodic/cron.php

and get error mesages from cron to my email.

One thing I don´t understand, I got videos incrusted from youtube that work fine and other regular.

Youtube one, 5:07 minutes in DB time is 370000, and old ones time is much more less

If  you were getting emails then the cron job is working. If you were getting error messages from the email then that is another story. I am getting some errors too at the end of the email sent via the cron job. This is an issue I am still looking into.

Do you other (non youtube) video's work? Are they loading? I am having problems with uploading vids as well. I was having issues with photo's uploading and solved that problem but I cant remember what I did.

Quote · 6 Jan 2010

 

 

 

 

 

 

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

 

Chat with webcam, video comments works fine, but not videos and audios

What does your cron job look like? Are you using ssh to create jobs? Do you have the right email in the mailto section of the cron?

Thanks for replay:

My cron is:

cd /home/musicosp/public_html/periodic; /usr/bin/php -q cron.php

And yes, I got my email in cron job section

 

I had tryed every thing but nothing, don´t work.

The email address is valid and working? The syntax looks like:

 

MAILTO=admin@domain.tld

 

Try this for your cron job:

* * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

 

You should get an email. Let me/us know.

 

I tryed this, but I don´t get no email, but yes, I receive emails, time ago I tryed this:

/usr/local/bin/php5 -q /home/sites/mysite/public_html/periodic/cron.php

and get error mesages from cron to my email.

 

One thing I don´t understand, I got videos incrusted from youtube that work fine and other regular.

 

Youtube one, 5:07 minutes in DB time is 370000, and old ones time is much more less

 

If  you were getting emails then the cron job is working. If you were getting error messages from the email then that is another story. I am getting some errors too at the end of the email sent via the cron job. This is an issue I am still looking into.

 

Do you other (non youtube) video's work? Are they loading? I am having problems with uploading vids as well. I was having issues with photo's uploading and solved that problem but I cant remember what I did.

 

Finally I get an email from cronjob. Youtube videos are the videos that work, other ones not work.

This is part of the cronjob email:

FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
 configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
 libavutil     50. 3. 0 / 50. 3. 0
 libavcodec    52.30. 1 / 52.30. 1
 libavformat   52.34. 0 / 52.34. 0
 libavdevice   52. 2. 0 / 52. 2. 0
 libavfilter    0. 5. 0 /  0. 5. 0
 libswscale     0. 7. 1 /  0. 7. 1
 built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0x9631380]skipping flv packet: type 18, size 244, flags 0

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)
Input #0, flv, from '/home/musicosp/public_html/6BAK/ray/modules/movie/files/1.flv':
 Duration: 00:02:11.88, start: 0.000000, bitrate: 64 kb/s
   Stream #0.0: Video: flv, yuv420p, 350x250, 25 tbr, 1k tbn, 1k tbc
   Stream #0.1: Audio: mp3, 44100 Hz, stereo, s16, 64 kb/s
Output #0, mp4, to '/home/musicosp/public_html/flash/modules/video/files/1.mp4':
   Stream #0.0: Video: mpeg4, yuv420p, 176x144, q=2-31, 512 kb/s, 25 tbn, 25 tbc
   Stream #0.1: Audio: libmp3lame, 44100 Hz, mono, s16, 64 kb/s
Stream mapping:
 Stream #0.0 -> #0.0
 Stream #0.1 -> #0.1
Press [q] to stop encoding
frame=  278 fps=  0 q=0.0 size=     417kB time=11.00 bitrate= 310.5kbits/s
frame=  558 fps=556 q=0.0 size=    1053kB time=22.15 bitrate= 389.5kbits/s
frame=  843 fps=560 q=0.0 size=    1693kB time=33.59 bitrate= 412.9kbits/s
frame= 1083 fps=471 q=0.0 size=    2042kB time=43.18 bitrate= 387.4kbits/s
frame= 1322 fps=464 q=0.0 size=    2433kB time=52.77 bitrate= 377.7kbits/s
frame= 1609 fps=480 q=0.0 size=    2856kB time=64.24 bitrate= 364.2kbits/s
frame= 1903 fps=494 q=0.0 size=    3282kB time=75.99 bitrate= 353.8kbits/s
frame= 2175 fps=500 q=0.0 size=    4068kB time=86.86 bitrate= 383.7kbits/s
frame= 2460 fps=507 q=0.0 size=    4513kB time=98.25 bitrate= 376.3kbits/s
frame= 2737 fps=511 q=0.0 size=    5064kB time=109.35 bitrate= 379.4kbits/s
frame= 3046 fps=521 q=0.0 size=    5454kB time=121.68 bitrate= 367.2kbits/s
frame= 3298 fps=527 q=0.0 Lsize=    5958kB time=131.08 bitrate= 372.4kbits/s
video:4867kB audio:1024kB global headers:0kB muxing overhead 1.140747%
FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
 configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
 libavutil     50. 3. 0 / 50. 3. 0
 libavcodec    52.30. 1 / 52.30. 1
 libavformat   52.34. 0 / 52.34. 0
 libavdevice   52. 2. 0 / 52. 2. 0
 libavfilter    0. 5. 0 /  0. 5. 0
 libswscale     0. 7. 1 /  0. 7. 1
 built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0xa591380]skipping flv packet: type 18, size 244, flags 0

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)
Input #0, flv, from '/home/musicosp/public_html/6BAK/ray/modules/movie/files/3.flv':
 Duration: 00:03:27.49, start: 0.000000, bitrate: 64 kb/s
   Stream #0.0: Video: flv, yuv420p, 350x250, 25 tbr, 1k tbn, 1k tbc
   Stream #0.1: Audio: mp3, 44100 Hz, mono, s16, 64 kb/s
Output #0, mp4, to '/home/musicosp/public_html/flash/modules/video/files/3.mp4':
   Stream #0.0: Video: mpeg4, yuv420p, 176x144, q=2-31, 512 kb/s, 25 tbn, 25 tbc
   Stream #0.1: Audio: libmp3lame, 44100 Hz, mono, s16, 64 kb/s
Stream mapping:
 Stream #0.0 -> #0.0
 Stream #0.1 -> #0.1
Press [q] to stop encoding
frame=  334 fps=  0 q=0.0 size=     645kB time=13.27 bitrate= 398.3kbits/s
frame=  674 fps=673 q=0.0 size=    1208kB time=26.88 bitrate= 368.1kbits/s
frame=  897 fps=221 q=0.0 size=    1585kB time=35.76 bitrate= 363.1kbits/s
frame= 1240 fps=272 q=0.0 size=    2171kB time=49.48 bitrate= 359.4kbits/s
frame= 1579 fps=312 q=0.0 size=    2783kB time=63.06 bitrate= 361.5kbits/s
frame= 1920 fps=346 q=0.0 size=    3361kB time=76.67 bitrate= 359.1kbits/s
frame= 2264 fps=374 q=0.0 size=    3930kB time=90.46 bitrate= 355.9kbits/s
frame= 2603 fps=397 q=0.0 size=    4492kB time=104.02 bitrate= 353.8kbits/s
frame= 2691 fps=345 q=0.0 size=    4643kB time=107.55 bitrate= 353.6kbits/s
frame= 3016 fps=363 q=0.0 size=    5188kB time=120.50 bitrate= 352.7kbits/s
frame= 3350 fps=380 q=0.0 size=    5807kB time=133.90 bitrate= 355.2kbits/s
frame= 3686 fps=396 q=0.0 size=    6357kB time=147.33 bitrate= 353.5kbits/s
frame= 4009 fps=409 q=0.0 size=    6989kB time=160.24 bitrate= 357.3kbits/s
frame= 4329 fps=420 q=0.0 size=    7669kB time=173.06 bitrate= 363.0kbits/s
frame= 4655 fps=431 q=0.0 size=    8306kB time=186.07 bitrate= 365.7kbits/s
frame= 4980 fps=440 q=0.0 size=    8965kB time=199.08 bitrate= 368.9kbits/s
frame= 5184 fps=445 q=0.0 Lsize=    9466kB time=207.36 bitrate= 374.0kbits/s
video:7739kB audio:1622kB global headers:0kB muxing overhead 1.126272%
FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
 configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
 libavutil     50. 3. 0 / 50. 3. 0
 libavcodec    52.30. 1 / 52.30. 1
 libavformat   52.34. 0 / 52.34. 0
 libavdevice   52. 2. 0 / 52. 2. 0
 libavfilter    0. 5. 0 /  0. 5. 0
 libswscale     0. 7. 1 /  0. 7. 1
 built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0xa45a380]skipping flv packet: type 18, size 244, flags 0

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)
Input #0, flv, from '/home/musicosp/public_html/6BAK/ray/modules/movie/files/7.flv':
 Duration: 00:01:42.44, start: 0.000000, bitrate: 64 kb/s
   Stream #0.0: Video: flv, yuv420p, 350x250, 25 tbr, 1k tbn, 1k tbc
   Stream #0.1: Audio: mp3, 44100 Hz, stereo, s16, 64 kb/s
Output #0, mp4, to '/home/musicosp/public_html/flash/modules/video/files/7.mp4':
   Stream #0.0: Video: mpeg4, yuv420p, 176x144, q=2-31, 512 kb/s, 25 tbn, 25 tbc
   Stream #0.1: Audio: libmp3lame, 44100 Hz, mono, s16, 64 kb/s
Stream mapping:
 Stream #0.0 -> #0.0
 Stream #0.1 -> #0.1
Press [q] to stop encoding
frame=  293 fps=  0 q=0.0 size=     488kB time=11.57 bitrate= 345.6kbits/s
frame=  605 fps=604 q=0.0 size=     896kB time=24.03 bitrate= 305.4kbits/s
frame=  894 fps=595 q=0.0 size=    1404kB time=35.63 bitrate= 322.9kbits/s
frame= 1181 fps=590 q=0.0 size=    1858kB time=47.10 bitrate= 323.2kbits/s
frame= 1470 fps=587 q=0.0 size=    2289kB time=58.67 bitrate= 319.6kbits/s
frame= 1770 fps=589 q=0.0 size=    2646kB time=70.66 bitrate= 306.8kbits/s
frame= 1859 fps=352 q=0.0 size=    2737kB time=74.24 bitrate= 302.0kbits/s
frame= 2139 fps=370 q=0.0 size=    3319kB time=85.39 bitrate= 318.4kbits/s
frame= 2415 fps=384 q=0.0 size=    3916kB time=96.47 bitrate= 332.5kbits/s
frame= 2562 fps=392 q=0.0 Lsize=    4185kB time=102.09 bitrate= 335.9kbits/s
video:3335kB audio:798kB global headers:0kB muxing overhead 1.271247%
FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
 configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
 libavutil     50. 3. 0 / 50. 3. 0
 libavcodec    52.30. 1 / 52.30. 1
 libavformat   52.34. 0 / 52.34. 0
 libavdevice   52. 2. 0 / 52. 2. 0
 libavfilter    0. 5. 0 /  0. 5. 0
 libswscale     0. 7. 1 /  0. 7. 1
 built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0x9e4a380]skipping flv packet: type 18, size 244, flags 0

 

Here I write text of a friend that is trying to help me with this problem but I dont understand very well what I need to do, if you can help me with this will be very apreciate:

The files got imported as you can see ...just the database entries got messed up;
/public_html/flash/modules/video/files
notice how your working videos have times in them and the older ones do not? try to match them up with working ones
table videofiles in phpmy admin...i do not know that exact name off hand...thats what needs to be done,

Alternatley, I would download all mpg from the files folder set password to zzzzz by editing profiles table...keeping the original and login as the users uplaod the files again. there are about 5 users that need to be done.

Quote · 8 Jan 2010

I clean cache, change .htacces but I don´t receive no email to my acount. I´am desesperate, I don´t know what to do and my sounds an videos dont work.

Chat with webcam, video comments works fine, but not videos and audios

What does your cron job look like? Are you using ssh to create jobs? Do you have the right email in the mailto section of the cron?

Thanks for replay:

My cron is:

cd /home/musicosp/public_html/periodic; /usr/bin/php -q cron.php

And yes, I got my email in cron job section

I had tryed every thing but nothing, don´t work.

The email address is valid and working? The syntax looks like:

MAILTO=admin@domain.tld

Try this for your cron job:

* * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

You should get an email. Let me/us know.

I tryed this, but I don´t get no email, but yes, I receive emails, time ago I tryed this:

/usr/local/bin/php5 -q /home/sites/mysite/public_html/periodic/cron.php

and get error mesages from cron to my email.

One thing I don´t understand, I got videos incrusted from youtube that work fine and other regular.

Youtube one, 5:07 minutes in DB time is 370000, and old ones time is much more less

If  you were getting emails then the cron job is working. If you were getting error messages from the email then that is another story. I am getting some errors too at the end of the email sent via the cron job. This is an issue I am still looking into.

Do you other (non youtube) video's work? Are they loading? I am having problems with uploading vids as well. I was having issues with photo's uploading and solved that problem but I cant remember what I did.

Finally I get an email from cronjob. Youtube videos are the videos that work, other ones not work.

This is part of the cronjob email:

FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
libavutil     50. 3. 0 / 50. 3. 0
libavcodec    52.30. 1 / 52.30. 1
libavformat   52.34. 0 / 52.34. 0
libavdevice   52. 2. 0 / 52. 2. 0
libavfilter    0. 5. 0 /  0. 5. 0
libswscale     0. 7. 1 /  0. 7. 1
built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0x9631380]skipping flv packet: type 18, size 244, flags 0

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)
Input #0, flv, from '/home/musicosp/public_html/6BAK/ray/modules/movie/files/1.flv':
Duration: 00:02:11.88, start: 0.000000, bitrate: 64 kb/s
Stream #0.0: Video: flv, yuv420p, 350x250, 25 tbr, 1k tbn, 1k tbc
Stream #0.1: Audio: mp3, 44100 Hz, stereo, s16, 64 kb/s
Output #0, mp4, to '/home/musicosp/public_html/flash/modules/video/files/1.mp4':
Stream #0.0: Video: mpeg4, yuv420p, 176x144, q=2-31, 512 kb/s, 25 tbn, 25 tbc
Stream #0.1: Audio: libmp3lame, 44100 Hz, mono, s16, 64 kb/s
Stream mapping:
Stream #0.0 -> #0.0
Stream #0.1 -> #0.1
Press [q] to stop encoding
frame=  278 fps=  0 q=0.0 size=     417kB time=11.00 bitrate= 310.5kbits/s
frame=  558 fps=556 q=0.0 size=    1053kB time=22.15 bitrate= 389.5kbits/s
frame=  843 fps=560 q=0.0 size=    1693kB time=33.59 bitrate= 412.9kbits/s
frame= 1083 fps=471 q=0.0 size=    2042kB time=43.18 bitrate= 387.4kbits/s
frame= 1322 fps=464 q=0.0 size=    2433kB time=52.77 bitrate= 377.7kbits/s
frame= 1609 fps=480 q=0.0 size=    2856kB time=64.24 bitrate= 364.2kbits/s
frame= 1903 fps=494 q=0.0 size=    3282kB time=75.99 bitrate= 353.8kbits/s
frame= 2175 fps=500 q=0.0 size=    4068kB time=86.86 bitrate= 383.7kbits/s
frame= 2460 fps=507 q=0.0 size=    4513kB time=98.25 bitrate= 376.3kbits/s
frame= 2737 fps=511 q=0.0 size=    5064kB time=109.35 bitrate= 379.4kbits/s
frame= 3046 fps=521 q=0.0 size=    5454kB time=121.68 bitrate= 367.2kbits/s
frame= 3298 fps=527 q=0.0 Lsize=    5958kB time=131.08 bitrate= 372.4kbits/s
video:4867kB audio:1024kB global headers:0kB muxing overhead 1.140747%
FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
libavutil     50. 3. 0 / 50. 3. 0
libavcodec    52.30. 1 / 52.30. 1
libavformat   52.34. 0 / 52.34. 0
libavdevice   52. 2. 0 / 52. 2. 0
libavfilter    0. 5. 0 /  0. 5. 0
libswscale     0. 7. 1 /  0. 7. 1
built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0xa591380]skipping flv packet: type 18, size 244, flags 0

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)
Input #0, flv, from '/home/musicosp/public_html/6BAK/ray/modules/movie/files/3.flv':
Duration: 00:03:27.49, start: 0.000000, bitrate: 64 kb/s
Stream #0.0: Video: flv, yuv420p, 350x250, 25 tbr, 1k tbn, 1k tbc
Stream #0.1: Audio: mp3, 44100 Hz, mono, s16, 64 kb/s
Output #0, mp4, to '/home/musicosp/public_html/flash/modules/video/files/3.mp4':
Stream #0.0: Video: mpeg4, yuv420p, 176x144, q=2-31, 512 kb/s, 25 tbn, 25 tbc
Stream #0.1: Audio: libmp3lame, 44100 Hz, mono, s16, 64 kb/s
Stream mapping:
Stream #0.0 -> #0.0
Stream #0.1 -> #0.1
Press [q] to stop encoding
frame=  334 fps=  0 q=0.0 size=     645kB time=13.27 bitrate= 398.3kbits/s
frame=  674 fps=673 q=0.0 size=    1208kB time=26.88 bitrate= 368.1kbits/s
frame=  897 fps=221 q=0.0 size=    1585kB time=35.76 bitrate= 363.1kbits/s
frame= 1240 fps=272 q=0.0 size=    2171kB time=49.48 bitrate= 359.4kbits/s
frame= 1579 fps=312 q=0.0 size=    2783kB time=63.06 bitrate= 361.5kbits/s
frame= 1920 fps=346 q=0.0 size=    3361kB time=76.67 bitrate= 359.1kbits/s
frame= 2264 fps=374 q=0.0 size=    3930kB time=90.46 bitrate= 355.9kbits/s
frame= 2603 fps=397 q=0.0 size=    4492kB time=104.02 bitrate= 353.8kbits/s
frame= 2691 fps=345 q=0.0 size=    4643kB time=107.55 bitrate= 353.6kbits/s
frame= 3016 fps=363 q=0.0 size=    5188kB time=120.50 bitrate= 352.7kbits/s
frame= 3350 fps=380 q=0.0 size=    5807kB time=133.90 bitrate= 355.2kbits/s
frame= 3686 fps=396 q=0.0 size=    6357kB time=147.33 bitrate= 353.5kbits/s
frame= 4009 fps=409 q=0.0 size=    6989kB time=160.24 bitrate= 357.3kbits/s
frame= 4329 fps=420 q=0.0 size=    7669kB time=173.06 bitrate= 363.0kbits/s
frame= 4655 fps=431 q=0.0 size=    8306kB time=186.07 bitrate= 365.7kbits/s
frame= 4980 fps=440 q=0.0 size=    8965kB time=199.08 bitrate= 368.9kbits/s
frame= 5184 fps=445 q=0.0 Lsize=    9466kB time=207.36 bitrate= 374.0kbits/s
video:7739kB audio:1622kB global headers:0kB muxing overhead 1.126272%
FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
libavutil     50. 3. 0 / 50. 3. 0
libavcodec    52.30. 1 / 52.30. 1
libavformat   52.34. 0 / 52.34. 0
libavdevice   52. 2. 0 / 52. 2. 0
libavfilter    0. 5. 0 /  0. 5. 0
libswscale     0. 7. 1 /  0. 7. 1
built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0xa45a380]skipping flv packet: type 18, size 244, flags 0

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)
Input #0, flv, from '/home/musicosp/public_html/6BAK/ray/modules/movie/files/7.flv':
Duration: 00:01:42.44, start: 0.000000, bitrate: 64 kb/s
Stream #0.0: Video: flv, yuv420p, 350x250, 25 tbr, 1k tbn, 1k tbc
Stream #0.1: Audio: mp3, 44100 Hz, stereo, s16, 64 kb/s
Output #0, mp4, to '/home/musicosp/public_html/flash/modules/video/files/7.mp4':
Stream #0.0: Video: mpeg4, yuv420p, 176x144, q=2-31, 512 kb/s, 25 tbn, 25 tbc
Stream #0.1: Audio: libmp3lame, 44100 Hz, mono, s16, 64 kb/s
Stream mapping:
Stream #0.0 -> #0.0
Stream #0.1 -> #0.1
Press [q] to stop encoding
frame=  293 fps=  0 q=0.0 size=     488kB time=11.57 bitrate= 345.6kbits/s
frame=  605 fps=604 q=0.0 size=     896kB time=24.03 bitrate= 305.4kbits/s
frame=  894 fps=595 q=0.0 size=    1404kB time=35.63 bitrate= 322.9kbits/s
frame= 1181 fps=590 q=0.0 size=    1858kB time=47.10 bitrate= 323.2kbits/s
frame= 1470 fps=587 q=0.0 size=    2289kB time=58.67 bitrate= 319.6kbits/s
frame= 1770 fps=589 q=0.0 size=    2646kB time=70.66 bitrate= 306.8kbits/s
frame= 1859 fps=352 q=0.0 size=    2737kB time=74.24 bitrate= 302.0kbits/s
frame= 2139 fps=370 q=0.0 size=    3319kB time=85.39 bitrate= 318.4kbits/s
frame= 2415 fps=384 q=0.0 size=    3916kB time=96.47 bitrate= 332.5kbits/s
frame= 2562 fps=392 q=0.0 Lsize=    4185kB time=102.09 bitrate= 335.9kbits/s
video:3335kB audio:798kB global headers:0kB muxing overhead 1.271247%
FFmpeg version SVN-r19066, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --enable-libmp3lame --enable-libxvid --enable-libx264 --enable-gpl --enable-libvorbis --enable-libogg --enable-libtheora --enable-liba52 --enable-libamr-nb --enable-libamr-wb --enable-libfaad --enable-libfaac --enable-pthreads --disable-shared --enable-static --enable-avfilter --enable-nonfree --disable-ffplay --disable-ffserver --extra-ldflags='-L/usr/lib -static'
libavutil     50. 3. 0 / 50. 3. 0
libavcodec    52.30. 1 / 52.30. 1
libavformat   52.34. 0 / 52.34. 0
libavdevice   52. 2. 0 / 52. 2. 0
libavfilter    0. 5. 0 /  0. 5. 0
libswscale     0. 7. 1 /  0. 7. 1
built on Jul  1 2009 10:40:54, gcc: 4.1.2 (Gentoo 4.1.2 p1.0.2)
[flv @ 0x9e4a380]skipping flv packet: type 18, size 244, flags 0

Here I write text of a friend that is trying to help me with this problem but I dont understand very well what I need to do, if you can help me with this will be very apreciate:

The files got imported as you can see ...just the database entries got messed up;
/public_html/flash/modules/video/files
notice how your working videos have times in them and the older ones do not? try to match them up with working ones
table videofiles in phpmy admin...i do not know that exact name off hand...thats what needs to be done,

Alternatley, I would download all mpg from the files folder set password to zzzzz by editing profiles table...keeping the original and login as the users uplaod the files again. there are about 5 users that need to be done.

mdroca,

This is beyond my scope. You will need to wait for someone to repost a reply to this. Just out of curiosity, are you using a linux or windows hosting server? My cronjob emails do not look like this and I am using linux.


Also, what did you do to fix the problem with the cronjobs sending?

Quote · 8 Jan 2010

Reason 8. Thank you very much for your replay.

 

I have my page hosted on a Linux server Arvixe. What I did was try to line you gave me for the cronjob and now seems to work better: * * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

 

But as you can see some things should be enabled and set as disabled: disable-ffplay - disable-ffserver. I have contacted Arvixe and they said they are trying to fix this but anyway should not accept the result.

Moreover Mrpowless has given me a clue as to why you can not see the videos and the truth is I need some help to do this. I copy his text here:
ask at forum video what table holds information
open phpmyadmin and export all to backup DB
go to that table and find a working video and click on it to record information.

Go to old backup of 6 install and look in field RayMovieFiles table ... Time .... take those to the D7 DB

What you are doing is taking time from manully old database to the new database
both make sure you backup before you start editing the DB

Can you help me?

Quote · 8 Jan 2010

Reason 8. Thank you very much for your replay.

I have my page hosted on a Linux server Arvixe. What I did was try to line you gave me for the cronjob and now seems to work better: * * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

But as you can see some things should be enabled and set as disabled: disable-ffplay - disable-ffserver. I have contacted Arvixe and they said they are trying to fix this but anyway should not accept the result.

Moreover Mrpowless has given me a clue as to why you can not see the videos and the truth is I need some help to do this. I copy his text here:
ask at forum video what table holds information
open phpmyadmin and export all to backup DB
go to that table and find a working video and click on it to record information.

Go to old backup of 6 install and look in field RayMovieFiles table ... Time .... take those to the D7 DB

What you are doing is taking time from manully old database to the new database
both make sure you backup before you start editing the DB

Can you help me?

Yes, cron jobs can be a bit tricky. You have to know a little about linux in order to use them. Just remember a "*" means all the time and the order of cronjobs goes as follows: minutes, hours, days, weeks and months. Then  you follow it with the script or command for that job. Simple enough once you understand.

Now as far as your problem with the pictures, I have no idea. Did you use the migration tool? It should have moved everything over to the new dolphin install. Does your migration status show that everything was transferred over or does it show "Queued" or still in process? I don't think there should be a need to move or edit tables but I could be wrong.

Who installed dolphin for you anyways? Maybe you should reinstall it and migrate the data over again if you are having problems. But remember, I am having problems with video's uploading too but everything else works so...

Quote · 9 Jan 2010

 

 

Reason 8. Thank you very much for your replay.

 

I have my page hosted on a Linux server Arvixe. What I did was try to line you gave me for the cronjob and now seems to work better: * * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

 

 

But as you can see some things should be enabled and set as disabled: disable-ffplay - disable-ffserver. I have contacted Arvixe and they said they are trying to fix this but anyway should not accept the result.

 

 

Moreover Mrpowless has given me a clue as to why you can not see the videos and the truth is I need some help to do this. I copy his text here:
ask at forum video what table holds information
open phpmyadmin and export all to backup DB
go to that table and find a working video and click on it to record information.

Go to old backup of 6 install and look in field RayMovieFiles table ... Time .... take those to the D7 DB

What you are doing is taking time from manully old database to the new database
both make sure you backup before you start editing the DB

Can you help me?

Yes, cron jobs can be a bit tricky. You have to know a little about linux in order to use them. Just remember a "*" means all the time and the order of cronjobs goes as follows: minutes, hours, days, weeks and months. Then  you follow it with the script or command for that job. Simple enough once you understand.

Now as far as your problem with the pictures, I have no idea. Did you use the migration tool? It should have moved everything over to the new dolphin install. Does your migration status show that everything was transferred over or does it show "Queued" or still in process? I don't think there should be a need to move or edit tables but I could be wrong.

Who installed dolphin for you anyways? Maybe you should reinstall it and migrate the data over again if you are having problems. But remember, I am having problems with video's uploading too but everything else works so...

 

REASON8, now my videos play, YEAH!!

ok, I tell you what I did. I did what I see in other post. lancashiredates had tell in his post that he needs to change permmissions to 775 in all flahs directores: public_html/flash/

I only need to change /modules/video/files, others just were in 775. When I try to play a video before change this time change automatically form 00:00 to its really time.

If you don´t understand this very tell me and I try to explane better. So sorry for my english and thank you very much for your help and for your time friend!

Quote · 9 Jan 2010

Reason 8. Thank you very much for your replay.

I have my page hosted on a Linux server Arvixe. What I did was try to line you gave me for the cronjob and now seems to work better: * * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

But as you can see some things should be enabled and set as disabled: disable-ffplay - disable-ffserver. I have contacted Arvixe and they said they are trying to fix this but anyway should not accept the result.

Moreover Mrpowless has given me a clue as to why you can not see the videos and the truth is I need some help to do this. I copy his text here:
ask at forum video what table holds information
open phpmyadmin and export all to backup DB
go to that table and find a working video and click on it to record information.

Go to old backup of 6 install and look in field RayMovieFiles table ... Time .... take those to the D7 DB

What you are doing is taking time from manully old database to the new database
both make sure you backup before you start editing the DB

Can you help me?

Yes, cron jobs can be a bit tricky. You have to know a little about linux in order to use them. Just remember a "*" means all the time and the order of cronjobs goes as follows: minutes, hours, days, weeks and months. Then  you follow it with the script or command for that job. Simple enough once you understand.

Now as far as your problem with the pictures, I have no idea. Did you use the migration tool? It should have moved everything over to the new dolphin install. Does your migration status show that everything was transferred over or does it show "Queued" or still in process? I don't think there should be a need to move or edit tables but I could be wrong.

Who installed dolphin for you anyways? Maybe you should reinstall it and migrate the data over again if you are having problems. But remember, I am having problems with video's uploading too but everything else works so...

REASON8, now my videos play, YEAH!!

ok, I tell you what I did. I did what I see in other post. lancashiredates had tell in his post that he needs to change permmissions to 775 in all flahs directores: public_html/flash/

I only need to change /modules/video/files, others just were in 775. When I try to play a video before change this time change automatically form 00:00 to its really time.

If you don´t understand this very tell me and I try to explane better. So sorry for my english and thank you very much for your help and for your time friend!

I am glad that you figured it out. Kudos to you!

I do not see a /modules/videos/files. I have /modules/boonex/videos and in the files directory I have: classes  data  install  js  request.php  and template

Quote · 9 Jan 2010

 

 

 

 

Reason 8. Thank you very much for your replay.

 

I have my page hosted on a Linux server Arvixe. What I did was try to line you gave me for the cronjob and now seems to work better: * * * * * /usr/bin/php -q /home/musicosp/public_html/periodic/cron.php

 

 

But as you can see some things should be enabled and set as disabled: disable-ffplay - disable-ffserver. I have contacted Arvixe and they said they are trying to fix this but anyway should not accept the result.

 

 

Moreover Mrpowless has given me a clue as to why you can not see the videos and the truth is I need some help to do this. I copy his text here:
ask at forum video what table holds information
open phpmyadmin and export all to backup DB
go to that table and find a working video and click on it to record information.

Go to old backup of 6 install and look in field RayMovieFiles table ... Time .... take those to the D7 DB

What you are doing is taking time from manully old database to the new database
both make sure you backup before you start editing the DB

Can you help me?

Yes, cron jobs can be a bit tricky. You have to know a little about linux in order to use them. Just remember a "*" means all the time and the order of cronjobs goes as follows: minutes, hours, days, weeks and months. Then  you follow it with the script or command for that job. Simple enough once you understand.

Now as far as your problem with the pictures, I have no idea. Did you use the migration tool? It should have moved everything over to the new dolphin install. Does your migration status show that everything was transferred over or does it show "Queued" or still in process? I don't think there should be a need to move or edit tables but I could be wrong.

Who installed dolphin for you anyways? Maybe you should reinstall it and migrate the data over again if you are having problems. But remember, I am having problems with video's uploading too but everything else works so...

 

REASON8, now my videos play, YEAH!!

ok, I tell you what I did. I did what I see in other post. lancashiredates had tell in his post that he needs to change permmissions to 775 in all flahs directores: public_html/flash/

I only need to change /modules/video/files, others just were in 775. When I try to play a video before change this time change automatically form 00:00 to its really time.

If you don´t understand this very tell me and I try to explane better. So sorry for my english and thank you very much for your help and for your time friend!

I am glad that you figured it out. Kudos to you!

I do not see a /modules/videos/files. I have /modules/boonex/videos and in the files directory I have: classes  data  install  js  request.php  and template

 

Sorry, I mistake the root, is this:

flash/modules/mp3/files/

flash/modules/video/files/

But I got all folders inside modules with 755 and not 775 as I wrote before (sorry)!!

Quote · 9 Jan 2010

I posted a new blog adn gave some pretty detailed troubleshooting instructions, that include some of the topics mentioned here:

http://www.boonex.com/unity/blog/entry/Troubleshooting_Dolphin_Videos_Migrations_RMS

Chris

Nothing to see here
Quote · 9 Jan 2010

I posted a new blog adn gave some pretty detailed troubleshooting instructions, that include some of the topics mentioned here:

http://www.boonex.com/unity/blog/entry/Troubleshooting_Dolphin_Videos_Migrations_RMS

Chris

This migration process seems to be flawed. After 2 months I have revisited D7 on a new system and am having the same issues I had before with D7 on a different system. I believe the cronjob is having a problem with running the cron.php script by the system. I few weeks ago I tried running a dns client updater on the system using bash and a cronjob and received an error about PEAR and not beaing able to find a file associated with it. This is sorta the same problem which is why I believe your manual cron.php method works from within a browser. So for those of us who are having problems with migrating PROFILES, this is the only choice unless we can figure out what the system is needing in order to run the php script. This can be a lenghty and terious process if  you have to do it manually.

Update:

I hope this helps someone. I have figured out a way to automatically run the manual cronjob automatically with firefox and 2 extensions.

Install Data Migration Module if moving from Dolphin 6.1.6 to 7.0

Note: The migration cronjob does not work (for some) by default. You must manually run the cronjob.

TIP: Download the following to automatically run migration script and check for changes with Firefox.

Check4Change: https://addons.mozilla.org/en-US/firefox/addon/3028
ReloadEvery: https://addons.mozilla.org/en-US/firefox/addon/115

Highlight and set Check4Change to check the text you want to monitor for change for every 5 seconds or so (ex: profiles:in process, photos:in process, videos:in process, custom_profile_fields:in process, etc)

Load cron.php in the browser by going to: http:/domain.tld/dolphin/periodic/cron.php (remember to copy or move ./periodic/.htaccess to ./periodic/.htaccess.backup)

Right click in any open white space on the page and set ReloadEvery for every  1-5 seconds.

Monitor your migration changes on the migration status page or don't even worry about it because Check4Change will notify you when there has been a change on the page. You can continue to work or browse the web while these pages are reloading and rechecking.

Quote · 1 Mar 2010

I had issues with migrating data from 6.1.6 to 7 as well. The data would not migrate. My senior support tech told me to change the cron to the following and everything moved.

* * * * * /usr/bin/php5 -d register_globals=Off -q /home/mypath/public_html/group/periodic/cron.php

Not sure if this will work but it may help someone that is on a similar server set up as mine.

Quote · 2 Mar 2010

I had issues with migrating data from 6.1.6 to 7 as well. The data would not migrate. My senior support tech told me to change the cron to the following and everything moved.

* * * * * /usr/bin/php5 -d register_globals=Off -q /home/mypath/public_html/group/periodic/cron.php

Not sure if this will work but it may help someone that is on a similar server set up as mine.

Ha ha, I actually forgot that some web hosting providers use a separate PHP configuration for their cron jobs.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 2 Mar 2010

I was also having the same errors migrating from 6.1.6 to D7, the cron job would not work for me at all.

I found the solution after searching the web and through my website hosting wiki and forums.

It turns out that I had to set php5 as the default interpreter, by placing this line alias 'php=/usr/local/php5/bin/php' in my ".bashrc"  file through shell access.

I also placed this line alias 'php=/usr/local/php5/bin/php' in my ".alias" file through shell access.

I edited my header.inc.php file with the proper path to php5 which for me was "/usr/local/php5/lib/php".

I had made the mistake of setting my cron job as /usr/local/bin/php -q /home/user/mysite/periodic/cron.php which caused errors.

It should have read /usr/local/php5/bin/php -q /home/user/mysite/periodic/cron.php this made the cron job run without problems.

If you are not sure which php version is being used, try running a phpinfo.php file on your site. If it shows php v4 you may want to find the location of your php5 interpreter and do something like this.

I am by the way using Dreamhost but hopefully this will help some that are still having trouble.

Later

Alan

Quote · 8 Mar 2010

I was also having the same errors migrating from 6.1.6 to D7, the cron job would not work for me at all.

I found the solution after searching the web and through my website hosting wiki and forums.

It turns out that I had to set php5 as the default interpreter, by placing this line alias 'php=/usr/local/php5/bin/php' in my ".bashrc"  file through shell access.

I also placed this line alias 'php=/usr/local/php5/bin/php' in my ".alias" file through shell access.

I edited my header.inc.php file with the proper path to php5 which for me was "/usr/local/php5/lib/php".

I had made the mistake of setting my cron job as /usr/local/bin/php -q /home/user/mysite/periodic/cron.php which caused errors.

It should have read /usr/local/php5/bin/php -q /home/user/mysite/periodic/cron.php this made the cron job run without problems.

If you are not sure which php version is being used, try running a phpinfo.php file on your site. If it shows php v4 you may want to find the location of your php5 interpreter and do something like this.

I am by the way using Dreamhost but hopefully this will help some that are still having trouble.

Later

Alan

For the record, I'm only giving you a +1 for your awesome avatar, and not because you provided some useful information.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 8 Mar 2010

I am having an issue where about half my profiles are moving. is there a timeout or a limit to how many profiles can move? I keep getting stuck between 10352 and 10355 each time i clean out the table and reinstall data migration and run it.. I have nearly 17300 profiles that need to be moved. Is there a size limit?

 

No errors and the cron job is running.

 

but stuck in process.

 

Thanks

Quote · 8 Sep 2010

Max mysql time for queries  increase it.

https://dolphin-techs.com - Skype: Dolphin Techs
Quote · 8 Sep 2010

was just on with the host support. they increased the max sql time in my php.ini file. should it be changed somewhere else? that didn't work

Quote · 9 Sep 2010

 

Max mysql time for queries  increase it.

i have my webhost admins working on it again. should it be changed in the php.ini file?

Quote · 9 Sep 2010

my profiles are transfered, but if I click on a profile thumbnail to view a profile or go to my own profile I get Database query error.

But it is only on profile, Info, Friends and so on is ok.

Does anyone has a solution?

Diddy is not greedy and has time. Dolphin is cool and its not just mine :-)
Quote · 10 Sep 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.