PDA

View Full Version : thumb file not renaming correctly


thescrub
08-22-2009, 04:30 PM
I'm uploading an image. I want it to rename new file if exists, the first file works fine. the second file which is a thumbnail it not naming correctly. if the file name is XXX.jpg and that file name already exists then for the primary image it makes XXX_1.jpg. for the thumbnail if XXX_thumb.jpg exist then the file is uploaded as XXX_1.jpg. The _thumb is left off.

<?php
// WA_UploadResult1 Params Start
$WA_UploadResult1_Params = array();
// WA_UploadResult1_1 Start
$WA_UploadResult1_Params["WA_UploadResult1_1"] = array(
'UploadFolder' => "../Gallery/",
'FileName' => "[FileName]",
'DefaultFileName' => "",
'ResizeType' => "0",
'ResizeWidth' => "120",
'ResizeHeight' => "120",
'ResizeFillColor' => "#FFFFFF" );
// WA_UploadResult1_1 End
// WA_UploadResult1_2 Start
$WA_UploadResult1_Params["WA_UploadResult1_2"] = array(
'UploadFolder' => "../Gallery/",
'FileName' => "[FileName]_thumb",
'DefaultFileName' => "",
'ResizeType' => "1",
'ResizeWidth' => "120",
'ResizeHeight' => "120",
'ResizeFillColor' => "#FFFFFF" );
// WA_UploadResult1_2 End
// WA_UploadResult1 Params End
?>
<?php
WA_DFP_SetupUploadStatusStruct("WA_UploadResult1");
if($_SERVER["REQUEST_METHOD"] == "POST"){
WA_DFP_UploadFiles("WA_UploadResult1", "imageName", "2", "[NewFileName]_[Increment]", "true", $WA_UploadResult1_Params);
}
?>


Status object: WA_UploadResult1
statusCode : 1
errorMessage :
clientFileName : 010.JPG
fileExtension : jpg
serverFileName : 010_1.jpg
serverSimpleFileName : 010_1
serverDirectory : /home/content/c/a/p/capearce/html/subtesting/test/admin/../Gallery/
contentType : image/jpeg
fileWasOverwritten :
fileWasSkipped :
fileWasRenamed : 1
fileSize : 182602
isImage : 1
imageWidth : 1536
imageHeight : 2048
WA_UploadResult1_1:
clientFileName : 010.JPG
fileExtension : jpg
serverFileName : 010_1.jpg
serverSimpleFileName : 010_1
serverDirectory : /home/content/c/a/p/capearce/html/subtesting/test/admin/../Gallery/
contentType : image/jpeg
fileSize : 182602
imageWidth : 1536
imageHeight : 2048
isImage : 1
fileWasOverwritten :
fileWasSkipped :
fileWasRenamed : 1
statusCode : 1
WA_UploadResult1_2:
clientFileName : 010.JPG
fileExtension : jpg
serverFileName : 010_1.jpg
serverSimpleFileName : 010_1
serverDirectory : /home/content/c/a/p/capearce/html/subtesting/test/admin/../Gallery/thumbs/
contentType : image/jpeg
fileSize : 2886
imageWidth : 90
imageHeight : 120
isImage : 1
fileWasOverwritten :
fileWasSkipped :
fileWasRenamed : 1
statusCode : 1

Jason Byrnes
08-24-2009, 10:16 AM
We will need to look into this issue with you. I have created a support ticket so we can look into this.

To view and update your ticket, please log into your support history at:
http://www.webassist.com/mywebassist/supporthistory.php

lordmatrix
09-27-2009, 07:34 AM
I'm having exactly the same problem. Is this bug solved? Any work around suggestion in the mean time?

Thank you.

lordmatrix
09-28-2009, 04:55 AM
I would really appreciate an answer from support team about this bug. Thank you.

Office Guy-172461
09-28-2009, 06:04 AM
Be patient, they will be back from the weekend in about 3 hours from now.

Jason Byrnes
09-28-2009, 02:02 PM
I have created a support ticket to fix this issue with you. to view and edit your support ticket, please log into your support history:
http://www.webassist.com/mywebassist/supporthistory.php

lordmatrix
09-29-2009, 01:24 AM
Thank you, problem solved.

Rune
11-10-2009, 04:07 AM
I have exactly the same problem. This issue have been solved twice through support tickets. Could you please post the solution or workaround to the forum so we all can see it ?

Thanks

Regards
Rune

Jason Byrnes
11-10-2009, 10:10 AM
Please make sure you are using Digital File pro version 2.0.2, this is the meost recent version available from the download center, the issue should be fixed in version 2.0.2.

If you have a previous version installed, make sure to remove it from the extesnion manager before installing installing the newer version.

Rune
11-10-2009, 10:56 AM
The insert page works fine. It's the update page that's cause problems. When I want to replace an image with a new one name newimage.jpg, the main image and the thumbnail should be newimage.jpg and thumb_newimage.jpg. In my case it's newimage.jpg for the main image and newimage_1.jpg for the thumbnail.

I'm attaching my update page.

Thanks again.

Regards
Rune

Rune
11-20-2009, 03:55 PM
This was solved by Jimmy Wu through a support-ticket, excellent as always:

In your HelperPHP.php file, find the line of code that looks like this:
$renameFileName = str_replace($newFileNameDefault2, $baseFileName, $renameFileName);

and change it to this:
$renameFileName = str_replace($newFileNameDefault2, $attemptedFileName, $renameFileName);

This should show up twice in your HelperPHP.php file.

Regards
Rune