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

Pages: [1] 2 3 ... 7
1
Ideas / Re: Layout Change to save space
« on: January 15, 2010, 11:09:35 pm »
well, all with at least 1200 pixels could use that to gain more space for their content.
even 13 inc notebooks have that resolution. it's only the netbooks that would suffer.

maybe it's possible to make 2 rows for the smaller ones, and 1 for the rest?
it's just lots of space (especially on smaller displays 15", 13") that maybe could be used more efficient.

all items movable would, of course, be the best solution ;)

2
Ideas / Layout Change to save space
« on: January 14, 2010, 10:50:43 am »
hey there,

I often noticed it, but now i also want to ask if maybe one could change the "waste" of space in the top area of FO.
I attached a screenshot with my idea of moving some items.
this would be useful for all widescreen devices, which are affected even more than displays with an old 4:3 resolution.

also, the "loading anitmation" could be done, by rotating the FO symbol which is on the top left?

i'm not sure how easy it is to do these changes on my own. in which files would i have to look?
or maybe others like this idea, too?

thanks & greets,
soomon

btw: resolution of my screen is 1200*1024

3
How To's / Re: fetch more than 10 mails / view imap folders
« on: January 09, 2010, 09:53:57 am »
too easy XD
thanks!

4
How To's / fetch more than 10 mails / view imap folders
« on: January 08, 2010, 05:57:28 am »
hi there,

I have 2 little question about the email module (with imap):

1. when i click on check for new emails it only fetches 10 mails.
i have about 3000 emails in my google acc.... and I don't want to press this button 300 times :D
what do I have to do?

2. how can i display a list of the imap folders in the inbox screen and just select one of these folders?
how can i display the imap folder the mail is in in the inbox screen in front of every email?

thanks / greets,
soomon

5
Announcements / Re: Meet with the OpenGoo team in the US and Europe!
« on: October 01, 2009, 11:07:48 am »
hey cool idea frankfurt would be nice (not too far away).. :)

6
Installation problems / Re: 1.5.0 > 1.5.1 empty startup SOLVED!
« on: August 20, 2009, 01:53:41 am »
the first try was an automatic update. then i tried overwriting the files with the normal 1.52 download from the website. but the result was the same.

7
Installation problems / Re: 1.5.0 > 1.5.1 empty startup SOLVED!
« on: August 19, 2009, 01:49:16 pm »
default language is en_us
i tried switching it to de_de but that did not help :S

8
Installation problems / Re: 1.5.0 > 1.5.1 empty startup SOLVED!
« on: August 19, 2009, 04:07:56 am »
anybody?

9
Installation problems / Re: 1.5.0 > 1.5.1 empty startup SOLVED!
« on: August 17, 2009, 10:30:15 am »
hey there,

i also get this empty screen.
i tried overwriting all opengoo files, but that did not help.
i fixed the functions.php by adding entries for the languages da_dk and de_du and removed the empty lines in the browser.php but the result is the same.
and yes, i tried removing all cookies, browser cache etc.

IE sais:
Error in line 39
char 2
error: 'og.loggedUser.isAdmin' is  NULL or no object
url: http://mydomain/index.php?c=access&a=index


i also see that the  loading icon in the content area but after 1 second it's gone and there is no content :S

debug is true but there i no entry in the log file...

i did an  update from 1.51 to 1.52

thanks & greets,

soomon

edit: now that i'm at home i get the error:
line: 14
char: 1188
object doesn't support this property or method
code: 0
same url

10
Installation problems / Re: [1.4] db upgrade fails
« on: May 22, 2009, 11:06:17 am »
that was too easy.....

thanks a lot!!!!

11
Installation problems / Re: [1.4] db upgrade fails
« on: May 22, 2009, 06:44:42 am »
hey there,
had the same problem here...

removing everything that was duplicate i ended up here:
# Database schema transformations executed (total queries: 44)

Code: [Select]
-- <?php echo $table_prefix ?> og_
-- <?php echo $default_charset ?> DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
-- <?php echo $default_collation ?> collate utf8_unicode_ci
-- <?php echo $engine ?> InnoDB



ALTER TABLE `<?php echo $table_prefix?>project_webpages` MODIFY COLUMN `description` text <?php echo $default_collation ?>;





ALTER TABLE `<?php echo $table_prefix ?>project_tasks` MODIFY COLUMN `from_template_id` int(10) NOT NULL default '0';

ALTER TABLE `<?php echo $table_prefix ?>project_milestones` MODIFY COLUMN `from_template_id` int(10) NOT NULL default '0';

ALTER TABLE `<?php echo $table_prefix ?>project_file_revisions` MODIFY COLUMN `type_string` varchar(255) <?php echo $default_collation ?> NOT NULL default '';

