Re: [google-appengine] This site can't be reached error after adding a custom domain to App Engine

2020-06-22 Thread Mua Rachmann
Hi,

Has it been long since u added it? It usually takes 4-6hrs for Google to
verify and everything works well.

If it persists after then, feel free to contact support again.

Thanks,
Mua

On Tue, 23 Jun 2020 at 02:20 Cansu Kaya  wrote:

> I added a custom domain and got a Google managed SSL certificate for it.
> But now I get "This site can't be reached" error when I go to the website.
> Has anyone encountered a similar issue?
>
> [image: App_Engine_Domains_-_GTM-5JQ72ZK_-_Google_Cloud_Platform.png]
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/e86d521c-7f91-4100-b949-fa190e2f73b2n%40googlegroups.com
> 
> .
>
-- 

*MUA N. LAURENT*: Lead Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-hsyJvyVnfHFaEfQVNEO0U8SG84nTS-NCds_pW8irkRgQ%40mail.gmail.com.


Re: [google-appengine] Re: Run gcloud commands from PHP

2020-03-31 Thread Mua Rachmann
Hi Vinit,

George is right. These functions are disabled, but I could enable them from
my app.yaml setting when ever
I need them like so...

env_variables:
# Put production environment variables here.
  APP_NAME: Test project
  WHITELIST_FUNCTIONS: phpinfo, exec, phpversion, proc_open, symlink,
proc_close ,shell_exec ,passthru

Let me know if that works for you. PS this works for the the flex
environment as George clearly pointed out just that
they are disabled.

Cheers,
Mua

On Tue, Mar 31, 2020 at 4:04 PM 'George (Cloud Platform Support)' via
Google App Engine  wrote:

> In your local development environment, if you want to run a script
> including gcloud commands, you should refer to the "Scripting gcloud CLI
> commands" documentation page
> . In this local
> environment, it is unclear why you chose to use PHP and the shell_exec()
> command; you can run the script directly at the command prompt.
>
> If you mean to run shell_exec() in the code of your deployed PHP app, this
> is not supported. App Engine Standard Environment does not allow system
> calls. In the Flexible Environment, the following functions are disabled:
> exec, passthru, proc_open, proc_close, shell_exec, show_source, symlink,
> system.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/243ffd40-7baf-4821-9954-9dd86ac9f904%40googlegroups.com
> 
> .
>


-- 

*MUA N. LAURENT*: Lead Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-gTnnJvQSzXNCHLY--8rpRgywfLghu30zWSZZouc8MtXQ%40mail.gmail.com.


Re: [google-appengine] Re: Deploy Laravel app on google app engine! INVALID_ARGUMENT: Network 'default' does not exist

2020-03-18 Thread Mua Rachmann
Hi,

You need to have added the tags before you can use them in your app.yaml
file. Refer to this
https://cloud.google.com/vpc/docs/add-remove-network-tags you can create
the tags via the console or via
gcloud command as follows

gcloud compute instances add-tags [INSTANCE-NAME]  --zone [ZONE]  --tags
[TAGS]

Only then you can use them in your app.yaml file. As of now that error is
due to no network tags being
created prior to deployment. I hope this helps.

Cheers,
Mua

On Wed, Mar 18, 2020 at 2:34 PM Ben Abdesslem Sarah <
sarahbenabdess...@gmail.com> wrote:

