Search found 35 matches
- 10 Sep 2013, 16:50
- Forum: Help
- Topic: No FormatTimeString() translation found
- Replies: 2
- Views: 1732
Re: No FormatTimeString() translation found
No, no custom Language files.
- 09 Sep 2013, 21:35
- Forum: Help
- Topic: No FormatTimeString() translation found
- Replies: 2
- Views: 1732
No FormatTimeString() translation found
I keep seeing this 'notice' in the logs:
No FormatTimeString() translation found
It started happening recently because I monitor logs often. It is not technically an error but I cannot figure out the reason for it and we have not made any modifications to the code base (it was suggested to me ...
No FormatTimeString() translation found
It started happening recently because I monitor logs often. It is not technically an error but I cannot figure out the reason for it and we have not made any modifications to the code base (it was suggested to me ...
- 12 Aug 2013, 18:40
- Forum: Help
- Topic: Agent Management & LDAP issue
- Replies: 3
- Views: 1672
Re: Agent Management & LDAP issue
I edited /Kernel/Config.pm to enable login with LDAP. I was able to log in successfully. How do I sync LDAP database with OTRS? Is there a script that needs to be run to enable login for other agents who do not have prior accounts set up?
- 07 Aug 2013, 19:00
- Forum: Help
- Topic: Agent Management & LDAP issue
- Replies: 3
- Views: 1672
Agent Management & LDAP issue
We have successfully been using OTRS since 2011 and now have created new setup using 3.2 most recent version. I have been able to configure LDAP as authentication method.
The question is, though, is there a way to ensure all agents that exist in our LDAP are able to access OTRS ?
Or is it a ...
The question is, though, is there a way to ensure all agents that exist in our LDAP are able to access OTRS ?
Or is it a ...
- 14 Mar 2013, 17:18
- Forum: Help
- Topic: Process Ticket tab is not shown in toolbar
- Replies: 1
- Views: 1253
Process Ticket tab is not shown in toolbar
We are in the process of re-creating our Ticket System and installed 3.2 version. I am very interested in Process Ticket functionality but even after enabling the module, I don't see it in Tickets dropdown menu of a toolbar. What am I missing here?
- 26 Feb 2013, 18:40
- Forum: Howtos
- Topic: Add lightbox to image attachments (updated3.3)
- Replies: 13
- Views: 46976
Re: Add lightbox to image attachments
I am currently upgrading otrs to 3.1 (3.2 is the goal) and I wonder if lightbox can be installed in 3.1 and 3.2. The plugin had worked beautifully on 3.0 and I would like to keep this functionality.
- 19 Feb 2013, 19:59
- Forum: Help
- Topic: Recently created customers are not shown in Customers-Groups
- Replies: 1
- Views: 1905
Recently created customers are not shown in Customers-Groups
I am having this problem that has become quite serious. I am not seeing any major errors in otrs and Apache logs but when I am creating new customer, I then go to Customers-Groups tab to assign that Customer to a particular group. But I don't see him/her on a list. At the same time, the Customer is ...
- 01 Feb 2013, 20:21
- Forum: Help
- Topic: [Solved]Error: Use of uninitialized value in numeric eq (==)
- Replies: 0
- Views: 1197
[Solved]Error: Use of uninitialized value in numeric eq (==)
Lately 'Reply' window in our Ticket System became very slow, even though the system itself is normal. I dug into logs and I found error in Apache log:
index.pl: Use of uninitialized value in numeric eq (==) at /opt/otrs/bin/cgi-bin/../../Kernel/Modules/AgentTicketCompose.pm
I assume this means a ...
index.pl: Use of uninitialized value in numeric eq (==) at /opt/otrs/bin/cgi-bin/../../Kernel/Modules/AgentTicketCompose.pm
I assume this means a ...
- 24 Jan 2013, 23:00
- Forum: Help
- Topic: How to make 'Changes' viewable by Customers?
- Replies: 2
- Views: 1477
Re: How to make 'Changes' viewable by Customers?
I enabled 'Services', linked Workorder to Service that Customer has access to and now Change is shown in Customer frontend BUT it is not clickable, as in Customer can view:
- state of Change
- number
- title
- numbers of workorders
- planned start & end
...and I suppose I can add other columns ...
- state of Change
- number
- title
- numbers of workorders
- planned start & end
...and I suppose I can add other columns ...
- 24 Jan 2013, 21:49
- Forum: Help
- Topic: How to make 'Changes' viewable by Customers?
- Replies: 2
- Views: 1477
How to make 'Changes' viewable by Customers?
We are working on implementing Change Management module. I enabled module for Customers in Frontend::Customer::ModuleRegistration.
For my testing change entry, I added demo customer user as CAB member and still cannot get it to show up in Customer dashboard, I adjusted permissions in Customers ...
For my testing change entry, I added demo customer user as CAB member and still cannot get it to show up in Customer dashboard, I adjusted permissions in Customers ...
- 17 Jan 2013, 00:40
- Forum: Help
- Topic: Looking for MySQL query to select "Created in Queue" value
- Replies: 10
- Views: 5261
Re: Looking for MySQL query to select "Created in Queue" val
So my task now is to include columns:
create_time
change_time
I understand I can't get close_time timestamp unless I implement that timestamp. I have done that before, will have to dig a little and do it again...
create_time
change_time
I understand I can't get close_time timestamp unless I implement that timestamp. I have done that before, will have to dig a little and do it again...
- 17 Jan 2013, 00:22
- Forum: Help
- Topic: Looking for MySQL query to select "Created in Queue" value
- Replies: 10
- Views: 5261
Re: Looking for MySQL query to select "Created in Queue" val
Thank you! Looks like I am on the right path after all 
- 17 Jan 2013, 00:21
- Forum: Help
- Topic: Looking for MySQL query to select "Created in Queue" value
- Replies: 10
- Views: 5261
Re: Looking for MySQL query to select "Created in Queue" val
I suppose I can use some kind of statement like...
12 is the queue id I am looking for.
Code: Select all
LEFT JOIN ticket_history USING queue_id WHERE ticket_history.queue_id = 12; - 17 Jan 2013, 00:04
- Forum: Help
- Topic: Looking for MySQL query to select "Created in Queue" value
- Replies: 10
- Views: 5261
Re: Looking for MySQL query to select "Created in Queue" val
I can query for particular name in column name in table ticket_history but how do I narrow results down to that particular client only or to ticket number?
mysql> describe ticket_history;
+-----------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key ...
mysql> describe ticket_history;
+-----------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key ...
- 16 Jan 2013, 23:01
- Forum: Help
- Topic: Looking for MySQL query to select "Created in Queue" value
- Replies: 10
- Views: 5261
Re: Looking for MySQL query to select "Created in Queue" val
At ticket_history table I found history_type_id value that represents updating Queue... But how do I tie it all together. This is what I have so far to get what I need:
mysql> select * from ticket where queue_id = '12' and customer_id = 'something' and create_time between date_sub(now(), interval ...
mysql> select * from ticket where queue_id = '12' and customer_id = 'something' and create_time between date_sub(now(), interval ...
- 16 Jan 2013, 22:55
- Forum: General
- Topic: Limit of GenericAgent jobs?
- Replies: 2
- Views: 1684
Re: Limit of GenericAgent jobs?
Those are configured via Admin panel so they are stored in db.
- 16 Jan 2013, 22:51
- Forum: Help
- Topic: Looking for MySQL query to select "Created in Queue" value
- Replies: 10
- Views: 5261
Looking for MySQL query to select "Created in Queue" value
I am working on a query to include in web page that needs to show information regarding ticket created in specific queues. I figured out everything else: how to select customer, date range, states. But if I use value query_id like below:
select * from ticket where queue_id = '12';
it includes ...
select * from ticket where queue_id = '12';
it includes ...
- 05 Jan 2013, 00:30
- Forum: General
- Topic: Limit of GenericAgent jobs?
- Replies: 2
- Views: 1684
Limit of GenericAgent jobs?
Recently I had to change frequency of GenericAgent jobs via crontab. I noticed that they do not all run every 5 minutes as I edited. For example, first 25 (or so) jobs run and then during next run the rest of the jobs run... So I am wondering, is there a limit of GenericAgent jobs that can be run ...
- 19 Dec 2012, 19:51
- Forum: Help
- Topic: Custom GenericAgent script?
- Replies: 4
- Views: 2218
Re: Custom GenericAgent script?
I was modifying this part:
But you are right, I dont need them. I just wanted to make sure 'CustomerNo' is the attribute I should use to make sure it only moves tickets for that particular client
Code: Select all
Queue => 'Problem::High Priority',
Priorities => ['3 normal'],
- 19 Dec 2012, 19:43
- Forum: Help
- Topic: Custom GenericAgent script?
- Replies: 4
- Views: 2218
Re: Custom GenericAgent script?
'move all High Priority tickets from abc to Emergency' => {
# get all tickets with these properties
Queue => 'Problem::High Priority',
CustomerNo => ['abc'],
# new ticket properties
New => {
Queue => 'Problem::Emergency!',
Owner => 'abc@abc.com',
},
},
Does that look about right?
# get all tickets with these properties
Queue => 'Problem::High Priority',
CustomerNo => ['abc'],
# new ticket properties
New => {
Queue => 'Problem::Emergency!',
Owner => 'abc@abc.com',
},
},
Does that look about right?
- 19 Dec 2012, 18:45
- Forum: Help
- Topic: Custom GenericAgent script?
- Replies: 4
- Views: 2218
Custom GenericAgent script?
We have just recently got involved with a new Customer who requires very fast response. For example, for High Priority tickets, we are required to respond within 30 minutes. What I need to accomplish is a custom script that runs at least every 5 minutes or more frequently, and moves tickets from ...
- 06 Sep 2012, 17:32
- Forum: Help
- Topic: Customizing QueueView
- Replies: 2
- Views: 1482
Re: Customizing QueueView
Yes! Thank you. Added the following pieces of code to accomplish this:
<th class="Responsible $QData{"CSS"}">
<a name="OverviewControl" href="$Env{"Baselink"}Action=$Env{"Action"};$Data{"LinkSort"};SortBy=Responsible;OrderBy=$LQData{"OrderBy"}">$Text{"Responsible"}</a>
</th>
...and
<td><div ...
<th class="Responsible $QData{"CSS"}">
<a name="OverviewControl" href="$Env{"Baselink"}Action=$Env{"Action"};$Data{"LinkSort"};SortBy=Responsible;OrderBy=$LQData{"OrderBy"}">$Text{"Responsible"}</a>
</th>
...and
<td><div ...
- 06 Sep 2012, 16:53
- Forum: Help
- Topic: Customizing QueueView
- Replies: 2
- Views: 1482
Customizing QueueView
I am looking into adding an additional column for the QueueView page (Tickets >> Queue View >> [some queue]). I want to add column "Responsible Agent" so our guys could just go into appropriate queue and see what tickets have not been picked up yet. I have customized dashboard before, no problem ...
- 22 Aug 2012, 18:05
- Forum: General
- Topic: Integration Between OTRS and Jasper Reports
- Replies: 4
- Views: 3945
Re: Integration Between OTRS and Jasper Reports
I do not really understand this part
Would appreciate any help to understand this syntax betterPlease adjust the ${INTERVAL} part to your needs.
- 14 Aug 2012, 20:43
- Forum: Help
- Topic: Note is not sent to an Agent
- Replies: 2
- Views: 1417
Re: Note is not sent to an Agent
You are absolutely right. After further testing it all became clear.
Thank you for response!
Thank you for response!
- 07 Aug 2012, 00:13
- Forum: Help
- Topic: Note is not sent to an Agent
- Replies: 2
- Views: 1417
Note is not sent to an Agent
I am having an issue after most recent SVN push, that after I add a Note that is specified to certain agents, they do not receive them via email.
There are absolutely no errors in System Log. For example when I review tickets that are locked, I want to create a note and specify agents whom I want ...
There are absolutely no errors in System Log. For example when I review tickets that are locked, I want to create a note and specify agents whom I want ...
- 13 Jun 2012, 20:49
- Forum: General
- Topic: Customer-Group Relations
- Replies: 11
- Views: 5087
Re: Customer-Group Relations
Great! Thank you so much for your help! Much appreciated, Sir.crythias wrote:otrs/Kernel/Modules/AdminCustomerUserGroup.pm
Code: Select all
sub Run { my ( $Self, %Param ) = @_; # set search limit my $SearchLimit = 200;
- 13 Jun 2012, 19:32
- Forum: General
- Topic: Customer-Group Relations
- Replies: 11
- Views: 5087
Re: Customer-Group Relations
I looked at the thread but I cannot find where I make a change?crythias wrote:Check this thread as well: viewtopic.php?f=62&t=12487#p48841
- 13 Jun 2012, 19:31
- Forum: General
- Topic: Customer-Group Relations
- Replies: 11
- Views: 5087
Re: Customer-Group Relations
you can search for customers in the screen (if you have at least 3.0.x)
I guess for now I will really have to manually look for those customers who are not being displayed due to these 200 limitations. It is kind of inconvenient though and I am just not familiar with Perl to find where it might be ...
I guess for now I will really have to manually look for those customers who are not being displayed due to these 200 limitations. It is kind of inconvenient though and I am just not familiar with Perl to find where it might be ...
- 12 Jun 2012, 23:48
- Forum: General
- Topic: Customer-Group Relations
- Replies: 11
- Views: 5087
Re: Customer-Group Relations
I went to Manage Customer-Services Relations and it also limits me to 200 customers... So if I go with Services / SLA solution, it still won't solve my problem
- 12 Jun 2012, 23:46
- Forum: General
- Topic: Customer-Group Relations
- Replies: 11
- Views: 5087
Re: Customer-Group Relations
Yes, I realize that but at this point I will have to re-do all the settings. Person who set it all up is no longer employed with our company and he created most configurations.
- 12 Jun 2012, 23:39
- Forum: General
- Topic: Customer-Group Relations
- Replies: 11
- Views: 5087
Re: Customer-Group Relations
Our customers all have different permissions, which is why I assign them to different groups. For example, some have 24/7 support and some do not... So I need to be able to assign new customers to a group that has permissions to access a queue that only 24/7 support customers have access to ...
- 12 Jun 2012, 23:04
- Forum: General
- Topic: Customer-Group Relations
- Replies: 11
- Views: 5087
Customer-Group Relations
I am hoping to resolve this issue soon. Here is what happens:
When number of our customers exceeds 200, I can only see 200 in Customer-Group Relations tab. That means I can only set permissions for first 200 customers and the rest of them do not get displayed in these settings. Is there a way I can ...
When number of our customers exceeds 200, I can only see 200 in Customer-Group Relations tab. That means I can only set permissions for first 200 customers and the rest of them do not get displayed in these settings. Is there a way I can ...
- 12 Jun 2012, 21:10
- Forum: General
- Topic: Check the new OCB Blog!
- Replies: 3
- Views: 2710
Re: Check the new OCB Blog!
Great idea! Why did you guys stop working on this project though? I think OTRS users / admins need blogs like these
- 12 Jun 2012, 19:52
- Forum: Help
- Topic: Moving OTRS from SVN to production
- Replies: 0
- Views: 1019
Moving OTRS from SVN to production
We have set up a testing environment for our Ticket System, and it is in SVN. However, live Ticket System is not in SVN yet. We want to merge Trunk of a testing environment to live site's trunk. I would like to know if otrs has an internal mail queue that could build up if, for example, email is ...