Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    1. Home
    2. vinoth kumar
    • Profile
    • Following 0
    • Followers 0
    • Topics 10
    • Posts 19
    • Best 1
    • Groups 0

    vinoth kumar

    @vinoth kumar

    1
    Reputation
    1
    Profile views
    19
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    vinoth kumar Unfollow Follow

    Best posts made by vinoth kumar

    • RE: Downloading files/folders as zip

      @joseph-benguira Thanks it works.

      posted in Cloud CMS (Pagebuilder
      vinoth kumar
      vinoth kumar

    Latest posts made by vinoth kumar

    • RE: Downloading files/folders as zip

      @joseph-benguira Thanks it works.

      posted in Cloud CMS (Pagebuilder
      vinoth kumar
      vinoth kumar
    • RE: Downloading files/folders as zip

      @jbenguira , Thanks.
      Login doesn't work on a enterprise version. Here i'm using our SingleSignOn to login to our service. Is there any method to login on my enterprise version through cmd ?

      posted in Cloud CMS (Pagebuilder
      vinoth kumar
      vinoth kumar
    • Downloading files/folders as zip

      Hi Team,

      I just want to check is there any option to download the root folder files/folders as zip format ?

      6da7b395-0f85-4658-887d-cf7b3eb88fcc-image.png

      posted in Cloud CMS (Pagebuilder
      vinoth kumar
      vinoth kumar
    • Free Trial Duration

      Hi Team,

      I have a doubt on free trial pack. I registered with appdrag a year back and now its showing the trail ends on November 9,2021.
      Will my site & backend data still be there after this trial duration or I have to buy some license packs to sustain it?

      dae30ab1-b294-4f46-b119-c00181ab6376-image.png

      posted in General Discussion
      vinoth kumar
      vinoth kumar
    • Any Option to push uploaded excel data directly to Backend table ?

      Hi Team,

      I have a scenario to keep a upload button in the UI. When user uploads a excel file (with data like username, email, etc) , i need to read the data in file and upload the same data to Backend table ?

      Do we have any modules in appdrag-cloudbackend to achieve this ?

      posted in Cloud Backend (Cloud DB
      vinoth kumar
      vinoth kumar
    • RE: Issue with Upload ZIP Content

      Thanks @Wassim. I can able to upload zip files.
      One more additional question, for sending emails, do we have any appdrag supported From Email address ?

      posted in Cloud CMS (Pagebuilder
      vinoth kumar
      vinoth kumar
    • RE: Issue with Upload ZIP Content

      Guys can someone help me on this

      posted in Cloud CMS (Pagebuilder
      vinoth kumar
      vinoth kumar
    • Issue with Upload ZIP Content

      Hi Team,

      I have a zip file of size 90mb to upload in code editor. While uploading the zip file into the root dir, i can able to see the processing screen. But after the page load, i couldn't see any of my zip file contents there.

      Please help to fix this one.

      Regards,
      Vinoth

      posted in Cloud CMS (Pagebuilder
      vinoth kumar
      vinoth kumar
    • RE: How to save uploaded file in Custom Folder ?

      @Joseph-Benguira

      Thanks Joseph. Also i have another doubt. What's the max file size we can upload in CloudBackEnd ?
      I tried to upload a file size of 55 mb. It doesn't worked.

      posted in Cloud Backend (Cloud DB
      vinoth kumar
      vinoth kumar
    • How to save uploaded file in Custom Folder ?

      Hi Team,

      I'm trying to upload my file in custom folder path(uploadsFolder/) rather than default CloudBackEnd's upload folder. Below code is not working.

      Please guide me on how to achieve this

      My Folder Structure
      /
      CloudBackEnd
      uploadsFolder

      My Code
      var request = require('request');
      var cloudbackend = require('appdrag-cloudbackend');
      var appID = process.env.APPID; // Read from environment variables
      var APIKey = process.env.APIKEY; // Read from environment variables
      cloudbackend.init(APIKey, appID);
      exports.handler = (event, context, callback) => {

      var postedFiles = event["FILES"];
      
      if(postedFiles.length>0){
          for(i=0;i<postedFiles.length;i++){
              var tmpPath = postedFiles[i]["path"]; 
              var destPath = "uploadsFolder/"+ tmpPath;
              cloudbackend.fileSaveUploaded(tmpPath,destPath).then(callback(null, destPath));
          } // end -for
      }
      else {
          callback(null, postedFiles.length);
      }
      

      }; // end - handler

      posted in Cloud Backend (Cloud DB
      vinoth kumar
      vinoth kumar