Hopefully it will be in less than 4 hours because i have a client coming over that needs a FAQ system.

Moderator: Thorsten
Code: Select all
<?php
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
print "<pre>Browser language preferences: ".$_SERVER['HTTP_ACCEPT_LANGUAGE']."</pre>";
}
?>
thanks for this info.ITS Net Services wrote:First let me start off by saying, i installed version 1.5.8 originally. Then i saw 1.6.0 was released and installed that.
Both of them have done the same thing to me. The only thing i have changed in the constants.php file was the logout time. And that was only in version 1.6.0
Just for giving you one more chance for your presentation we kindly suggest you to temporarly change your browser language preferences in order to let the en (English) language be first. This tip plus the fixing of your DB ("en-US"->"en") should be the temp workaround.ITS Net Services wrote: Here are the results of the php file.
Browser language preferences: en-us,en;q=0.5
could you also post the result of this PHP code below?ITS Net Services wrote:Here are the results of the php file.
Browser language preferences: en-us,en;q=0.5
Code: Select all
<?php
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
print "<pre>Browser language preferences: ".$_SERVER['HTTP_ACCEPT_LANGUAGE']."</pre>";
}
if (isset($_COOKIE['pmf_lang'])) {
print "<pre>pmf_lang cookie: ".$_COOKIE['pmf_lang']."</pre>";
}
if (isset($_COOKIE['pmf_sid'])) {
print "<pre>pmf_sid cookie: ".$_COOKIE['pmf_sid']."</pre>";
}
?>
Thanks for that, i will try and hope that works. I am using Mozilla FF. That may or not be part of the problem. I have tried IE but have the same issue.matteo wrote: Just for giving you one more chance for your presentation we kindly suggest you to temporarly change your browser language preferences in order to let the en (English) language be first. This tip plus the fixing of your DB ("en-US"->"en") should be the temp workaround.
TIA,
Matteo
This means that you don't have any cookie coming from other apps that could break the PMF ones: good info.ITS Net Services wrote:Here are the results of the 2nd php file you asked me to run. It is the same as the first.
Browser language preferences: en-us,en;q=0.5
Code: Select all
Browser language preferences: en-us
pmf_lang cookie: en
pmf_sid cookie: 8
could you check your DB tables, precisely:ITS Net Services wrote:I changed the browser settings, and queried the database. No luckSame problem.
You can apply these queries below, one by one:ITS Net Services wrote:How can i change that?
yes, we're fixing that.ITS Net Services wrote:This issue will be resolved in revision 1.6.1 correct?
Code: Select all
<?php phpinfo(); ?>