Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - eckes2

Pages: [1]
1
Hello community,

after upgrading from 1.7.2 to 1.7.3.1, the installation is completely messed up: no bit of translation seems to work and I get strange characters on the page.

Uploaded two screenshots here: http://imgur.com/a/x0Npk
Here's a screenshot of the administration page:


Seems like some escaping/rendering does not work.

Has anyone else experienced (or better: solved) that problem?

Edit:
The problem already occurs when I just take the
Code: [Select]
language folder from 1.7.3.1 and drop it into my installation. Could it be a problem with the access rights to the files/folders? What shall these be set to?

SOLUTION:
I could solve the problem by excluding the german folder of FO1.7.3.1 from the update: I uploaded everything except the LANGUAGES folder to my webspace and now it works. I guess that it has something to do with some missing translations that I did manually in 1.7.2. I did some of the translation using the translate tool, some of them manually (edited PHP files locally and then uploaded them to my webserver).


2
As I posted some time ago (forgot my old credentials, http://forums.fengoffice.com/index.php?topic=4422.0), I get an "302 Object Moved" error when doing a manual upgrade check (automatic doesn't seem to work at all). cache/log.php is clear.

My first guess was to change www.fengoffice.com/versions.xml into www.fengoffice.com/versionsxml.php because I saw a redirect there. But it's a 301, not 302, so this could not be the point.

After going through source further, I could determine that the <download_link .../> pointing to sourceforge leads to a 302 result. And I think, that's the problem. But I cannot figure out exactly where the error occurs. I could imagine that it has got something to do with this block (V1.7.2, AdministrationController.class.php, from line 425):

Code: [Select]
$in = fopen($zipurl, "r");
$zippath = "tmp/" . $zipname;
$out = fopen($zippath, "w");
fwrite($out, stream_get_contents($in));
fclose($out);
fclose($in);

and the block
Code: [Select]
catch (Error $ex) {
  flash_error($ex->getMessage());
  return;
}

Could it be, that fopen gets bemused by the 302 and so the catch block is being executed. This would explain that there's nothing in the log file since the flashing messages don't get logged (what would be desirable IMHO, at least for errors).

I cannot imagine that I'm the only one experiencing this problem since it seems to be a quite fundamental one...

EDIT: tried to replace the fopen-part using cURL and found that that's surely not the problem. BTW: cURL would be a clean alternative when allow_url_fopen is disabled.


3
Hello board,

as I reported earlier (http://forums.fengoffice.com/index.php?topic=4422.msg16461#msg16461), the automatic upgade doesn't work for me. Still doesn't. Trying to upgrade manually from 1.7 to 1.7.2 via /public/upgrade, I get "You already have upgraded to the latest possible version.". When I look at http://www.fengoffice.com/versionsxml.php, I can see that the highest <version number is set to 1.7, not 1.7.2. I think this should be changed...

Pages: [1]