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 - bleeuwen

Pages: [1] 2
1
The missing lang.js message you can skip by tweaking app.js (the lang() function.

Below you find my tweak on versiion 2.2

function lang(name) {
   var value = _lang[name];
   if (!value) {
                value=name;                                      <<-- this line is added
   //   return "Missing lang.js: " + name;      <<--this line commented out
   }
   for (var i=1; i < arguments.length; i++) {
      value = value.replace("{" + (i-1) + "}", arguments);
   }
   return value;
}

The message 'missing lang' (without .js) you cab avoid by setting DEBUG is false in config.php

2
Feng Office 2 / Term Workspace in the left column can not be translated
« on: October 25, 2012, 06:07:02 pm »
In Feng 2.2 the term Workspace can not be translated, while in the contrary the phrase feng_persons (which is in the same left column) can be translated.

In which souces the term Workspaces is rendered, so that I put lnag() around it??




3
Feature requests / Re: "Site Under Maintanance" lock down option
« on: October 22, 2012, 05:40:14 am »
Would be a nice option. Migration from 1.7 to 2.2 takes some time and I have a site with a lot of users.

4
Feng Office 2 / Re: Click workspace name in task list does nothing
« on: October 19, 2012, 09:32:06 am »
please skip

5
Feng Office 2 / Re: Upgraded to 2.2 but no data available
« on: October 19, 2012, 05:47:12 am »
Hi

did you run /public/upgrade/complete_migration.php several times??

I ran it, and afterwards I saw all the data.

6
Feng Office 2 / Re: Click workspace name in task list does nothing
« on: October 18, 2012, 10:25:02 am »
Hi

I get the same problem after migrating to 2.2.

Is there any workaround?

7
Great post!!!
My migration from 1.7.5 to 2.2 failed.
With he given script I could easily give the old table the prefix 'og_'  so the first step of the migration was Succesfull.
THANKS for the script !!!! :)

After thsi I did the following:
- run public/upgrade/complete_migration.php (perform it several times is advizd)
- overwrite the  init.php and version.php with the new ones

Than all is OK

(If you do not overwrite the init.php file, selecting a special workspace does nog lead to filtering of files).

8
Great tip.

Thanks

9
Feng Office 2 / Re: Beta3, How to modify user types (permission_groups)
« on: February 11, 2012, 05:50:15 am »
We will see.

10
Installation problems / Screen size admin
« on: February 09, 2012, 05:20:22 pm »
After migrating to 1.7 the screen size of admin is half and can not be made larger.

Some other users have the same problem, but after deleting and add the same user again the user has a complete screen.

My problem is that the user ADMIN not can be deleted.

Is there a solution (maybe to update a user-related table?)

Seems to me it is something in ogmin.js or ext-base.js

11
Installation problems / Issue pulled back, excuses
« on: January 27, 2012, 01:15:50 pm »
x


12
How To's / Delete multiple documents
« on: December 19, 2011, 04:44:54 pm »
Today upgraded tot 1..5

I try to delete multiple documents : I select several documents (in the Document tab) and choose "Move to trash". After confirming the pop-up question, no documents are deleted.

Ho come.(I cannot find anay answer on this trivial problem in Google or on this forum)

Thanks in advance for the answer.

13
Feng Office 2 / Beta3, How to modify user types (permission_groups)
« on: December 18, 2011, 07:17:03 pm »
Is it possible to modufy user types?

I see that they are stored in the table permission_groups, but where do I find the option to modify this table?

In the URLspace I entered after the questionmark:
c=administration&a=groups

This shows the permission_groups, but when I try to change I get:
Error 500 Internal server-error

14
Hi

I copied a FengOffice installation to my local PC, and got errors connected with the $Globals.

deleting autoloader.php works.

After starting the website, a new file with the name autoloader.php is created

Thanks

15
How To's / Re: How do I add a favicon
« on: March 05, 2010, 10:53:28 am »
Thanks for your answer.

The problem I had was that om my local server the favicon does niet appear.
It appears though on my hosted server.

Pages: [1] 2