Comment to 'Dolphin Migration Errors'
  • Video migration generate this error:

    Sep 06 07:06:09 [3] /grid.php?o=bx_dolphin_migration_transfers&a=run&skin=artificer&start=0&ids[]=videos&order_dir=ASC&csrf_token=9dedda057142a32303707b18fd38d4e7&_r=0.8000806461387326 Database query error
      Error: Column 'title' cannot be null
      QueryINSERT INTO
    									`bx_videos_entries`
    								SET
    									`author`   			= ?,
    									`added`      		= ?,
    									`changed`   		= ?,
    									`video`				= 0,
    									`title`				= ?,
    									`allow_view_to` 	= ?,
    									`text`				= ?,
    									`status_admin`		= ?,
                                        `status`            = ?,
                                        `cat`               = ?
    							 
      Account ID: 1
    

    I solved the error with the title this way, in the BxDolMVideos.php I don't know if it's correct but I no longer have the error for the title:

    // $sVideoTitle = $aValue['Title']; // original code
    $sVideoTitle = !empty($aValue['Title']) ? $aValue['Title'] : 'Untitled Video'; // Set default title if missing