Forum Activity for @dannya

alt=
@dannya
06/16/14 11:56:47PM
584 posts

Google analytics problem


Installation and Configuration

It's in the body of the footer.tpl file. But still nothing in GA
alt=
@dannya
06/14/14 01:50:59AM
584 posts

Google analytics problem


Installation and Configuration

You want me to view source of home page? It does not show up there.
updated by @dannya: 06/14/14 01:51:48AM
alt=
@dannya
06/14/14 01:09:27AM
584 posts

Google analytics problem


Installation and Configuration

So, i did a fresh install. And thats how it looks. But I'm not seeing any data in GA
alt=
@dannya
06/13/14 09:47:28PM
584 posts

Google analytics problem


Installation and Configuration

nothing related to google analytics
alt=
@dannya
06/12/14 09:25:58PM
584 posts

Oneall and custom signup forms


Jamroom Developers

I have a few questions about using the oneall module with custom signup forms

I have custom signup forms for some quotas that require additional information.
I assume for those quotas, I cannot use oneall signup as it would not collect enough information.

How would I let someone sign up as a member with social login and then collect additinal information later in order to move them to another quota?

If I don't use the social login, can I still allow users to manage their social accounts, and share their updates?

How can they control which items in their feed get shared? I ask because we have some custom actions and want to make sure we can control what gets shared.
updated by @dannya: 07/13/14 08:57:29AM
alt=
@dannya
06/12/14 05:36:08PM
584 posts

Google analytics problem


Installation and Configuration

Did all of the above. NO luck.

Which is the correct interface for the GA module (from the screenshot above)?
updated by @dannya: 06/12/14 05:38:40PM
alt=
@dannya
06/12/14 05:13:09PM
584 posts

Redundancy and failover


Installation and Configuration

Ok. I thought we would have this in June. Looks like it's needed to do the redundancy the way i want to do it as well. And really don't want to do my own cdn module until s3 is in place either since i want the cdn to pull from s3.

I'd rather not do my own s3 module if you are doing it soon. Hope it comes sooner rather than later.

That would help!
alt=
@dannya
06/12/14 04:39:37PM
584 posts

Hook for server update.


Jamroom Developers

I want to use the server update in the acp, however, every time i do, i have to go into the server an push the code into my git repo. I'd like to be able to trigger a script to do this whenever the acp update completes.

Is there any way I can hook into the update function to run my own script after it completes?
updated by @dannya: 07/14/14 03:55:24AM
alt=
@dannya
06/12/14 04:33:43PM
584 posts

Redundancy and failover


Installation and Configuration

What if the /media directory directory was S3. Could both instances use the same storage?

Otherwise I figure you would have to mirror the media as well, which would be quita a waste of storage and bandwidth (although more reliable)
alt=
@dannya
06/12/14 04:29:16PM
584 posts

Media storage and caching


Jamroom Developers

Yes, all CDN's work that way.
1. The cdn grabs content from the origin, wheather S3 or anywhere else, through a reverse proxy.
So any object you want delivered through the cdn you deliver through different host.

for example.
i create host cdn.mysite.com. IN the cdn control panel, you define your origin as www.mysite.com.
Now lets say you have an image on the site, such as logo. You would make the request for loge http://cdn.mysite.com/skin/elastic/logo.jpg.
The logo would be deliverred by the CDN. The FIRST time the request is made for the object, it is not on the CDN. So the CDN will redirect the client to http://www.mysite.com/skin/elastic/logo.jpg . HOwever, now the cdn has the object and can deliver it for future requests as long as it remains on the cdn network somewhere. This leads to the second question :refresh.

This works the same way it does on the local cache. There are a number of things to do.

1. You can define the TTL of your objects in the CDN control panel. You can create rules for different object types and directories.
2. All CDN's allow you to do a cache flush and immediately expire all your content so that the cdn must re-fetch all the content. This can be done in the console. However, most also have API's that allow you to trigger the flush from the app. In our case you could add a web hook that triggers a flush on CDN whenever you flush cache in JR.

I've been doing this for 14 years. It really is very easy and most of my cdn customers implement it in under an hour.

That being said, can you give an ETA on the S3 module?
  50