From: Tony G. <Get...@ka...> - 2001-08-30 03:51:09
|
Since these are warnings and not errors, try changing your c:\winnt\php.ini= file. Look for the line that refers to error_reporting. I have mine set = to E_ERROR instead of E_ALL. I turn on E_ALL when I'm testing something or = not getting the result I expect.=20 We're using this in a live trial capacity right now and it works great. = YMMV. :) Tony Gettig Network Administrator Kalamazoo Public Schools >>> Aaron Beckstrom <abe...@he...> 08/29/01 07:42PM >>> I am running phphelpdesk 0.6.16 on a Win2k box with mysql and php = 4 support. I have the db setup and followed all configuration steps in the install file, yet when I go to the site I keep getting variable undefined errors. For example: Warning: Undefined variable: partfound in languages/english.lang.php on = line 256 Warning: Undefined variable: p_id in languages/english.lang.php on line = 258 Warning: Undefined variable: whattodo in config/header.conf.php on line 8 The only strange thing I notice is the links off of the index page have an extra "/" in them. When I change my path in the config file to exclude the last "/" the links look correct, but still will not work. In fact, the variable undefined errors occur even at the first page, before any of the (possibly) incorrect links are used. I have left the trailing "/" in the config file as it says to do for the time being. Is it a problem that I am running this windows? At first glance it looks like the code is portable and should run on any system, though I did not see this mentioned. Any ideas about either the Undefined variable or the extra "/"? Thanks! ******************** Aaron Beckstrom - Network Administrator The Ohio State University ******************** _______________________________________________ Phphelpdesk-help mailing list Php...@li...=20 http://lists.sourceforge.net/lists/listinfo/phphelpdesk-help |
From: Aaron B. <abe...@he...> - 2001-08-30 18:13:20
|
Thanks to all the replied. That definitely did the trick. All of the warnings just made it look worse then it actually was. This package is great so far! Thanks again. > -----Original Message----- > From: Tony Gettig [mailto:Get...@ka...] > Sent: Wednesday, August 29, 2001 11:42 PM > To: abe...@he...; > php...@li... > Subject: Re: [Phphelpdesk-help] (no subject) > > > Since these are warnings and not errors, try changing your > c:\winnt\php.ini file. Look for the line that refers to > error_reporting. I have mine set to E_ERROR instead of E_ALL. > I turn on E_ALL when I'm testing something or not getting the > result I expect. > > We're using this in a live trial capacity right now and it > works great. YMMV. :) > > > Tony Gettig > Network Administrator > Kalamazoo Public Schools > > > > >>> Aaron Beckstrom <abe...@he...> 08/29/01 > 07:42PM >>> > I am running phphelpdesk 0.6.16 on a Win2k box with > mysql and php 4 > support. I have the db setup and followed all configuration > steps in the > install file, yet when I go to the site I keep getting > variable undefined > errors. > > For example: > > Warning: Undefined variable: partfound in > languages/english.lang.php on line > 256 > > Warning: Undefined variable: p_id in > languages/english.lang.php on line 258 > > Warning: Undefined variable: whattodo in > config/header.conf.php on line 8 > > The only strange thing I notice is the links off of the index > page have an > extra "/" in them. When I change my path in the config file > to exclude the > last "/" the links look correct, but still will not work. In fact, the > variable undefined errors occur even at the first page, > before any of the > (possibly) incorrect links are used. I have left the trailing > "/" in the > config file as it says to do for the time being. > Is it a problem that I am running this windows? At > first glance it > looks like the code is portable and should run on any system, > though I did > not see this mentioned. > Any ideas about either the Undefined variable or the extra "/"? > > Thanks! > > ******************** > Aaron Beckstrom - Network Administrator > The Ohio State University > ******************** > > > _______________________________________________ > Phphelpdesk-help mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phphelpdesk-help > > > _______________________________________________ > Phphelpdesk-help mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phphelpdesk-help > |
From: <bd...@nc...> - 2003-01-22 16:35:11
|
Kevin, Thanks, I did that and it has helped somewhat. Now I can bring up the login screen ok and login to the system. After I log in as admin, admin, it brings me to the View all jobs page. This page shows a list of errors: Warning: setcookie() expects parameter 3 to be long, string given in c: \apache\htdocs\phphelpdesk\includes\cookie.inc.php on line 8 Warning: setcookie() expects parameter 3 to be long, string given in c: \apache\htdocs\phphelpdesk\includes\cookie.inc.php on line 9 Warning: setcookie() expects parameter 3 to be long, string given in c: \apache\htdocs\phphelpdesk\includes\cookie.inc.php on line 10 Warning: setcookie() expects parameter 3 to be long, string given in c: \apache\htdocs\phphelpdesk\includes\cookie.inc.php on line 11 Warning: setcookie() expects parameter 3 to be long, string given in c: \apache\htdocs\phphelpdesk\includes\cookie.inc.php on line 12 at the top of the page, with the sample list of jobs underrneath. Unfortunitely every link I click on that page brings me straight back to the index page. For example, if I click on a job, or the add job link I am brought straight back to the index.php page. From the index page, if I click on ay of the department links, I get the same set of errors at the top of the page, with the add job form underneath. If I fill out the form and submit, it brings me bakt to the index page again. IF I log in and view the jobs, there is no sign of the job I submitted. Any ideas? Thanks again, Bryan ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.mimesweeper.com ********************************************************************** |
From: Kevin M. S. <sh...@cg...> - 2003-01-22 16:46:06
|
There is a problem with the cookie.inc.php script. Check inside includes/cookie.inc.php... I made a change for myself a while back. The setcookie call is complaining about parameter 3. That parameter is "$date". you need modify it to look like mine. HTH... -k Here is my cookie.inc.php <?php // Modified by Andrew Walker (ajw...@ho...) // $time = mktime()+$g_cookietimeout; // $date = date("l, d-M-y H:i:s", ($time)); //$date = $time; $date = time()+$g_cookietimeout; if (isset($authentication)) { setcookie("status", $status, $date); setcookie("username", $username, $date); setcookie("group", $group, $date); setcookie("authentication", $authentication, $date); setcookie("laston", $laston, $date); } else { setcookie("status", "Logged In", $date); setcookie("username", $txtUsername, $date); setcookie("group", $row[4], $date); setcookie("authentication", "YES", $date); setcookie("laston", $row[6], $date); } ?> |
From: Rob R. <rob...@ya...> - 2011-10-19 19:12:07
|
...I want to give you an excellent possibility to solve your problems! http://comitemarnebillard.com/friends.page.php?qinhotmailID=70l3 |
From: Rob R. <rob...@ya...> - 2011-11-04 10:46:30
|
..Join us! It’s really cool web-site! http://susungasset.co.kr/m.friends.page.php?dlink_friend_id=25qo5 |