search for: session_start

Displaying 15 results from an estimated 15 matches for "session_start".

2013 May 03
1
Race condition in lightdm greeter setup
...t boot time or after logout). I reported this also on Launchpad with more details (https://bugs.launchpad.net/lightdm/+bug/1172752), but to work on a proper fix, ideas on how to fix this would be welcome. During greeter setup "lightdm --session-child" is spawned twice. The first call to session_start() that does fork+execlp() is done from greeter_start() and right after that handle_login() calls session_stop() + session_start(). session_stop() sends SIGTERM to the child process, but if the child has not managed to call execlp() yet, it still has signal handler set for SIGTERM, because fork copi...
2005 Oct 28
4
find_by_sql column types
...m encountering is that all computed columns from MySQL come back as type string. E.g., def self.find_averages(domain_id) if @@domain_average return @@domain_average else @@domain_average = MyDomain.find_by_sql(["select avg(latency) as latency, avg(datediff(session_end, session_start)) as session_duration from live_logs where domain_id=?"], domain_id])[0] end end The problem is that I¹m using a lot of to_f conversions because type coercions are not happening as I would have expected. Again, for example: foo = MyDomain.find_averages(1) bar = foo[:latency] / 3.0 #...
2006 May 23
2
additional fields in session DB table
...on_id(session.session_id) @tmpsess.update_attributes(session_hash) if @tmpsess the logfile then shows : UPDATE phpbb_sessions SET "data" = ''BAh7EjoOZGVmX3N0YXRlIgdOWToIbGF0Zho0MC42NTk5OTk5OTk5OTk5OTcArhQ6DGRlZl9sYXQwOglsb25nZhstNzMuOTgwMDAwMDAwMDAwMDA0AIUfOgh1'', "session_start" = 0, "session_user_id" = 3, "session_admin" = 0, "session_time" = 1148349972, "session_logged_in" = 1, "id" = 22, "session_page" = 0, "session_ip" = ''185afae3'', "updated_at" = ''2006-05-2...
2009 Feb 09
2
Counting session days
hi, I have some session data in a dataframe, where each session is recorded with a start and a stop date. Like this: session_start session_stop =================== 2009-01-03 2009-01-04 2009-01-01 2009-01-05 2009-01-02 2009-01-09 A session is at least one day long. Now I want a dataframe with 'active sessions' per date. Like this: date active_sessions ============= 2009-01-01 1 2009-01-02 2 2009-01-03 3 2009-01-04 3...
2006 Mar 09
2
turn off auto increment
...gt; @session.session_id, "session_user_id" => @entry.user_id, "session_ip" => encode_ip, "session_time" => Time.now } it wont update the session_id as noted here in script/console: >> sess = Session.new => #<Session:0x407683f0 @attributes={"session_start"=>0, "session_time"=>0, "session_ip"=>"0", "session_admin"=>0, "session_page"=>0, "session_logged_in"=>false, "session_user_id"=>0}, @new_record=true> >> sess.session_id => nil >> sess....
2010 Jan 25
1
Web-Meetme 4.0 and Asterisk 1.6.2
Hi, I'm trying to setup Web-Meetme 4.0 and I always get the following warning when I open the default page http://localhost/web-meetme Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/web-meetme/locale.php:36) in /var/www/web-meetme/meetme_control.php on line 34 Has anyone a solution to this? Cheers Joern
2005 May 18
0
caci problem in CentOS-4
...tarted at /var/www/html/cacti/include/config.php:43) in /var/www/html/cacti/include/config.php on line 70 Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/cacti/include/config.php:43) in /var/www/html/cacti/include/config.php on line 71 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /var/www/html/cacti/include/config.php:43) in /var/www/html/cacti/include/config.php on line 74 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/html/cacti/inclu...
2009 Jan 22
2
SquirrelMail Sending Under Wrong Username
CentOS team... as is already bug reported and marked solved... as we await the upstream repair for this. It was reported that this was happening on CentOS 5. You likely already know, but it also happens on CentOS 4. For those unaware. It seems that SquirrelMail has an issue which allows mail to be sent out from one user on the system and it uses the from address of another user on the
2004 Dec 17
2
question about Webtraffic monitoring
Does anyone know a good open source and free webmonitoring software which I can use to monitor some websites and build simple uptime/downtine statistics for my customers (conform SLA's) ? Any help/hitns would be very apperciated :) -- Michiel
2005 Mar 03
0
RE: Getting phpconfig to work?
...logo_link); // init top menu bar $page->OC_HTML_setHeaderBar(array_merge($conf->_OC_conf_dirs , array("Re-Read Configs"=>"phpconfig.php?reset=reset"))); // init side menus $menuList = array(); $rightMenuList = array(); session_start(); // this session variable will be set by a login screen // in a future release // for now, fake it for the prototype $_SESSION['valid_user'] = $fakeuser; $conf->OC_checkValidUser(); if($_GET['file']) // conf file requested via menu How do I proceed...
2005 Mar 03
1
RE: Getting phpconfig to work?
...logo_link); // init top menu bar $page->OC_HTML_setHeaderBar(array_merge($conf->_OC_conf_dirs , array("Re-Read Configs"=>"phpconfig.php?reset=reset"))); // init side menus $menuList = array(); $rightMenuList = array(); session_start(); // this session variable will be set by a login screen // in a future release // for now, fake it for the prototype $_SESSION['valid_user'] = $fakeuser; $conf->OC_checkValidUser(); if($_GET['file']) // conf file requested via menu How do I proceed...
2005 Mar 03
0
RE: Getting phpconfig to work?
...$page->OC_HTML_setHeaderBar(array_merge($conf->_OC_conf_dirs , > array("Re-Read > Configs"=>"phpconfig.php?reset=reset"))); > > // init side menus > $menuList = array(); > $rightMenuList = array(); > > session_start(); > > // this session variable will be set by a login screen > // in a future release > // for now, fake it for the prototype > $_SESSION['valid_user'] = $fakeuser; > > $conf->OC_checkValidUser(); > > if($_GET['file']) // conf...
2009 Aug 26
27
How to stop a user submitting the same data more than once.
I have a standard form built with rails, which a user to my site can use to submit data. Unfortunately one user just managed to submit exactly the the same data three times in a row. From the server logs it seems as though he didn''t use his back button and then resubmit everything. It looks more like he got a bit fed up waiting for the form to process and pressed the submit button three
2005 Mar 03
4
Getting phpconfig to work?
No, I have apache 1.3.33 and mod_ssl 2.8.22 installed. Do I need to have apache2-mod_php installed? Rgds, Julius. > DO you have apache2-mod_php installed ? > > Which distro are you using ? > >> -----Original Message----- >> From: asterisk-users-bounces@lists.digium.com >> [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of >> Julius Kidubuka >>
2008 Jun 12
10
Ajax.Updater not working in IE, tried everything
hi, i am basically using a button, Prototype/AJAX, and PHP to update a user''s location. something simple as typing ''Chicago, IL''. After the script, it rewrites the result in a div tag. here is the form i''m using: <div id="hometown_result">Aurora, IL</div> <form action="" method="post"