Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6788361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:28:37+00:00 2026-05-26T17:28:37+00:00

I have used to the Rackspace API to upload files to the RackSpace cloud.

  • 0

I have used to the Rackspace API to upload files to the RackSpace cloud. But this method seems to be a little on the slow side. Is there a better or faster way to upload a file to the cloud(curl, http adapters, etc)?

I am currently uploading with PHP and using the provided API.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:28:37+00:00Added an answer on May 26, 2026 at 5:28 pm

    Here is my solution how to make it fast:

    I’m uploading only missing files using simple PHP script below. Thanks to it I do it in just one click and in just a few seconds.

    PHP source code:

    function UploadMissingFilesToRackFileCDN($file_paths_to_upload, $b_force_upload = false)
    {
        include_once("cloudfiles.php");
    
        // Connect to Rackspace
        $username = cloudfile_username; // username
        echo "Connecting to CDN..." . date("H:i:s") . "<br>"; ob_flush();
        $key = cloudfile_api_key; // api key
        $auth = new CF_Authentication($username, $key);
        $auth->authenticate();
        $conn = new CF_Connection($auth);
        echo "&nbsp;&nbsp;&nbsp;&nbsp;Connected!" . date("H:i:s") . "<br>"; ob_flush();
    
        // Get the container we want to use
        $container_name = 'vladonai';//'test_container';
        echo "Obtaining container $container_name..." . date("H:i:s") . "<br>"; ob_flush();
        $container = $conn->get_container($container_name);
        echo "&nbsp;&nbsp;&nbsp;&nbsp;The container is obtained." . date("H:i:s") . "<br>"; ob_flush();
    
        if (!$b_force_upload)
        {
            echo "Receiving container objects list..." . date("H:i:s") . "<br>"; ob_flush();
            $existing_object_names = $container->list_objects();
            $existing_files_count = count($existing_object_names);
            echo "&nbsp;&nbsp;&nbsp;&nbsp;Objects list obtained: $existing_files_count." . date("H:i:s") . "<br>"; ob_flush();
            $existing_object_names_text .= "\r\n";
            foreach ($existing_object_names as $obj_name)
            {
                $existing_object_names_text .= $obj_name . "\r\n";
            } 
        }
    
        // upload files to Rackspace
        $uploaded_file_n = 0;
        $skipped_file_n = 0;
        $errors_count = 0;
        foreach ($file_paths_to_upload as $localfile_path => $file_info)
        {
            $filename = basename($localfile_path);
    
            if (!file_exists($localfile_path))
            {
                echo "<font color=red>Error! File $localfile_path doesn't exists!</font>" . date("H:i:s") . "<br>"; ob_flush();
                $errors_count ++;
            } else
            if (is_dir($localfile_path))
            {
                //simply skip it
            } else
            if (strpos($existing_object_names_text, "\r\n" . $filename . "\r\n") !== false)
            {
                //file is already uploaded to CDN (at least file name is present there). Would be good to have date/size checked, but CDN api has no such feature
                //echo "<font color=gray>Skipped file $localfile_path - it already exists!</font><br>"; ob_flush();
                $skipped_file_n ++;
            } else
            {
                echo "<font color=green>Uploading file $localfile_path (file #$uploaded_file_n)..." . date("H:i:s") . "</font><br>"; ob_flush();
                try
                {
                    $object = $container->create_object($filename);
                    $object->load_from_filename($localfile_path);
                    $uploaded_file_n ++;
                }
                catch (Exception $e)
                {
                    echo "<font color=red>Error! Caught exception: ",  $e->getMessage(), " on uploading file <strong>$localfile_path</strong>!</font>" . date("H:i:s") . "<br>"; ob_flush();
                    $errors_count ++;
                }
            }
    
        //  if ($uploaded_file_n >= 10)
        //      break;
        }
        echo "Done! $uploaded_file_n files uploaded. Disconnecting :)" . date("H:i:s") . "<br>"; ob_flush();
        echo "Skipped files: $skipped_file_n<br>"; ob_flush();
        if ($errors_count > 0)
            echo "<font color=red>Erorrs: $errors_count</font><br>"; ob_flush();
    }
    
    function UploadChangedImagesToRackFileCDN($b_force_upload = false)
    {
        $exclude = array
        (
          '.',
          '..',
          '*.html',
          '*.htm',
          '*.php',
          '*.csv',
          '*.log',
          '*.txt',
          '*.cfg',
          //'*sub/forum/files/*',
        );
        $files_array_images = get_dirlist("/var/www/html/vladonai.com/images/", '*', $exclude, false); 
        $files_array = array_merge(get_dirlist("/var/www/html/vladonai.com/js/", '*', $exclude, false), $files_array_images);
    
        UploadMissingFilesToRackFileCDN($files_array, $b_force_upload);
    } 
    
    
    function get_dirlist($path, $match = '*', $exclude = array( '.', '..' ), $b_short_path = true)
    {
        $result = array();
    
        if (($handle = opendir($path)))
        {
            while (false !== ($fname = readdir($handle)))
            {
                $skip = false;
    
                if (!empty($exclude))
                {
                    if (!is_array($exclude))
                    {
                        $skip = fnmatch($exclude, $fname) || fnmatch($exclude, $path . $fname);
                    } else
                    {
                        foreach ($exclude as $ex)
                        {
                            if (fnmatch($ex, $fname) || fnmatch($ex, $path . $fname))
                                $skip = true;
                        }
                    }
                }
    
                if (!$skip && (empty($match) || fnmatch($match, $fname)))
                {
                    $file_full_path_and_name = $path . $fname;
                    //echo "$file_full_path_and_name<br>";
                    $b_dir = is_dir($file_full_path_and_name);
                    $b_link = is_link($file_full_path_and_name);
                    $file_size = ($b_dir || $b_link) ? 0 : filesize($file_full_path_and_name);
                    $file_mod_time = ($b_dir || $b_link) ? 0 : filemtime($file_full_path_and_name);
    
                    $new_result_element = array();
                    if ($b_short_path)
                        $file_name = str_replace("/var/www/html/vladonai.com/", "", $file_full_path_and_name);//'[' . str_replace("/var/www/html/vladonai.com/", "", $file_full_path_and_name) . ']';
                    else
                        $file_name = $file_full_path_and_name;
                    $result[$file_name] = array();
                    $result[$file_name]['size'] = $file_size;
                    $result[$file_name]['modtime'] = $file_mod_time;
    
                    if ($b_dir && !$b_link)
                    {
                        //recursively enumerate files in sub-directories
                        $result = array_merge(get_dirlist($file_full_path_and_name . "/", $match, $exclude, $b_short_path), $result);
                    }
                }
            }
    
            closedir($handle);
        }
    
        return $result;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have posted this to ServerFault, but the Node.js community seems tiny there, so
Have used google maps dozens of times but cannot get around this one. Doing
I have used Jetty in the past but I have little experience with jWebSocket.
I'm using the cloudfile module to upload files to rackspace cloud files, using something
I have used some TCL, but this construction stumps me. When $res = Table
I have used this code to send mails but I am not getting any
I have used this in my HTML: <q> Hai How r u </q> Which
I have used getopt in Python and was hoping there would be something similar
I currently have a .net web application on a cluster based system (Rackspace cloud).
I have used FindControl in the past, prior to .NET 2.0/3.0. It seems like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.