[ Index ] |
PHP Cross Reference of Eventum |
[Summary view] [Print] [Text view]
1 =============================================================================== 2 Eventum FAQ 3 =============================================================================== 4 Last updated 2004-06-28 by Bryan Alsdorf <bryan@mysql.com> 5 6 NOTE: this FAQ is a work in progress and will be updated as needed. If 7 you cannot find the answers in this document, please see the eventum mailing 8 list at http://lists.mysql.com/eventum-users. You can search the archive for 9 answers, or subscribe and send your own questions to the list. 10 11 You may also reach the Eventum developers by joining irc.freenode.net on 12 channel #eventum. Help on simple problems can be obtained directly through 13 IRC, but for more complex problems, please send an email to the mailing list 14 above. 15 16 17 =============================================================================== 18 Trouble Shooting 19 =============================================================================== 20 21 Problem: I get the message "Client does not support authentication protocol 22 23 Solution: See http://dev.mysql.com/doc/mysql/en/old-client.html 24 25 =============================================================================== 26 27 Problem: I get the message "Error: Cookies support seem to be disabled in 28 your browser. Please enable this feature and try again". 29 30 Solution: There are many things that could cause this problem. 31 - Double check that cookies are enabled in your browser. 32 - Check that time settings on the client and server are correct. If the client 33 time is set ahead of the server, the cookie could automatically delete 34 itself. 35 - Check if you have a firewall or antivirus program that could be blocking 36 cookies from being set. 37 38 =============================================================================== 39 40 Problem: The filters on /list.php aren't working. 41 42 Solution: Are you using suPHP? There is a known bug in suPHP 43 (see http://lists.marsching.biz/pipermail/suphp/2004-June/000746.html) where if 44 a URL ends with '=', parameters to a page are not processed correctly. Please 45 disable suPHP and see if the problem is fixed. 46 47 =============================================================================== 48 49 Problem: None of the pages work. 50 51 Solution: In the file /path-to-eventum/config/config.php change the following lines 52 53 ini_set("display_errors", 0); 54 error_reporting(0); 55 56 to: 57 58 ini_set("display_errors", 1); 59 error_reporting(E_ALL); 60 61 This enables PHP error reporting so any problems you have will be displayed to 62 the screen when you try to access a page. 63 64 =============================================================================== 65 66 Problem: I get the error "unable to set sender to [@localhost]" 67 68 Solution: Many things can cause this error. Here are a few to check. 69 - Your hostname is set correctly. 70 - Email information is filled out correctly in manage/general.php (web admin 71 page). 72 73 =============================================================================== 74 75 Problem: I get the error "Fatal error: Allowed memory size of 8388608 bytes 76 exhausted" 77 78 Solution: Your PHP memory limit is too low. Try increasing it by adding the line 79 ini_set('memory_limit', '256M'); to /path-to-eventum/config/config.php 80 81 ===============================================================================
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Dec 19 21:21:33 2007 | Cross-referenced by PHPXref 0.7 |