UPDATE `<?php echo $table_prefix?>project_events` `pe` SET
`start`=ADDDATE(`start`, INTERVAL (SELECT CONCAT('\'',-1*FLOOR(`timezone`),':',FLOOR(abs(`timezone`)%1)*60,'\'') FROM `<?php echo $table_prefix?>users` `u` WHERE `u`.`id` = `pe`.`created_by_id`) HOUR_MINUTE),
`duration`=ADDDATE(`duration`, INTERVAL (SELECT CONCAT('\'',-1*FLOOR(`timezone`),':',FLOOR(abs(`timezone`)%1)*60,'\'') FROM `<?php echo $table_prefix?>users` `u` WHERE `u`.`id` = `pe`.`created_by_id`) HOUR_MINUTE);

CREATE TABLE IF NOT EXISTS `<?php echo $table_prefix ?>reports` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) <?php echo $default_collation ?> NOT NULL,
  `description` varchar(255) <?php echo $default_collation ?> NOT NULL,
  `object_type` varchar(255) <?php echo $default_collation ?> NOT NULL,
  `order_by` varchar(255) <?php echo $default_collation ?> NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=<?php echo $engine ?> <?php echo $default_charset ?>;

CREATE TABLE IF NOT EXISTS `<?php echo $table_prefix ?>report_columns` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `report_id` int(10) NOT NULL,
  `custom_property_id` int(10) NOT NULL,
  `field_name` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=<?php echo $engine ?> <?php echo $default_charset ?>;

CREATE TABLE IF NOT EXISTS `<?php echo $table_prefix ?>report_conditions` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `report_id` int(10) NOT NULL,
  `custom_property_id` int(10) NOT NULL,
  `field_name` varchar(255) <?php echo $default_collation ?> NOT NULL,
  `condition` varchar(255) <?php echo $default_collation ?> NOT NULL,
  `value` varchar(255) <?php echo $default_collation ?> NOT NULL,
  `is_parametrizable` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=<?php echo $engine ?> <?php echo $default_charset ?>;

UPDATE `<?php echo $table_prefix ?>user_ws_config_options` SET `default_value` = '' WHERE `category_name` = 'general' AND `name` = 'localization';
UPDATE `<?php echo $table_prefix ?>user_ws_config_options` SET `default_value` = 1 WHERE `category_name` = 'general' AND `name` = 'rememberGUIState';







ALTER TABLE `<?php echo $table_prefix ?>custom_property_values` MODIFY COLUMN `value` text <?php echo $default_collation ?> NOT NULL;


-- larger contact fields
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `firstname` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `lastname` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `middlename` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `department` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `job_title` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_city` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_state` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_zipcode` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_country` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_phone_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_phone_number2` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_fax_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_assistant_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `w_callback_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_city` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_state` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_zipcode` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_country` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_phone_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_phone_number2` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_fax_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_mobile_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `h_pager_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `o_city` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `o_state` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `o_zipcode` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `o_country` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `o_phone_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `o_phone_number2` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>contacts` MODIFY COLUMN `o_fax_number` varchar(50) <?php echo $default_collation ?> default NULL;

ALTER TABLE `<?php echo $table_prefix ?>companies` MODIFY COLUMN `phone_number` varchar(50) <?php echo $default_collation ?> default NULL;
ALTER TABLE `<?php echo $table_prefix ?>companies` MODIFY COLUMN `fax_number` varchar(50) <?php echo $default_collation ?> default NULL;

it said it worked but i still dont get any content...
sad thing is i didnt do a database dump because the lastu update went that smoothly :S

I now only get the op lines:
Welcome back soomon (Logout) : Administration | Account | Help

and the bottom line:

© 2009 by soomon. All rights reserved
Powered by OpenGoo 1.4. 0.207s. 6.18MB

what to do now??

thanks & greets,
soomon

12
Getting Started / Re: Newbie Installation
« on: March 25, 2009, 04:43:29 am »
extract the zip file to the xampp web directory and run the installer from your browser??

13
Announcements / Re: OpenGoo 1.3 final is out!
« on: March 20, 2009, 04:52:31 am »
bam automatic upgrade rocks guys!!!!

it said sth about an unwritable file (sth with opengoo version) but i ignored that since the first 1.3beta XD

update took about 10 seconds ..

good work!!!!

 :)

14
How To's / Re: description, but description of what?
« on: March 08, 2009, 05:15:18 pm »
ok good to know  ;D

15
How To's / description, but description of what?
« on: March 04, 2009, 10:13:47 am »
hey there,

on my dashboard i have some box saying:

Description
       
Created by:    You, on 11/13/2008
Modified by:    You, on 11/13/2008

well.. what is this?  ;D

Pages: [1] 2 3 ... 7