Thanks jess for your reply and help.
Still i am getting same problem like, can you please look into it and help me?
KalturaClientException Object
(
[message:protected] => failed creating formpost data
[string:Exception:private] =>
[code:protected] => -1
[file:protected] => /u1/opt/kaltura/apps/clipapp/v1.3/client/KalturaClientBase.php
[line:protected] => 199
[trace:Exception:private] => Array
(
[0] => Array
(
[file] => /u1/opt/kaltura/apps/clipapp/v1.3/client/KalturaClient.php
[line] => 1721
[function] => doQueue
[class] => KalturaClientBase
[type] => ->
[args] => Array
(
)
)
[1] => Array
(
[file] => /u1/opt/kaltura/app/start/bulk-upload-csv.php
[line] => 41
[function] => add
[class] => KalturaBulkUploadService
[type] => ->
[args] => Array
(
[0] => 8
[1] => * title,description,tags,url,contentType,category,scheduleStartDate,scheduleEndDate,thumbnailUrl,metadataProfileId,metadataField_AiredOn,metadataField_Location
Home,Homepage video with music,“Homepage, Creative”,http://sites.google.com/site/demokmc/Home/KalturaSiteAlt.flv,Video,category>subcategory1,2015-04-01T13:12:12,2015-06-01T13:12:12,image.com/thumb2.jpg,3,2015-04-01T13:12:12,"Location|,|Location2"
Companies to watch,Five companies to watch in 2009 report,“Kaltura, Press”,http://sites.google.com/site/demokmc/Home/VideoFishbowl-TheFiveOnlineVideoCompaniesToWatchIn2009612.flv,Video,category>subcategory2,2015-04-01T13:12:13,2015-06-01T13:12:13,http://image.com/thumb1.jpg,3,2015-04-01T13:12:13,"Location|,|Location3"
Creating together,Collaboration video,Collaboration,http://sites.google.com/site/demokmc/Home/spot.whats.mov,Video,category>subcategory3,2015-04-01T13:12:14,2015-06-01T13:12:14,3,2015-04-01T13:12:14,"Location|,|Location4"
Titanic in 5 Seconds,Titanic movie summarized in 5 seconds,“Titanic, Short”,http://sites.google.com/site/demokmc/Home/titanicin5seconds.flv,Video,category1>subcategory,2015-04-01T13:12:15,2015-06-01T13:12:15,3,2015-04-01T13:12:15,Location
Humor,Promotional funny video,“Humor, Promotional”,ftp://projects8:741@ftp.kaltura.com/kaltura final 4_CD.wmv,Video,category2>subcategory,2015-04-01T13:12:16,2015-06-01T13:12:16,3,2015-04-01T13:12:16,Location
Big Buck Bunny Trailer,A funny and furry 3D short about a giant rabbit who gets even with bullying rodents,“Big buck bunny, trailer”,ftp://projects8:741@ftp.kaltura.com/BigBuckBunnyTrailerHD.mov,Video,category3>subcategory,2015-04-01T13:12:17,2015-06-01T13:12:17,3,2015-04-01T13:12:17,“Location|,|Location1”
[2] => CSV
[3] => user.email@test.com
)
)
)
[previous:Exception:private] =>
)
I am using below code for upload bulk videos:-
$uploadedBy ="user.email@test.com";
$bulkUploadType = ‘CSV’;
$conversionProfileId = $kclient->conversionProfile->getDefault()->id;
$csvFileData = file_get_contents(‘bulkUploadXml.csv’);
try
{
$results = $kclient->bulkUpload->add($conversionProfileId, $csvFileData, $bulkUploadType, $uploadedBy);
if (isset($results)){
echo “Successfully uploaded”;
}else{
echo “Failed to upload :(”;
}
}
catch(Exception $e)
{
print_r($e);
}
Thanks in advance.