Questions tagged [usersession]

81 questions
0
votes
1 answer

Flurry only track my Iphone 6

I followed the installation for Flurry: https://developer.yahoo.com/flurry/#swift1 and I am possible to track User Events and User Sessions. my problem right now is, that I was possible to track a Button on my Iphone 6, but not on my Iphone 5! On my…
0
votes
1 answer

how do iOS apps like foursquare recover user session after the app is uninstalled and reinstalled?

I've noticed some apps like Foursquare and Quiz up automatically recover the user session after the apps are uninstalled and reinstalled, I'm wondering what is the common approach to achieve this, is the user session saved using iCloud? Any hints on…
Andrespch
  • 370
  • 3
  • 16
0
votes
1 answer

What happens to a file if two session of same user in linux

What will happen to a file if I login two times with same user and make some changes to it? Lets say I have logged in with username: goodguy in machine wonderland and editing a text file: pit and I take a ssh session from machine to this user…
vanangamudi
  • 673
  • 1
  • 8
  • 21
0
votes
1 answer

authorization windows phone and problems with user session

I am developing an application on windows phone. Having problems with authorization. Here's the thing. When I send a login request to the server with a username and password if they correct the server returns me id user and redirects to another…
0
votes
2 answers

How to save user session in a variable in PHP to be referenced in JavaScript

Case: User clicks on an image If it is a returning user (user session valid for 30 minutes) navigate to the link of the image If it is a new user show a pop-up div I am now showing the pop-up div whenever the image is being clicked. Any advice on…
Sarah
  • 1,895
  • 2
  • 21
  • 39
0
votes
1 answer

How can I manage a user session in Android using Facebook token?

I created a login Activity using the Facebook sdk. I have access to the user data and I can retrieve the Facebook token. Now I would like to manage the user's session using this token (if the token is invalidated the user is sent to login Activity…
0
votes
1 answer

Get mysql value into php variable

I have a site set up with a mysql DB that stores user data. The database structure looks like this: table = users columns = Id : username : email : password : active Under the column active the value is 1 for active and 0 for deactive When a…
user3902783
0
votes
1 answer

Scaling inquiry for User tokens on NginX, Node(angular), Django Rest Framework environment

For our application we are using AngularJS for frontend making API calls to Django backend. We are projecting to have NginX Webserver in front of Node. Currently we are using Django Rest Framework JWT Authentication to create tokens for users. My…
trex
  • 315
  • 2
  • 4
  • 12
0
votes
1 answer

How does a production deployment for a cloud based software happen?

Lets take the example of a heavily used cloud based software. When a deployment happens, let's say users are online. Won't the server require stop & start after deploy? How is the service continuity maintained? How will the ongoing user sessions /…
MKM
  • 85
  • 10
0
votes
1 answer

QuickBooks Desktop SDK - Is it possible to always open a new company file when making a call with the QuickBooks SDK?

Is it possible to always open a new instance of QuickBooks when making a call to a specific company file using the desktop SDK? I am trying to use a server that is shared by many people to interact with QuickBooks, so it typically has a number of…
someguy0005
  • 125
  • 2
  • 12
0
votes
1 answer

php-fpm freeze user session on ffmpeg exec

I'm have some problem with php-fpm and ffmpeg. If i'm launching encoding from php just with simple exec, then for this certain user who initiate encoding all other php responses seems like a frozen(timeout or ignored). So for this user site becomes…
zr9
  • 516
  • 1
  • 4
  • 13
0
votes
1 answer

User Sessions across devices on Google Analytics Universal

I have a quick question...may sound a little straightforward but still want to throw it out there. I am aware that typically a session is limited to a single browser and client instance. With that said though say a user signs up on your mobile…
lcm
  • 1,737
  • 6
  • 17
  • 40
0
votes
1 answer

Running UI From WCF Hosted Inside WindowService

I have a Window Service thats hosts wcf: protected override void OnStart(string[] args) { if (serviceHost != null) { serviceHost.Close(); } serviceHost = new ServiceHost(typeof('myservicetype')); NetTcpBinding…
user1763180
  • 115
  • 11
0
votes
3 answers

How to determine a user logout in asp.net c#?

I have to maintain the user login and logout time in database. For login its easy but for logout , if I use Application_End () in global.asax for logging. It gives me exception. My Code in asax file: Application_End() { …
0
votes
1 answer

Logging log messages from different user session into different log files

I need to log messages from different user session into different log files. Also roll the log files which are X days old. How can I achieve that? Currently I'm using SLF4j along with Log4j. But I am willing to change my logging framework. I tried…
Nithin Satheesan
  • 1,546
  • 3
  • 17
  • 30