Votes
For: 0 (0%)
Against: 0 (0%)
Total: 0
November 8, 2006 06:44 PM
Andrew Herron
Fatal error: Call to undefined function _() in C:\\www\\bugdar\\includes\\settings.php on line 41
I tried to find what function it was really trying to call, but I wasn't able to trace it.
I tried to find what function it was really trying to call, but I wasn't able to trace it.
November 9, 2006 05:06 AM
Robert
This means that you do not have PHP compiled with GNU Gettext. This isn't a problem unless you want to use a language other than English, if it is then you'll need to recompile PHP with Gettext support.
Anyways, here's the very simple fix:
Open install/global.php and find:
require_once('./includes/permissions.php');
After that, add this line:
require_once('./includes/language.php');
Save the file and it should work.
--------------- AUTOMATIC RESPONSE ---------------
Thank you for your bug report. This issue has been closed and fixed in Subversion. This change will be available in a future release, but you can download the change at any time from the Subversion server.
Anyways, here's the very simple fix:
Open install/global.php and find:
require_once('./includes/permissions.php');
After that, add this line:
require_once('./includes/language.php');
Save the file and it should work.
--------------- AUTOMATIC RESPONSE ---------------
Thank you for your bug report. This issue has been closed and fixed in Subversion. This change will be available in a future release, but you can download the change at any time from the Subversion server.
On November 9, 2006 05:06 AM, Robert changed:
- Summary from "PHP error when trying to install: undefined function _() in includes\\settings.php" to "PHP error when trying to install: undefined function _() in includes\\\\settings.php"
- Status from "Unconfirmed" to "Closed"
- Resolution from "Open" to "Fixed"
- Fixed in Revision from "" to "1277"
On November 9, 2006 05:06 AM, Robert changed:
- Summary from "PHP error when trying to install: undefined function _() in includes\\\\settings.php" to "PHP error when trying to install: undefined function _() in includes/settings.php"