Skip to main content

New Oracle APEX Plugin: Save files to Google Drive

I'm pleased to share my first Oracle APEX plugin, It enables users to save files direct to Google drive.

Kindly download: https://api.github.com/repos/KehindeAdeyemi-apex/Save-files-to-Google-Drive/zipball/v1.0.


I hope you find it useful

Comments

  1. your plugins are really cool
    How do you upload multiple files once

    ReplyDelete
  2. Hi Richmond,

    Thanks for your comment. To upload multiple files you need to enable this in your file browse item

    ReplyDelete
  3. Hello Richmond!
    Congratulations, I'm excited about your plugins. It can do it with Dropbox, but with Google Drive, I've tried it in every way including the support material and I can't do it at all. Can you help me ?

    ReplyDelete
    Replies
    1. Hi Gustavo, Sorry for the very late response. Have you been to make progress?. I can still assist you.

      Delete
  4. I'm experiencing a problem:

    There are no files uploaded

    I have tested several different ways to solve the problem and I can not, can you help me in this work? I really need to implement the possibility of saving files to the drive if possible to contact:

    alexander.cofilho@goias.gov.br

    ReplyDelete
    Replies
    1. Hi Alexander,

      Thanks for your interest.

      I have sent you an email and will be able to assist you with the Google Drive api key configuration.

      Regards,
      Kehinde

      Delete
  5. Hi Adeyemi,
    great work ! thanks for joining !
    the preview areas always shows an error... whereas I integrated my API_KEY
    and in the process my token...
    after upload I get the green message (which normally means: "success") - but showing "No files have been uploaded"...
    pls kindly explain...
    BTW: which embedder domain did u use ? apex.oracle.com is accepted... is that long enough ? I use bfw-design.maxapex.ws .. that is not accepted by dropbox...
    thks.
    Bernhard

    ReplyDelete
    Replies
    1. Hello Fischer,
      I'm facing the same problem, if you can keep going and you can tell me how you did it, I'll be grateful.

      Delete
    2. Hi B. Fischer,

      Thanks for your interest.

      I can assist you. Please share your email id

      Delete
  6. hi
    thanks for this great plug in its works good
    but the problem is the file name and mimi especially when i upload mp4
    as all file names in google drive are showing as Untitled

    ReplyDelete
  7. Hi, i have the same problem. "No files have been uploaded"...
    pls kindly explain...Help me please

    ReplyDelete
    Replies
    1. Please share your email address with me. I'll be happy to help

      Delete
    2. Same problem as others, same message "No files have been uploaded"

      Delete
  8. Hi,

    Can we access this with insecure environment application as i have tried but its not working and I need to do it, can you help me on this

    ReplyDelete
  9. with https it working but with http its not sending files into drive

    ReplyDelete
  10. It's urgent please help me on this

    ReplyDelete
  11. Hi , i have tried for days , i got the message " No Files Uploaded " , i ensured all keys are correct but no luck

    can you please provide the Assistance in the configuration , this is my email haythem.m.mousa@gmail.com

    ReplyDelete

Post a Comment

Popular posts from this blog

Select/Unselect All Checkboxes in a Classic Report in Oracle APEX

Below are simple steps to select/unselect all checkboxes in a classic report: 1. Create a page with a classic report based on a sample query      select apex_item.checkbox(1, EMPLOYEE_ID) selectemp,        EMPLOYEE_ID,        FIRST_NAME,        LAST_NAME,        EMAIL,        PHONE_NUMBER,        HIRE_DATE   from EMPLOYEES 2. Add static ID : emp on the classic report region 3. Add below Javascript on the page function handleClick(cb) {     if  (cb.checked === true) {   $('#emp input[type=checkbox][name=f01]').prop('checked',true);       } else {   $('#emp input[type=checkbox][name=f01]').prop('checked',false); } } 4. Change the heading on the SELECTEMP column of the report to below              5. Ensure you set 'Escape Special Characters' on the SELECTEMP column to 'No' 6. Run the report and see the changes when you select/unselect the checkbox in the heading Happy APEX Exp

How to upload and embed a pdf document within a page in an Oracle APEX Application

Some Oracle APEX customers prefer to view embedded PDF documents directly within a page in their application rather than having to download. My current case study allows users to upload a .pdf document, save directly to a file location (rather than a DB Column) and view same embedded on the current page as shown above. Steps taken: 1. Identify the physical location of the #IMAGE_PREFIX# (/i/), in my case it is/u01/userhome/oracle/apex/images 2. Create a folder called 'docs' in the directory logged in as user SYS $ cd /u01/userhome/oracle/apex/images $ mkdir docs 3. Create a database directory called MY_DOCS create or replace directory MY_DOCS as '/u01/userhome/oracle/apex/images/docs'; Directory MY_DOCS created. grant read,write on directory MY_DOCS to {WORKSPACE_SCHEMA}; Grant succeeded. 4. Create a page within your application with following create page items PXX_FIRST_NAME (Textfield), PXX_LAST_NAME (Textfield), PXX_UPLOAD_DOC (File Browse), PXX