Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
enidphotoop  
#1 Posted : Thursday, August 11, 2011 9:45:35 AM(UTC)
enidphotoop

Rank: Newbie

Groups: Member
Joined: 3/17/2010(UTC)
Posts: 5

Thanks: 1 times
Hello,

I have some coding questions when trying to implement Aurigma Up. I have a PHP bases website (and I am new to this PHP stuff) and I am trying to implement Aurigma Up.

I followed the instructions on adding a link to the website, currently it is on my home page (www.enidphotoop.com), and the link seems to work fine.

Sorry for my ignorance here but this is what I need help on:

I created an upload.php page and that is where the uploadUrl is directed to. What information/coding needs to go on this upload.php page? Does anyone have sample php code or a php website this is currently being implemented?

Thanks, Kayla

Dmitry.Obukhov  
#2 Posted : Friday, August 12, 2011 1:19:40 AM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups: Member
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Kayla,

Thanks for your question.

Here is the sample of upload.php page:

Code:

<?php 
$path = realpath('./Temp/') . DIRECTORY_SEPARATOR;
$fileCount = $_POST["PackageFileCount"];
for ($i = 0; $i < $fileCount; $i++) {
    if (isset($_FILES['File0_' . $i])) {
        move_uploaded_file($_FILES['File0_' . $i]['tmp_name'], $path . $_POST['SourceName_' . $i]);
    }
}

You can find this sample in this section (please see Step 3).

I attached complete sample application based on AurigmaUp (PHP code) for your reference. Please download, and try it out.

If you have any questions, please feel free to let me know :)

Edited by user Friday, August 12, 2011 1:20:25 AM(UTC)  | Reason: Not specified

File Attachment(s):
AurigmaUpsample.zip (1kb) downloaded 30 time(s).
Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

thanks 1 user thanked Dmitry.Obukhov for this useful post.
enidphotoop on 8/12/2011(UTC)
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.