Use the Google Drive directory as an Apache virtual host

I am trying to configure an Apache 2.4 server with my folder on a google drive. I already did this with Dropbox, and it works great, but using Google Drive Apache cannot find the directory.

After some research, I found that the real path to the folder with the google file is in

C: \ Users \ ME \ AppData \ Local \ Google \ Drive \ sync_config.db

but it all compiled. Is there any way to get the path?

I already tried with this KiXtart script:

http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=204938

... which no longer works.

+3
source share
3 answers

This is a permissions issue. Right-click the Google Drive folder β†’ Properties β†’ Security tab β†’ Advanced β†’ Change permissions ... β†’ Include inheritable permissions from the parent folder.

+14
source

This is just a permissions issue. Change the permissions of the Google Drive folder to inherit all the permissions of the parent folder, then you should go.

+5
source

You can map the google drive folder to the drive, then set wmap / virtual host to this path:

subst x: "C:\{pathname}\{foldername}" 

Edit: added quotes to the space in {folder_name} (for example, / Google Drive /)

+1
source

All Articles