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

Pages: 1 ... 21 22 [23]
331
Feng Office 1 / Re: delete mail account
« on: February 11, 2009, 01:41:23 pm »
hi

That bug will be fixed in next release.

I could reproduce it, the delete function is being called with a wrong account id.
By refreshing the page the variable was seted with the correct value and i could delete the accont succesfully.

Try F5 to refresh and try to delete again. if that doesn't work please reply this post again.


332
Getting Started / Re: SMTP error
« on: February 10, 2009, 10:58:24 am »
Hi,

I tried sending mails with different users configuring the same account for each one, (same email address, username and password) and it worked fine.
Every user (admin or not) can send emails.

Did you used the same smtp username and password for different email addresses? or did you configured the same account for both users?

333
Feng Office 1 / Re: Weekly calendar doesn't advance properly
« on: January 30, 2009, 10:35:56 am »

It's fixed for next release (1.2 RC)
thanks for reporting !

334
Feng Office 1 / Re: 1.2 beta 2: Date format issues, German locale
« on: January 29, 2009, 02:59:19 pm »
Hi,

The reason why you had that problem in tasks is because the date format contains "." instead of "/" to separate day, month and year.

By now change the "." to "/" in those language files.
In a future version date formats separated with "." will be available

And the other formats you mencioned will be available too.

335
Getting Started / Re: Importing Companies
« on: January 27, 2009, 05:41:04 pm »

Hi,

Since version 1.2 beta, it is available to import and export companies in csv format.

By now the contact import wizard has no changes from 1.1 (by the moment you can't link a imported user to an existing company, only import them)

336
Feng Office 1 / Re: date format bug (ficha :-) ) ?
« on: January 27, 2009, 04:10:41 pm »

Did you refreshed the page after doing the changes?
Refresh is necesary since one of the changes is in a .js file and must be reloaded.

I reproduced the error and doing what i said before it was fixed.

try reloading Opengoo, and if that bug keeps happening, tell me again.

337
Feng Office 1 / Re: date format bug (ficha :-) ) ?
« on: January 26, 2009, 01:58:07 pm »
Hi

to change the date format to 'dd/mm/yyyy' you have to edit the language files langs.js and general.php and change this values to:
- langs.js
   'date format': 'd/m/Y',
   'date format alternatives': 'd/m/y|j/n/Y|j/n/y|j/m/y|d/n/y|j/m/Y|d/n/Y',
- general.php
   'date format' => 'd/m/Y',
   'date format description' => '(dd/mm/yyyy)',

this also fixes the bug that puts the event in a wrong date when it is added after changing the format.

338
Getting Started / Re: How do I change the time settings?
« on: January 21, 2009, 10:58:39 am »

The problem is that today values are being taken as GMT and the user timezone is not being used.

This bug will be fixed in the next release.

thanks for reporting!

339
How To's / Re: Writing my own iCal output for OpenGoo
« on: January 19, 2009, 02:36:27 pm »
hi,

In the next version calendar import and export (in iCalendar format) will be supported.

The column that indicates if an event is an all day event, in project_events table, is "type_id". if its value is 2 event duration is all day.

340
Feng Office 1 / Re: Calendar - missing ')' error?
« on: November 12, 2008, 09:05:01 am »
Hi,
to solve the problem of the line breaks in tooltips, in viewweek.php you have to
add this at line 450:

$tipBody = $event->getStart()->format('h:i A') .' - '. $event->getDuration()->format('h:i A') . (trim($event->getDescription()) != '' ? '<br><br>' . $event->getDescription() : '');
$tipBody = str_replace("\r", '', $tipBody);
$tipBody = str_replace("\n", '<br>', $tipBody);

then replace line 453 with this
addTip('w_ev_div_' + <?php echo $event->getId() ?>, '<?php echo str_replace("'", "\\'", $event->getSubject()) ?>', '<?php echo $tipBody;?>');

do the same in viewdate.php when building tooltip (line 340)

Pages: 1 ... 21 22 [23]