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

Pages: [1]
1
Feng Office 3 / Re: FengOffice 3.1.3 - again blank screen
« on: August 23, 2015, 06:07:18 am »
Hi conrado,

it is not a solution to say you are not ill, because I am not (e.g. It should be good, because at our side it is functioning).

Through softaculous upgraded to 3.2.3 and still blank screen (the source code for the index.php is blank).

2
Feng Office 3 / Re: FengOffice 3.1.3 - again blank screen
« on: July 16, 2015, 03:10:17 pm »
Upgrade to 3.2.1 - still blank screen - congratulation to FENGOFFICE "great" project

I forgot - it was upgraded through Softaculous ....

3
Feng Office 3 / Re: FengOffice 3.1.3 - again blank screen
« on: July 16, 2015, 03:07:35 pm »
Upgrade to 3.2.1 - still blank screen - congratulation to FENGOFFICE "great" project

4
Feng Office 3 / Re: FengOffice 3.1.3 - again blank screen
« on: May 19, 2015, 01:38:56 pm »
Server
Apache Version    2.4.12
PHP Version    5.4.40
MySQL Version    5.6.23
Architecture    x86_64
Operating System    linux
Perl Version    5.8.8
Kernel Version    2.6.18-498.el5.lve0.8.

PHP
I do not know which settings you need to know, therefore some of them (local,master):
max_execution_time   300   300
max_file_uploads   20   20
max_input_nesting_level   64   64
max_input_time   -1   -1
max_input_vars   1000   1000
memory_limit   128M   128M

It is installed in shared environment and therefore I can send you only FO logs:
and anyway it write in the log file nothing new - even I try to stat fengoffice now 2015-05-19
the last post in the log was as:
-------------------------------------------------------------------------------

Session "default" started at 2015-04-09T10:29:04+0000
#1 ERROR: Error: Undefined variable: end_cond in '/..../application/models/sharing_table/SharingTables.class.php' on line 69 (error code: 8)
Time since start: 0.93439483642578 seconds
-------------------------------------------------------------------------------

P.S.: FO upgraded to 3.1.5.1.

5
Feng Office 3 / Re: FengOffice 3.1.3 - again blank screen
« on: May 12, 2015, 06:07:32 pm »
Successfully WRONG- upgraded to 3.1.4.3 - but still blank screen - what a success story of a not functioning great product ...

6
Feng Office 3 / FengOffice 3.1.3 - again blank screen
« on: April 29, 2015, 04:34:59 am »
Previously upgraded and modified with jacobs code core_dimensions_hooks:
I have created a workaround for this bug that works in version 3.1.2
I do not know of any possible side-effects it may have but at least I can edit users.

The problem appears on line 373 of /plugins/core_dimensions/hooks/core_dimensions_hooks.php

Feng is apparently trying to get the parent member of a company and is coming up empty handled, throwing an unhanded error.


In the core_dimensions_hooks.php file

Replace this if block:
Quote
if ($object->getCompanyId() > 0) {
                                $pmember = Members::findOne(array('conditions' => '`object_id` = '.$object->getCompanyId(). ' AND `object_type_id` = '.$company_ot->getId(). ' AND `dimension_id` = '.$person_dim->getId()));
                                $member->setParentMemberId($pmember->getId());
                                $member->setDepth($pmember->getDepth() + 1);
                        }else{
                                //Is first level
                                $member->setDepth(1);
                                $member->setParentMemberId(0);
                        }

With this if block:
Quote
if ($object->getCompanyId() > 0) {
                                $pmember = Members::findOne(array('conditions' => '`object_id` = '.$object->getCompanyId(). ' AND `object_type_id` = '.$company_ot->getId(). ' AND `dimension_id` = '.$person_dim->getId()));

                                if($pmember) //Do not use pmember if null for any reason / hack by jacob on the fengoffice forum
                                {
                                $member->setParentMemberId($pmember->getId());
                                $member->setDepth($pmember->getDepth() + 1);
                                } else {
                                $member->setDepth(1);
                                $member->setParentMemberId(0);
                                }
                        }else{
                                //Is first level
                                $member->setDepth(1);
                                $member->setParentMemberId(0);
                        }
now upgraded to 3.1.3 still error:
Fatal error: Cannot redeclare core_dimensions_after_edit_profile() (previously declared in /...../plugins/core_dimensions/hooks/core_dimensions_hooks-150408.php:4) in /...../plugins/core_dimensions/hooks/core_dimensions_hooks.php on line 13

and in cache/log.php is:
-------------------------------------------------------------------------------

Session "default" started at 2015-04-09T10:29:04+0000
#1 ERROR: Error: Undefined variable: end_cond in '/...../application/models/sharing_table/SharingTables.class.php' on line 69 (error code: 8 )
Time since start: 0.93439483642578 seconds
-------------------------------------------------------------------------------
WHAT I should do?

Thanks in advance


P.S.: Have deleted config.php, installed onto a new clean database and the result is a really blank page (source code of that page is blank), after switching the debug mode on in config.php - again the same Fatal error on page ...

7
Development / Re: Plugins?
« on: December 31, 2012, 10:26:04 am »
Please where I can find the section of the site (where are all plugins placed) announced at April 2009, or are still those 4 plugins at Sourceforge all plugins developed for Fengoffice?

8
How To's / I have lost password
« on: January 04, 2011, 06:10:47 pm »
How can I recreate a lost administration password to fengoffice?

Thanks in advance


P.S.: It is maybe solved, but as I cannot delete my own topic it must be here.
I recreated maybe the password with forgot password option on login screen h- I am waiting for an email, although on the screen shows a message:

Missing lang: error forgot password

9
How To's / Error: Error checking account
« on: October 19, 2010, 12:42:53 pm »
What is happen? I have the same settings as in other email client, but FengOffice 1.7.2 shows after pressing CHECK MAILS only this:

Error checking account ...

Where can I see the purpose of that message?

10
Other languages / Re: Question : Language Translation
« on: October 13, 2010, 10:59:11 am »
Can I try to tranlate it to slovak?

Pages: [1]