Hi there, i get two errors i can see of
1) [error] [client 127.0.0.1] PHP Notice: Undefined variable: sort_order in
/var/www/Dmoz/index.php on line 178
from apache error logs.. [ line 178 is << if (!is_utf8($sort_order)) >>
]
shouldn't sort order be set on the config.inc.php? I am will include it
anyway,
<?php
$config = array();
$config["categories"] = array(
"Category1",
"Category2",
);
$config["sitetitle"] = "";
$config["sitepath"] = "/Dmoz/";
$config["meta_description"] = "";
$config["about"] = 'Run by <a href="http://phpodpworld.sourceforge.net/
">phpODPWorld</a>.';
$config["webmaster"] = '';
$config["maintenance"] = false;
$config["reset_key"] = "xyz";
$config["show_xml"] = true;
$config["show_type"] = true;
$config["mediadate"] = "list";
$config["locale_name"] = "en_US";
$config["sort_order"] = "aábcçčdđeéèfghijklmnñŋoóòôpqrsštŧuüvwxyzžæäøöå";
$config["sort_ignore_start"] = "";
$config["use_rewrite"] = false;
$config["use_smarty"] = false;
$config["use_logging"] = false;
$config["dbtype"] = "mysql"; // mysql, pgsql, ...
.....couple of more database pass/name not necessary in my belief.
2)i get <<
Unexpected error
*Couldn't set locale (to en_US). *
>> when i try opening index.php. Any ideas?
|