Hello 'roger-squirrel-mail, > On Wed, 6 Oct 2004, Christopher Wagner wrote:
>> For my part, I'm running Squirrelmail 1.4.3a on Debian and am showing >> quite clearly "Timezone Options" under "Options" then "Personal >> Information". > Okay, ini_get is PHP and is probably looking for a (non-existent?) > php.ini file on my system. Anyone know where Mandrake's PHP looks? I'll > probably have to create one. ini_get is a php function that will return the values that are set in the php.ini or the default variables defined by your build, if a variable is not set, or the php.ini file is not found. Details on the ini_get function can be found here http://php.net/ini_get You could test your PHP install to find out the options that are defined. You can do this by creating a test.php file in your web root. In the file put the following code: <?php phpinfo(); ?> Save the file, then load in your browser, for example http://www.domain.com/test.php. This file will detail extra information about your PHP install. I think Mandrake (and most other installs of PHP) have a php.dist-ini or php.recommended-ini. You can use these as a template for your new php.ini file if you wish to change values. To find out where to put it, look at your test.php file, it'll tell you in there. Don't forget to remove your test file when you're done, it contains a lot of system information you might not want to disclose to people. -- Jonathan Angliss <[EMAIL PROTECTED]> Posting Guidelines: http://www.squirrelmail.org/wiki/?MailingListPostingGuidelines ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: [EMAIL PROTECTED] List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