> Hello,
>
> Thank you, you're right for the identation.
> But now I'm getting another error about the network.
> At this line in app.yaml : "name: mynetwork "
>
> Here is the error message:
> Finished Step #1
> PUSH
> DONE
>
> 
>
> ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: Network 'mynetwork' does not
> exist
>
> And that's my app.yaml file :
>
> runtime: php
> env: flex
>
> runtime_config:
>  document_root: public
>
> skip_files:
>  - .env
>
> network:
>   instance_tag: aef-instance
>   name: mynetwork
>   subnetwork_name: subnetwork1
>
> env_variables:
>  APP_ENV: local
>  APP_DEBUG : true
>  APP_KEY: base64:/iOQ=
>  APP_STORAGE: /tmp
>  VIEW_COMPILED_PATH: /tmp
>
>  CACHE_DRIVER: database
>  SESSION_DRIVER: database
>  APP_LOG: daily
>  APP_TIMEZONE: UTC
>  DB_CONNECTION: mysql
>  DB_HOST: localhost
>  DB_PORT: 3306
>  DB_DATABASE: **
>  DB_USERNAME: root
>  DB_PASSWORD: **
>  DB_SOCKET: /cloudsql/*:europe-west1:*
>
>  QUEUE_DRIVER: database
>  MAIL_MAILER: smtp
>  MAIL_HOST: smtp.mailtrap.io
>  MAIL_PORT: 2525
>  MAIL_USERNAME: null
>  MAIL_PASSWORD: null
>
>  GOOGLE_VISION_PROJECT_ID : *
>
>
>
>
> Thanks in advance !!!
>
> Le lun. 16 mars 2020 à 23:28, Mua Rachmann  a
> écrit :
>
>> The error indicates your yaml file is not properly formatted.
>> Try checking your indentation somewhere. Maybe something is not well
>> aligned or given more spacing somewhere.
>> Generally it is two(2) spacing something of the sort. Let me know if the
>> error still persists. For instance take a look at your
>>
>> beta_settings:
>>cloud_sql_instances: 
>>
>> It is way much indented than the others
>>
>> Best,
>> Mua
>>
>>
>> On Mon, 16 Mar 2020 at 22:06 Ben Abdesslem Sarah <
>> sarahbenabdess...@gmail.com> wrote:
>>
>>> Hello,
>>>
>>> This doesn't work. I don't know what to put there on the instance_tag.
>>> And I have read so many times the Google documentation about Network
>>> settings.
>>>
>>> C:\Users\someproject>gcloud app deploy
>>> ERROR: (gcloud.app.deploy) An error occurred while parsing file:
>>> [C:\Users\someproject\app.yaml]
>>>   in "C:\Users\someproject\*app.yaml", line 42, column 17*
>>>
>>> The line 42 is *instance_tag: aef-instance*
>>>
>>>  network:
>>>   instance_tag: aef-instance
>>>   name: mynetwork
>>>   subnetwork_name: subnetwork1
>>>
>>> If someone could help me, it will be really nice. Thank you in advance
>>> !
>>>
>>> Le lun. 16 mars 2020 à 12:36, 'methkal' via Google App Engine <
>>> google-appengine@googlegroups.com> a écrit :
>>>
>>>> *instane_tag* can be anything of your choice. you can use for example
>>>> "aef-instance". this tag is assigned to each instance of the service upon
>>>> its creation.
>>>> The network *name *has to be the short name not the resource
>>>> path  (for example, *mynetwork* rather than 
>>>> *https://www.googleapis.com/compute/v1/projects/my-project/global/networks/mynetwork
>>>> <https://www.googleapis.com/compute/v1/projects/my-project/global/networks/mynetwork>*
>>>> ).
>>>> For *subnetwork_name *use also the short name like *subnetwork1*
>>>> rather than 
>>>> *https://www.googleapis.com/compute/v1/projects/my-project/global/networks/default/subnetworks/subnetwork1
>>>> <https://www.googleapis.com/compute/v1/projects/my-project/global/networks/default/subnetworks/subnetwork1>*
>>>>
>>>> check this page for more information
>>>> <https://cl

Re: [google-appengine] Re: Deploy Laravel app on google app engine! INVALID_ARGUMENT: Network 'default' does not exist

2020-03-16 Thread Mua Rachmann
The error indicates your yaml file is not properly formatted.
Try checking your indentation somewhere. Maybe something is not well
aligned or given more spacing somewhere.
Generally it is two(2) spacing something of the sort. Let me know if the
error still persists. For instance take a look at your

beta_settings:
   cloud_sql_instances: 

It is way much indented than the others

Best,
Mua


On Mon, 16 Mar 2020 at 22:06 Ben Abdesslem Sarah <
sarahbenabdess...@gmail.com> wrote:

> Hello,
>
> This doesn't work. I don't know what to put there on the instance_tag.
> And I have read so many times the Google documentation about Network
> settings.
>
> C:\Users\someproject>gcloud app deploy
> ERROR: (gcloud.app.deploy) An error occurred while parsing file:
> [C:\Users\someproject\app.yaml]
>   in "C:\Users\someproject\*app.yaml", line 42, column 17*
>
> The line 42 is *instance_tag: aef-instance*
>
>  network:
>   instance_tag: aef-instance
>   name: mynetwork
>   subnetwork_name: subnetwork1
>
> If someone could help me, it will be really nice. Thank you in advance !
>
> Le lun. 16 mars 2020 à 12:36, 'methkal' via Google App Engine <
> google-appengine@googlegroups.com> a écrit :
>
>> *instane_tag* can be anything of your choice. you can use for example
>> "aef-instance". this tag is assigned to each instance of the service upon
>> its creation.
>> The network *name *has to be the short name not the resource path  (for
>> example, *mynetwork* rather than 
>> *https://www.googleapis.com/compute/v1/projects/my-project/global/networks/mynetwork
>> *
>> ).
>> For *subnetwork_name *use also the short name like *subnetwork1* rather
>> than 
>> *https://www.googleapis.com/compute/v1/projects/my-project/global/networks/default/subnetworks/subnetwork1
>> *
>>
>> check this page for more information
>> 
>>
>> if that doesn't work. can you post the error that you receive after these
>> modifications?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-appengine+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-appengine/16fbc448-a895-4e94-8a08-ec913b1181e2%40googlegroups.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/CAFgsb9a2yQDdk5PV8-m0cDTrDgJZTQT3k%2Bn2CrOgRsE5NTTkOw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-jvcp4hSaKSTymNmtJCDRf6sPN%2BSDsuWCS_x4gL9Pv9Lw%40mail.gmail.com.


Re: [google-appengine] Re: Connecting CloudSQL using App Engine in PHP 7.2

2020-03-16 Thread Mua Rachmann
Hi Emanuel,

The documentation has the steps clearly stated. Please check that you are
doing the correct thing and actually your environment variables
are being actually set and passed correctly to perform the connection.

If you need help. Feel free to ask.

Regards,
Mua

On Mon, Mar 16, 2020 at 12:35 PM Emanuel Allen 
wrote:

> dam... why is this so hard, i'm struggling with trying to get my app
> engine to connect to google cloud mysql... it shouldn't be this hard to do!
> it really shouldn't be... google should have examples after examples after
> examples of this to help us out. it shouldn't be this hard.
>
> On Tuesday, January 28, 2020 at 10:02:35 AM UTC-5, Brandon Zukowski wrote:
>>
>> Hi there, we are trying to open a connection to our CloudSQL instance and
>> perform queries using App engine and PHP 7.2, but we keep getting a "get
>> address not found" error. Any help would be appreciated!
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/90b94163-bf83-4ddc-a1d9-88fefa5d2301%40googlegroups.com
> 
> .
>


-- 

*MUA N. LAURENT*: Lead Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-jJxWAq-e7YsH19K15WyAD-g4aBKdUtmpGmXQW--DOY0w%40mail.gmail.com.


Re: [google-appengine] Trouble to deploy and download dependencies

2020-02-13 Thread Mua Rachmann
Xcode is a tool for Mac OS if I am not mistaken.
You should try to look for a windows installation guide rather else I doubt
it will go through.

Regards,
Mua

On Thu, 13 Feb 2020 at 15:18 Dongcheng Li  wrote:

> Thank you. It passed this step. However, another issue appear
>
> Windows is now supported as of version 1.11. In the scripts directory,
> there are two batch files:
>
>- windows_start_local.bat starts a local dev server so you can explore
>Course Builder in your browser for testing.
>- windows_deploy.bat deploys your application to Google App Engine.
>
> Note: If you have an older version of Windows, you may need to manually
> download Cygwin . Watch the terminal for errors
> and instructions.
>
> When I run  windows_start_local.bat   OR  windows_deploy.bat,  the window
> of Command Prompt showed
> [image: image.png]
>
> I am wondering how I can run $ xcode-select --install from Command Prompt.
>
> Thank you for your help.
>
> DC
>
>
>
>
> On Wed, Feb 12, 2020 at 5:17 PM 'Andrew Gorcester' via Google App Engine <
> google-appengine@googlegroups.com> wrote:
>
>> Hi, you're probably looking at the Course Builder documentation on a
>> windows machine, right? You can install Cygwin, or if you have Windows 10,
>> you can instead install Windows Subsystem for Linux, and that should get
>> you a command prompt from which you can run bash without issue.
>>
>> On Wed, Feb 12, 2020, 1:45 PM Dongcheng Li  wrote:
>>
>>>
>>> Before you deploy, ensure you have all the things (like libraries, other
>>> software) you need to be successful. The deploy script mentioned in the
>>> section below will try to download any dependencies also, but in this step
>>> you will get more messages about the process. These messages may help you
>>> if anything is wrong. To download dependencies, open a command prompt and
>>> get to your coursebuilder directory. Type the following command:
>>>
>>> bash ./scripts/common.sh
>>>
>>>
>>> I am stuck on this step. After type this command, it showed
>>>
>>> [image: 1581542250(1).png]
>>>
>>> Does anyone know what caused it? Any clue? Thanks.
>>>
>>> DC
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google App Engine" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-appengine+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-appengine/a9745897-36db-4ca8-a434-7cc9dd747a9c%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-appengine+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-appengine/CANtYgF%2BCZKCS72VJ5-WMGN%3DQn1XNfTmm8KRc%2BDFp1XJaz8eTHA%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/CALkCzHZM%3DpsOuSQuwRLYMcipy%3D_FDkoPirKS-DZujrph-Yae%3DA%40mail.gmail.com
> 
> .
>
-- 

*MUA N. LAURENT*: Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-hfyrSuLbGP8_3F52Vmh7hHT94eHbDJ6PJiNe%3DwiNeDgw%40mail.gmail.com.


Re: [google-appengine] PHP project deployment generates unknown errors suddenly

2020-02-04 Thread Mua Rachmann
Hi,

Did you upgrade the gcloud sdk and tools/components... Looks like it is
something with ur python version and also it is worth nothing that the
gcloud updated to python 3 since python 2 is at EOL, and that works fine.
You might want to re-install the sdk with python3 and try again.


Regards,
Mua

On Tue, 4 Feb 2020 at 16:01 Amit Lahiri  wrote:

> Till yesterday, everything was good, able to deploy simple PHP project
> successfully from Google Cloud SDK Shell. But suddenly, receive the below
> errors list at the end. Do not understand why this happens. Also, do not
> understand why Python erros are showing.
>
> File upload done.
> Updating service [default]...failed.
> ERROR: (gcloud.app.deploy) Error Response: [9] Cloud build
> 466aef5a-213e-41c2-a6c9-e61ec6b09631 status: FAILURE.
> Error ID: F220AEAA.
> Error type: BuildError.
> Error message: INFO FTL version php-v0.17.0
> INFO Beginning FTL build for php
> INFO FTL arg passed: exposed_ports None
> INFO FTL arg passed: cache_repository
> us.gcr.io/phpdemo-264019/app-engine-tmp/build-cache/ttl-7d
> INFO FTL arg passed: tar_base_image_path None
> INFO FTL arg passed: export_cache_stats False
> INFO FTL arg passed: builder_output_path ""
> INFO FTL arg passed: name
> us.gcr.io/phpdemo-264019/app-engine-tmp/app/ttl-2h:42d9d331-c653-427c-a832-b0d8bf37ea36
> INFO FTL arg passed: ttl 168
> INFO FTL arg passed: global_cache False
> INFO FTL arg passed: cache True
> INFO FTL arg passed: upload True
> INFO FTL arg passed: sh_c_prefix False
> INFO FTL arg passed: fail_on_error True
> INFO FTL arg passed: base
> us.gcr.io/gae-runtimes/php72:php72_20191020_7_2_23_RC00
> INFO FTL arg passed: output_path None
> INFO FTL arg passed: cache_key_version v0.17.0
> INFO FTL arg passed: cache_salt
> INFO FTL arg passed: directory /workspace
> INFO FTL arg passed: entrypoint None
> INFO FTL arg passed: additional_directory /.googleconfig
> INFO FTL arg passed: destination_path /srv
> INFO FTL arg passed: verbosity NOTSET
> INFO starting: full build
> INFO starting: builder initialization
> INFO Loading Docker credentials for repository '
> us.gcr.io/gae-runtimes/php72:php72_20191020_7_2_23_RC00'
> INFO Loading Docker credentials for repository '
> us.gcr.io/phpdemo-264019/app-engine-tmp/app/ttl-2h:42d9d331-c653-427c-a832-b0d8bf37ea36
> '
> INFO builder initialization took 0 seconds
> INFO starting: build process for FTL image
> INFO starting: rm_vendor_dir
> INFO rm_vendor_dir rm -rf /workspace/vendor
> INFO `rm_vendor_dir` stdout:
>
> INFO rm_vendor_dir took 0 seconds
> INFO build process for FTL image took 0 seconds
> INFO full build took 0 seconds
> Traceback (most recent call last):
>   File "/usr/lib/python2.7/runpy.py", line 174, in _run_module_as_main
> "__main__", fname, loader, pkg_name)
>   File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
> exec code in run_globals
>   File "/usr/local/bin/ftl.par/__main__.py", line 65, in 
>   File "/usr/local/bin/ftl.par/__main__.py", line 54, in main
>   File "/usr/local/bin/ftl.par/__main__/ftl/php/builder.py", line 49, in
> Build
>   File "/usr/local/bin/ftl.par/__main__/ftl/php/layer_builder.py", line
> 57, in BuildLayer
>   File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
> return _default_decoder.decode(s)
>   File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
> obj, end = self.raw_decode(s, idx=_w(s, 0).end())
>   File "/usr/lib/python2.7/json/decoder.py", line 380, in raw_decode
> obj, end = self.scan_once(s, idx)
> ValueError: Expecting property name: line 4 column 5 (char 59).
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/3a7a748d-1d38-4d0d-9368-500034423cf3%40googlegroups.com
> 
> .
>
-- 

*MUA N. LAURENT*: Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-g5BLaVuXr%2Bx_%3DCTp9%3D7DYS0wXDSg3kRVfjvC97%3DD-DAw%40mail.gmail.com.


Re: [google-appengine] Connecting CloudSQL using App Engine in PHP 7.2

2020-01-28 Thread Mua Rachmann
Hi Brandon,

All should be fine if your *app.yaml* file has the correct credentials.
Something like

  *DB_CONNECTION*: mysql
  *DB_HOST*: localhost
  *DB_DATABASE*: xx
  *DB_USERNAME*: xxx
  *DB_PASSWORD*: 
  *DB_SOCKET*: /cloudsql/::

And have this also in your app.yaml

*beta_settings:*
  # for Cloud SQL, set this value to the Cloud SQL connection name,
  *cloud_sql_instances*: ::

Give these a try and let me know if the error persist. Also ensure you have
the instance up and running.

Cheers,
Mua


On Tue, Jan 28, 2020 at 4:02 PM Brandon Zukowski 
wrote:

> Hi there, we are trying to open a connection to our CloudSQL instance and
> perform queries using App engine and PHP 7.2, but we keep getting a "get
> address not found" error. Any help would be appreciated!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/7361d228-e5b5-46e8-ad93-4fe29da02c96%40googlegroups.com
> 
> .
>


-- 

*MUA N. LAURENT*: Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-jd1Z2zqs7XJ6qMh6Cx_Dt3dbYMqR0JaT7Y0yb2Jm55Kg%40mail.gmail.com.


Re: [google-appengine] Connect custom domain to GAE application

2020-01-06 Thread Mua Rachmann
Hi,

Mapping to custom domain names might take some time 2- 4 hours, also I see
an already connected to project. Is this the current project
being used?

Cheers,
Mua

On Mon, Jan 6, 2020 at 2:19 PM Mage Inventors 
wrote:

> I have successfully completed the steps 1 and 2 as mentioned in the App
> Engine documentation.
> 
>  But
> unable to proceed with step 3. I have hosted my site on
> scholarity-app-release.appspot.com but my doman is not connected yet to
> the app engine and
>
>  shows error 404.
>
> Attaching screenshots of the records I have added in my domain registrar
> and the steps completed in Google App Engine. How shall I proceed further?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/90ebf951-80df-4a6f-9abf-c737427316b7%40googlegroups.com
> 
> .
>


-- 

*MUA N. LAURENT*: Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-jHFLy9-9xbvB-tGU%2BV2P6wXAF-6bPETTEDVrLWrymR2g%40mail.gmail.com.


Re: [google-appengine] Re: GCLOUD SDK Support For Python 3

2019-12-21 Thread Mua Rachmann
Hi George,

Thanks for your reply, just to let you know and everyone on the lost I just
received an email that the GA support for python 3 has been released since
python 2 will be at EOL January 2020. This is good news.

Regards,
Mua

On Fri, Dec 20, 2019, 16:50 'George (Cloud Platform Support)' via Google
App Engine  wrote:

> Hello Mua,
>
> It is difficult to predict if installation of the gcloud tools/sdk on
> python3 environment  will be supported, and when, as decisions on
> development paths may be taken or altered at any moment. You may refer to
> the Understanding differences between the Python 2 and Python 3
> environments
> 
> page, and contained links for related information.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/dc6a2880-cf19-4643-8599-97da85850fd5%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-jVBjPbggfbHpYuS9PD4qPt2TNVU-M%2BZx8JOX1ZcgiJOQ%40mail.gmail.com.


[google-appengine] GCLOUD SDK Support For Python 3

2019-12-18 Thread Mua Rachmann
Hi Everyone,

Just curious about if there is an ETA on supporting the installation of the
gcloud tools/sdk on python3 environment.

Cheers,
Mua
-- 

*MUA N. LAURENT*: Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-jiMOaRMOJsrMoEkhNcZhio-RO3%2Bgk13RSNVU6WKzhdBw%40mail.gmail.com.


Re: [google-appengine] Can not show data when debugging on source tab with react js

2019-12-16 Thread Mua Rachmann
Hi Khang!

You can find many resources on React out there. This list is mainly for
discussion about app-engine related stuffs.
A good alternative will be stackoverflow

Cheers,
Mua


On Mon, Dec 16, 2019 at 2:23 PM Khang Dong  wrote:

> Yesterday, It was normal.
> But right now, I can not see the data when debug it. I just see data when
> I copy that element to Watch.
>
> This is my attact file. Please help me to check it.
>
> Thank you!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/3a1cb052-2173-4dfe-8234-4e9fbf64be77%40googlegroups.com
> 
> .
>


-- 

*MUA N. LAURENT*: Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-gp_WiL38TfiZqjNAGyHmghwha2cYNwyn%3DXv1rrPDpVbg%40mail.gmail.com.


Re: [google-appengine] NEED HELP CREATING MY APP AND LAUNCHING ON GOOGLE CONSOLE

2019-12-02 Thread Mua Rachmann
Hi Vanessa,

While I would gladly be willing to help you out, it also depends on the
type of app you are willing to deploy.
Generally the documentation provides a step by step way to deploy your app
be it java, python, php etc
https://cloud.google.com/docs/

However this list is more about general questions and discussions about the
Google Cloud Platform App Engine.
More specifics about the app you are willing to deploy may be helpful

Cheers,
Mua


On Tue, Dec 3, 2019 at 5:00 AM Vanessa Bush  wrote:

> I have a google developer account and google platform, im having
> difficulties putting everything together, anyone able to assist me please,i
> ll add you to my email list so you could access my account
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/657d98c8-a121-4a80-921b-1ff754f56cfb%40googlegroups.com
> 
> .
>


-- 

*MUA N. LAURENT*: Software Engineer
Akivas Inc. 
Akwa, Douala,CM 00237 | 174 Royal Rd, Cape Town, WC 7405, SA
Phone: (237) 670-518-086

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-irFct4x0tJZMB%2BqWNpYX%3DynDzybUGVZVPZv8bM_5E_TQ%40mail.gmail.com.


Re: [google-appengine] Re: CloudBuild Issues

2019-10-16 Thread Mua Rachmann
Ok thanks :)

On Wed, Oct 16, 2019 at 2:05 PM 'Yasser Karout' via Google App Engine <
google-appengine@googlegroups.com> wrote:

> Incidents are usually posted the Cloud Status Dashboard [1]. But incidents
> affecting a limited number of projects such as this issue might not be
> listed [2]. You can either contact Support [3] or open a new issue on the
> Issue Tracker site if you believe the problem is on the Google Side.
>
> [1] https://status.cloud.google.com/
> [2]
> https://cloud.google.com/support/docs/dashboard#what_if_i_am_experiencing_an_issue_but_it_is_not_listed_on_the_dashboard
> [3] https://cloud.google.com/support/
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/c00365c9-c2ba-48ae-9ac0-5f633dea022a%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-ibRWVikReqdzQQyG%2BYvJBbHgZr7TZ6dSuk%3DKYFwwfgGw%40mail.gmail.com.


Re: [google-appengine] Re: CloudBuild Issues

2019-10-15 Thread Mua Rachmann
Yes noticed that, deployed several times and kept giving me time out
errors, could one be notified before hand if such
arises?

On Tue, Oct 15, 2019 at 8:21 PM 'Yasser Karout' via Google App Engine <
google-appengine@googlegroups.com> wrote:

> Hello,
>
> There was an issue on our side earlier today with App Engine Flexible
> deployments. It is now resolved.
>
> If this is still happening can you create an issue on the Issue Tracker
> website [1]? If you want to include your project information, you can use
> the GCP Private Issues component to keep your information safe.
>
> [1] https://issuetracker.google.com/
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/94408a93-820f-4117-a2bd-c900eb2f0f43%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-iCgZsXHY0fTfqkDQ3g5_gTFH-ApLbGhGXT2iX_1Wd4UQ%40mail.gmail.com.


[google-appengine] Change Default Timezone on cloud Sql instance

2019-10-01 Thread Mua Rachmann
Hi,

I have been trying to change the default timezone in the cloud sql instance
to no avail. i keep getting the default timezone of  *date: 2019-10-01
08:39:19.785535 America/New_York (-04:00) *for example when when i echo the
date time. I have followed the instructions on changing the flags here
https://cloud.google.com/sql/docs/mysql/flags#mysql-d and changed several
times and it prompts me to restart, yet it keeps giving me the same time
offset of new york.

How can this be fixed? please. Currently my app needs to be accessed by
various countries but  this limits it.

Regards,
Mua

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-j3oxrPwag5xVqfF8%2B5qRurXjJM4xaSnbJCLt1ShEiySg%40mail.gmail.com.


Re: [google-appengine] Using autoload php

2019-09-26 Thread Mua Rachmann
You will need to import it in the file, smart IDE's like phpstorm, vscode
can do that once you start typing.
Also ensure you have the dependency in your composer.json
file "google/cloud-storage" or other libraries that have the storage
cloud stuff.

Hope it helps.

Mua

On Thu, Sep 26, 2019 at 2:45 PM sampath rathnayake <
sampath.rathnay...@gmail.com> wrote:

> Hi All,
>
> I'm new to app engine and trying create a app from a sample code.
> Can anyone please tell me what is the use of
>
> require_once __DIR__ . '/vendor/autoload.php';
>
> Is this set of libraries we need to download?
> I'm developing/test locally and deploying in to gcloud project using
> 'gcloud app deploy'
>
> I can use
> use google\appengine\api\users\User;
>
> but I cannot use
> use google\cloud\storage\StorageClient;
>
> *Fatal error*: Class 'google\cloud\storage\StorageClient' not found in
> *C:\Users..*
>
> Is there a component to install for cloud storage?
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/a60c5004-7fc4-4cf3-8d6d-bbad3a073cc1%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-jgAr8104YtY%3Do9Z53ESrNNSk6%3DzYLZyNPLOUizR4ak%2BA%40mail.gmail.com.


Re: [google-appengine] Google AppEngine Flexible PHP - "SQLSTATE[HY000] [2002] No such file or directory"

2019-09-11 Thread Mua Rachmann
Hi Hampus,

Is your app.yaml file well configured with the database credentials? such
as connection name, database name etc etc.

DB_CONNECTION: mysql
DB_HOST: localhost
DB_DATABASE: xxx
DB_USERNAME: xx
DB_PASSWORD: xxx
DB_SOCKET: /cloudsql/:us-central1:


If running on beta

beta_settings:
  # for Cloud SQL, set this value to the Cloud SQL connection name,
  cloud_sql_instances: :us-central1:

You might want to check if you did not maybe omit something. Talking prior
to the fact you said it worked a couple
of days ago.

Regards,
Mua

On Wed, Sep 11, 2019 at 12:51 PM Hampus Boås 
wrote:

> Hello,
>
> I have several projects on Google AppEngine Flexible, but one of my
> projects randomly after a couple of days looses the ability to connect to
> the database.
>
> I'm using the unix socket to connect and i have SQL Admin activated. If i
> debug the sql instance and the flexible instance they are both up and
> running.
>
> My DB User has privileges from any host.
>
> The PDO error says "SQLSTATE[HY000] [2002] No such file or directory".
>
> This has happen a couple of times now.
>
> Has someone have this issues before?
> I don't really know what to do here.
>
> Best regards Hampus
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/ecec867c-ebeb-4093-b603-127ed9e03449%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-i1B07c09e%3Dc-JGAj1%2BXNQ92nv74sSvZARYOrqcq3WgEQ%40mail.gmail.com.


Re: [google-appengine] How to add new domain to app engine

2019-08-28 Thread Mua Rachmann
Hi Szymon,

You can log into your GCP, hover on the app engine tab and select settings,
from there you will see the
custom domain name tab. Click on it and add your domain name.
PS:- Google must first verify this then proceed by activating it which
takes about 4- 8  hours mine took about 4 I think.

This should help too -
https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains

Best,
Mua

On Wed, Aug 28, 2019 at 5:31 PM Szymon Ciba  wrote:

> Hello,
>
> I have my engine app here:
> http://inplitest.appspot.com/
>
> And i want to change my domain from inplitest.appspot.com to ,,
> projektecommerce.pl" but i can't do this...
>
> Can you help me?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/b6f977a5-7cbd-4746-aeba-ad2e492456f1%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-gRpHf1UTRdGbpiMQfEkn4EyL7orhH11dUm7qM8ENM_Ow%40mail.gmail.com.


Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
If that sucks, You might want to have a look at this
https://github.com/junosuarez/node-level-export

Best,
Mua

On Tue, Aug 27, 2019 at 2:20 AM Mua Rachmann  wrote:

> Okay, I think you might want to look at
> https://github.com/nisaacson/leveldb-json/issues/1 which is pretty
> similar to your logs,
> Also you might want to build from source and consider a fork of the
> original repo - https://github.com/killix/leveldb-json
> which seems to solve the issue. Dependencies not being upgraded or so. -
> Basically applying -
> https://github.com/killix/leveldb-json/commit/35df5f3d396907e015527984aa03e13726e9e386
>
> Can you try that and see if it solves your problem
>
> Regards,
> Mua
>
> On Tue, Aug 27, 2019 at 2:13 AM Han Ju Kim  wrote:
>
>> This is my log. When I tried to "npm install -g leveldb-json", it comes up
>>
>> C:\WINDOWS\system32>npm install -g leveldb-json
>> C:\Users\hkim\AppData\Roaming\npm\leveldb-load-from-json ->
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\load-from-json
>> C:\Users\hkim\AppData\Roaming\npm\leveldb-dump-to-json ->
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\dump-to-json
>>
>> > leveldown@0.10.6 install
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
>> > node-gyp rebuild
>>
>>
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown>if
>> not defined npm_config_node_gyp (node "C:\Program
>> Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js"
>> rebuild )  else (node "C:\Program
>> Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js"
>> rebuild )
>> gyp ERR! configure error
>> gyp ERR! stack Error: Command failed: C:\Python37\python.EXE -c import
>> sys; print "%s.%s.%s" % sys.version_info[:3];
>> gyp ERR! stack   File "", line 1
>> gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
>> gyp ERR! stack^
>> gyp ERR! stack SyntaxError: invalid syntax
>> gyp ERR! stack
>> gyp ERR! stack at ChildProcess.exithandler (child_process.js:294:12)
>> gyp ERR! stack at ChildProcess.emit (events.js:198:13)
>> gyp ERR! stack at maybeClose (internal/child_process.js:982:16)
>> gyp ERR! stack at Process.ChildProcess._handle.onexit
>> (internal/child_process.js:259:5)
>> gyp ERR! System Windows_NT 10.0.18362
>> gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program
>> Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js"
>> "rebuild"
>> gyp ERR! cwd
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
>> gyp ERR! node -v v10.16.3
>> gyp ERR! node-gyp -v v3.8.0
>> gyp ERR! not ok
>> npm ERR! code ELIFECYCLE
>> npm ERR! errno 1
>> npm ERR! leveldown@0.10.6 install: `node-gyp rebuild`
>> npm ERR! Exit status 1
>> npm ERR!
>> npm ERR! Failed at the leveldown@0.10.6 install script.
>> npm ERR! This is probably not a problem with npm. There is likely
>> additional logging output above.
>>
>> npm ERR! A complete log of this run can be found in:
>> npm ERR!
>>  
>> C:\Users\hkim\AppData\Roaming\npm-cache\_logs\2019-08-27T01_11_59_731Z-debug.log
>>
>> C:\WINDOWS\system32>
>>
>> On Tuesday, 27 August 2019 13:10:37 UTC+12, Mua Rachmann wrote:
>>>
>>> Hi Kim,
>>>
>>> Can we see the logs here?
>>>
>>> On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:
>>>
>>>> Hi Mua,
>>>>
>>>> I appreciate prompt feedback! I already tried that, but it showed some
>>>> error and not updated quite long time period. Any help will be appreciated.
>>>>
>>>> Cheers,
>>>> Han
>>>>
>>>> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>>>>>
>>>>> Hi Kim,
>>>>>
>>>>> You might want to have a look at this -
>>>>> https://github.com/nisaacson/leveldb-json
>>>>>
>>>>> regards.
>>>>> Mua
>>>>>
>>>>> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:
>>>>>
>>>>>> I'm trying to export Datastore entities as JSON format. By using API
>>>>>> or gsutil such as "gcloud datastore export", it only export as LevelDB
>>>

Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
Okay, I think you might want to look at
https://github.com/nisaacson/leveldb-json/issues/1 which is pretty similar
to your logs,
Also you might want to build from source and consider a fork of the
original repo - https://github.com/killix/leveldb-json
which seems to solve the issue. Dependencies not being upgraded or so. -
Basically applying -
https://github.com/killix/leveldb-json/commit/35df5f3d396907e015527984aa03e13726e9e386

Can you try that and see if it solves your problem

Regards,
Mua

On Tue, Aug 27, 2019 at 2:13 AM Han Ju Kim  wrote:

> This is my log. When I tried to "npm install -g leveldb-json", it comes up
>
> C:\WINDOWS\system32>npm install -g leveldb-json
> C:\Users\hkim\AppData\Roaming\npm\leveldb-load-from-json ->
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\load-from-json
> C:\Users\hkim\AppData\Roaming\npm\leveldb-dump-to-json ->
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\dump-to-json
>
> > leveldown@0.10.6 install
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
> > node-gyp rebuild
>
>
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown>if
> not defined npm_config_node_gyp (node "C:\Program
> Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js"
> rebuild )  else (node "C:\Program
> Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js"
> rebuild )
> gyp ERR! configure error
> gyp ERR! stack Error: Command failed: C:\Python37\python.EXE -c import
> sys; print "%s.%s.%s" % sys.version_info[:3];
> gyp ERR! stack   File "", line 1
> gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
> gyp ERR! stack^
> gyp ERR! stack SyntaxError: invalid syntax
> gyp ERR! stack
> gyp ERR! stack at ChildProcess.exithandler (child_process.js:294:12)
> gyp ERR! stack at ChildProcess.emit (events.js:198:13)
> gyp ERR! stack at maybeClose (internal/child_process.js:982:16)
> gyp ERR! stack at Process.ChildProcess._handle.onexit
> (internal/child_process.js:259:5)
> gyp ERR! System Windows_NT 10.0.18362
> gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program
> Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js"
> "rebuild"
> gyp ERR! cwd
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
> gyp ERR! node -v v10.16.3
> gyp ERR! node-gyp -v v3.8.0
> gyp ERR! not ok
> npm ERR! code ELIFECYCLE
> npm ERR! errno 1
> npm ERR! leveldown@0.10.6 install: `node-gyp rebuild`
> npm ERR! Exit status 1
> npm ERR!
> npm ERR! Failed at the leveldown@0.10.6 install script.
> npm ERR! This is probably not a problem with npm. There is likely
> additional logging output above.
>
> npm ERR! A complete log of this run can be found in:
> npm ERR!
>  
> C:\Users\hkim\AppData\Roaming\npm-cache\_logs\2019-08-27T01_11_59_731Z-debug.log
>
> C:\WINDOWS\system32>
>
> On Tuesday, 27 August 2019 13:10:37 UTC+12, Mua Rachmann wrote:
>>
>> Hi Kim,
>>
>> Can we see the logs here?
>>
>> On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:
>>
>>> Hi Mua,
>>>
>>> I appreciate prompt feedback! I already tried that, but it showed some
>>> error and not updated quite long time period. Any help will be appreciated.
>>>
>>> Cheers,
>>> Han
>>>
>>> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>>>>
>>>> Hi Kim,
>>>>
>>>> You might want to have a look at this -
>>>> https://github.com/nisaacson/leveldb-json
>>>>
>>>> regards.
>>>> Mua
>>>>
>>>> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:
>>>>
>>>>> I'm trying to export Datastore entities as JSON format. By using API
>>>>> or gsutil such as "gcloud datastore export", it only export as LevelDB
>>>>> format with many output-xxx files. Is there any tool to converting this
>>>>> LevelDB files to JSON format or any third party engine to do that?
>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "Google App Engine" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to google-a...@googlegroups.com.
>>>>> To view this discussion on the web visit
>&

Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
Hi Kim,

Can we see the logs here?

On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:

> Hi Mua,
>
> I appreciate prompt feedback! I already tried that, but it showed some
> error and not updated quite long time period. Any help will be appreciated.
>
> Cheers,
> Han
>
> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>>
>> Hi Kim,
>>
>> You might want to have a look at this -
>> https://github.com/nisaacson/leveldb-json
>>
>> regards.
>> Mua
>>
>> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:
>>
>>> I'm trying to export Datastore entities as JSON format. By using API or
>>> gsutil such as "gcloud datastore export", it only export as LevelDB format
>>> with many output-xxx files. Is there any tool to converting this LevelDB
>>> files to JSON format or any third party engine to do that?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google App Engine" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-a...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
>>> <https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/22e67aef-22ad-4dcd-9fdd-ecaaa89539bc%40googlegroups.com
> <https://groups.google.com/d/msgid/google-appengine/22e67aef-22ad-4dcd-9fdd-ecaaa89539bc%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-j2E7jsm7kdhuoCmy7Q3J8bsyROGuWUnpW3AA8xyj%3Dc0A%40mail.gmail.com.


Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
Hi Kim,

You might want to have a look at this -
https://github.com/nisaacson/leveldb-json

regards.
Mua

On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:

> I'm trying to export Datastore entities as JSON format. By using API or
> gsutil such as "gcloud datastore export", it only export as LevelDB format
> with many output-xxx files. Is there any tool to converting this LevelDB
> files to JSON format or any third party engine to do that?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-iXYOuBC%2BhsbRP71WMCkAQvZJQ%3D9dcwXozA6EOYPVjS5A%40mail.gmail.com.


Re: [google-appengine] Re: Viewing App engine Deployed files

2019-08-26 Thread Mua Rachmann
Hello George,

Thanks for your prompt response.

Actually what I meant was viewing the deployed files from the cloud shell
terminal. In my app.yaml file i place a key
APP_STORAGE = /tmp but in the cloud shell when I navigate to this i cant
find the projects files.

Also i need this feature in production to be able to read the laravel logs
founf in the **storage/framework/x.logs**
folder to be able to interprete some results there off. Could this be
possible from the cloud. Generally what I do is a **tail -f .**
which works but I need this  in production to simulate some stuffs.

Best,
Mua

On Tue, Aug 27, 2019 at 12:08 AM 'George (Cloud Platform Support)' via
Google App Engine  wrote:

> Hello Mua,
>
> Artisan is the command-line interface included with Laravel. What do you
> mean by "resolve it on the app engine"? You seem to say you have run
> Artisan commands locally, in your development environment, and you would
> like now to run the same commands to modify your deployed app's code, while
> running in the Cloud and offering service. This is not possible. If you
> modified your app locally, you can modify the deployed app's old version
> only by deploying the new version, and then transferring traffic to this
> deployed new version.
>
> If you want to see your deployed files, you can do that locally, as the
> deployed code is necessarily identical to the local code you deployed.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/33a57c5f-25f6-4f94-9c47-58b2a0b48dd1%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-gG%2BAk2ApjKNvO2hB%3DHVerZPXA8kjoRRSizgKNohm0v8Q%40mail.gmail.com.


[google-appengine] Viewing App engine Deployed files

2019-08-26 Thread Mua Rachmann
Hi everyone,

Have been working with the app engine for quite sometime now and have 
successfully uploaded my application (php - laravel 5.8) to the app engine 
which
works very fine. I have one issue of which i resolved locally but cant seem 
to resolve it on the app engine since i cant view my files or rather "cd 
into my projects root directory" as i will put it. It actually entails 
running the command ** Artisan::call('config:cache') so that my project's 
storage files can be loaded once again. i tried this by passing via a 
controller but this doesn't seem to work.

Question: How can i have access to my projects root directory via the cloud 
shell. opening this via cloud shell shows me other files like 
php-sample-docs etc but i can view my deployed files. Any help will be 
grateful thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9e09ef23-4267-4f1c-b21a-7f27f6ec9cf0%40googlegroups.com.