[google-appengine] domains beta app engine integration with ssl

2014-08-25 Thread system
I'm looking at this topic: https://support.google.com/domains/answer/6009957

This looks interesting, but does the new beta domains product support SSL? 
 I'm trying to figure out if I should move over to this.  It's a bit clunky 
administering it inside of Google Apps.

mb

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Naked domain doesn't work with Godaddy and my application

2014-08-25 Thread cahit coşkun
Hi,
I tried to configure a naked domain for my application with the 
instructions 
from https://developers.google.com/appengine/kb/general#naked_domain but it 
doesn't work. I added 4 A and  records to my domain name in Godaddy as 
shown in the documentation. Domain works with "www" subdomain and the 
address is "www.kombiteknisyen.com" but "kombiteknisyen.com" doesn't work.
These are my configurations





-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Unable to view top users ( IP ) anymore in the administration console

2014-08-25 Thread Indiegala support
According GAE docs:

"The Administration Console also allows you to view the top users that have 
recently been hitting your site, even if you haven't uploaded a DoS 
configuration. Select the "Blacklist" link from the side menu, and you 
should see a table of the top IP addresses that have been hitting your 
application and how many requests have been recorded. It will be below the 
table of blacklists, if any. IP addresses that you have blacklisted will 
not show up in this table."

this was possible in the past and i rememeber it, but i am no longer to see 
the top IP addresses anymore now. Is there any problem in GAE or this 
feature has been discarded?

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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] 400 error uploading file via multi-part form (PHP App Engine and SDK)

2014-08-25 Thread cR
Hi, 

I'd really love some help with this. 

Using the same upload example from here; 
https://developers.google.com/appengine/docs/php/googlestorage/user_upload, 
(stored to default bucket) I'm get 400 - bad request in the response. 
Oddly, the file is stored as verified in the Blob Viewer tool, but the file 
isn't available to the $_FILES array in php. I'm therefore unable to deduce 
a link immediately to the uploaded file. 

I thought this was just with the SDK, but it happens on a deployed app too. 

Kindly share any thoughts or help on this. If anyone could try code from 
the above link (with and without the default bucket), that would be good 
too. 

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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Naked domain doesn't work with Godaddy and my application

2014-08-25 Thread Doug Anderson
I assume you fixed it or the DNS had time to propagate because your naked 
domain works for me.

On Monday, August 25, 2014 10:24:14 AM UTC-4, cahit coşkun wrote:
>
> Hi,
> I tried to configure a naked domain for my application with the 
> instructions from 
> https://developers.google.com/appengine/kb/general#naked_domain but it 
> doesn't work. I added 4 A and  records to my domain name in Godaddy as 
> shown in the documentation. Domain works with "www" subdomain and the 
> address is "www.kombiteknisyen.com" but "kombiteknisyen.com" doesn't work.
> These are my configurations
>
>
> 
>
>
> 
>

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Naked domain doesn't work with Godaddy and my application

2014-08-25 Thread David Skinner
I had the same problem. CNAME seem to take effect immediately but the A 
records did not propagate until some time the following day.

Nice site!

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: 400 error uploading file via multi-part form (PHP App Engine and SDK)

2014-08-25 Thread Mars Lan
Did you use a custom domain for your app? Or appspot.com?

On Sunday, August 24, 2014 7:46:20 PM UTC-7, cR wrote:
>
> Hi, 
>
> I'd really love some help with this. 
>
> Using the same upload example from here; 
> https://developers.google.com/appengine/docs/php/googlestorage/user_upload, 
> (stored to default bucket) I'm get 400 - bad request in the response. 
> Oddly, the file is stored as verified in the Blob Viewer tool, but the file 
> isn't available to the $_FILES array in php. I'm therefore unable to deduce 
> a link immediately to the uploaded file. 
>
> I thought this was just with the SDK, but it happens on a deployed app 
> too. 
>
> Kindly share any thoughts or help on this. If anyone could try code from 
> the above link (with and without the default bucket), that would be good 
> too. 
>
> 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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] 400 error uploading file via multi-part form (PHP App Engine and SDK)

2014-08-25 Thread Vinny P
On Sun, Aug 24, 2014 at 9:46 PM, cR  wrote:

> Using the same upload example from here;
> https://developers.google.com/appengine/docs/php/googlestorage/user_upload,
> (stored to default bucket) I'm get 400 - bad request in the response.
> Oddly, the file is stored as verified in the Blob Viewer tool, but the file
> isn't available to the $_FILES array in php.
>
> Kindly share any thoughts or help on this. If anyone could try code from
> the above link (with and without the default bucket), that would be good
> too.
>



Can you call *var_dump($_FILES);* and see if anything is stored there? Is
it empty?

Also call getDefaultGoogleStorageBucketName()
 and
see if the text returned matches the default bucket name.



-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] domains beta app engine integration with ssl

2014-08-25 Thread Vinny P
On Sat, Aug 23, 2014 at 5:30 PM,  wrote:

> I'm looking at this topic:
> https://support.google.com/domains/answer/6009957
>
> This looks interesting, but does the new beta domains product support SSL?
>  I'm trying to figure out if I should move over to this.  It's a bit clunky
> administering it inside of Google Apps.
>


There isn't any App Engine SSL support through the Domains
 service (at least from what I saw).

But SSL for custom domains (without using Apps) should be coming sooner or
later, probably sooner based on recent forum posts such as this one:
https://groups.google.com/d/msg/google-appengine/jC_K-YlmXhM/aqMX7Ap91mIJ


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] 400 error uploading file via multi-part form (PHP App Engine and SDK)

2014-08-25 Thread Vinny P
On Mon, Aug 25, 2014 at 11:22 PM, Vinny P  wrote:

> Also call getDefaultGoogleStorageBucketName()
>  and
> see if the text returned matches the default bucket name.
>


And by that, I mean check to see if the function reports the same name as
the bucket name you're using within your code.


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Naked domain doesn't work with Godaddy and my application

2014-08-25 Thread Vinny P
On Mon, Aug 25, 2014 at 12:47 PM, Doug Anderson  wrote:

> I assume you fixed it or the DNS had time to propagate because your naked
> domain works for me.
>


+1.

I tried the site from multiple computers sitting on different networks and
using different nameservers, they all worked. @OP: are you still
experiencing issues?


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.