Demo Discussion
Forum Config Examples Contributions Vulnerabilities
  Discussion forum about ELOG, Page 150 of 238  Not logged in ELOG logo
icon4.gif   Extending attribute list, posted by Paul O'Shaughnessy on Fri May 2 00:58:04 2008 

Hello everyone, I am new to the forum.

I currently have an attribute which is a list. From this drop down menu, I can only access around 100 options (ELog restriction I think). How can I extend my drop down list to say 200?

Example:

Attributes = RB

Options RB = a, b, c, ...,etc.

Thanks,

Paul

    icon2.gif   Re: Extending attribute list, posted by Stefan Ritt on Mon May 5 08:51:10 2008 

Paul O'Shaughnessy wrote:

Hello everyone, I am new to the forum.

I currently have an attribute which is a list. From this drop down menu, I can only access around 100 options (ELog restriction I think). How can I extend my drop down list to say 200?

Example:

Attributes = RB

Options RB = a, b, c, ...,etc.

The number of 100 options is defined in elogd.c with

#define MAX_N_LIST  100

You could try to increase this to 200, but I have no idea if you will hit some other memory limit then. So what about conditional attributes? You subdivide your list into several smaller lists, like

Attributes = Category, RB
Options Category = Cat1{1}, Cat2{2}
{1}Options RB = a,b,c,d...
{2}Options RB = e,f,g,h,...
this is then also easier to handle, as compared to select a value from a very long list.
       icon2.gif   Re: Extending attribute list, posted by Paul O'Shaughnessy on Tue May 6 14:49:54 2008 

Stefan Ritt wrote:

Paul O'Shaughnessy wrote:

Hello everyone, I am new to the forum.

I currently have an attribute which is a list. From this drop down menu, I can only access around 100 options (ELog restriction I think). How can I extend my drop down list to say 200?

Example:

Attributes = RB

Options RB = a, b, c, ...,etc.

The number of 100 options is defined in elogd.c with

#define MAX_N_LIST  100

You could try to increase this to 200, but I have no idea if you will hit some other memory limit then. So what about conditional attributes? You subdivide your list into several smaller lists, like

Attributes = Category, RB
Options Category = Cat1{1}, Cat2{2}
{1}Options RB = a,b,c,d...
{2}Options RB = e,f,g,h,...
this is then also easier to handle, as compared to select a value from a very long list.

 

Stefan,

Thanks for that advice. I have made that change to the elogd.c file, but the only problem I don't know how to compile Elog to make that change take effect. I did the stop and restart of the elog  service in windows, but that made no difference. How do I compile ELog? Sorry for my ignorance, but I am fairly new to Elog.

          icon2.gif   Re: Extending attribute list, posted by Stefan Ritt on Tue May 6 15:17:52 2008 

Paul O'Shaughnessy wrote:

Stefan Ritt wrote:

Paul O'Shaughnessy wrote:

Hello everyone, I am new to the forum.

I currently have an attribute which is a list. From this drop down menu, I can only access around 100 options (ELog restriction I think). How can I extend my drop down list to say 200?

Example:

Attributes = RB

Options RB = a, b, c, ...,etc.

The number of 100 options is defined in elogd.c with

#define MAX_N_LIST  100

You could try to increase this to 200, but I have no idea if you will hit some other memory limit then. So what about conditional attributes? You subdivide your list into several smaller lists, like

Attributes = Category, RB
Options Category = Cat1{1}, Cat2{2}
{1}Options RB = a,b,c,d...
{2}Options RB = e,f,g,h,...
this is then also easier to handle, as compared to select a value from a very long list.

 

Stefan,

Thanks for that advice. I have made that change to the elogd.c file, but the only problem I don't know how to compile Elog to make that change take effect. I did the stop and restart of the elog  service in windows, but that made no difference. How do I compile ELog? Sorry for my ignorance, but I am fairly new to Elog.

You need a C compiler to compile Elog under Windows. If you don't have one, I would suggest to follow the advice to use conditional attributes. This does not require a recompilation of Elog.

             icon2.gif   Re: Extending attribute list, posted by Paul O'Shaughnessy on Wed May 7 17:33:54 2008 

Stefan Ritt wrote:

Paul O'Shaughnessy wrote:

Stefan Ritt wrote:

Paul O'Shaughnessy wrote:

Hello everyone, I am new to the forum.

I currently have an attribute which is a list. From this drop down menu, I can only access around 100 options (ELog restriction I think). How can I extend my drop down list to say 200?

Example:

Attributes = RB

Options RB = a, b, c, ...,etc.

The number of 100 options is defined in elogd.c with

#define MAX_N_LIST  100

You could try to increase this to 200, but I have no idea if you will hit some other memory limit then. So what about conditional attributes? You subdivide your list into several smaller lists, like

Attributes = Category, RB
Options Category = Cat1{1}, Cat2{2}
{1}Options RB = a,b,c,d...
{2}Options RB = e,f,g,h,...
this is then also easier to handle, as compared to select a value from a very long list.

 

Stefan,

Thanks for that advice. I have made that change to the elogd.c file, but the only problem I don't know how to compile Elog to make that change take effect. I did the stop and restart of the elog  service in windows, but that made no difference. How do I compile ELog? Sorry for my ignorance, but I am fairly new to Elog.

You need a C compiler to compile Elog under Windows. If you don't have one, I would suggest to follow the advice to use conditional attributes. This does not require a recompilation of Elog.

Stefan,

I can get my hand on a C compiler. What the process involved?

Thanks,

Paul

                icon2.gif   Re: Extending attribute list, posted by Stefan Ritt on Wed May 7 19:55:30 2008 

I can get my hand on a C compiler. What the process involved?

 Sorry, but teaching you how to compile C programs is beyond the scope of this forum. Please buy a book for that. Most C compilers also comes with some decent documentation. You might try gcc under cygwin or Visual C++.

                   icon2.gif   Re: Extending attribute list, posted by Paul O'Shaughnessy on Thu May 8 09:44:48 2008 

Stefan Ritt wrote:

 

 Sorry, but teaching you how to compile C programs is beyond the scope of this forum. Please buy a book for that. Most C compilers also comes with some decent documentation. You might try gcc under cygwin or Visual C++.

Stefan,

Thanks for your help. Will get back to you on how compiling the program went.

icon5.gif   any support of encrypted logfiles?, posted by Bill Pier on Tue May 6 21:40:05 2008 

I'm sure this topic has been visited previously, but a search of this forum didn't show any results.

Is there are support or already proven method of encrypting the logfiles that Elog serves up?

 

thanks,

Bill

 

    icon2.gif   Re: any support of encrypted logfiles?, posted by Stefan Ritt on Tue May 6 21:47:32 2008 

Bill Pier wrote:

I'm sure this topic has been visited previously, but a search of this forum didn't show any results.

Is there are support or already proven method of encrypting the logfiles that Elog serves up? 

There is no native support for encryption inside ELOG, but you can use some external tool to achieve encryption. You can for example use TrueCrypt to mount a virtual encrypted drive, where you store your log files.

icon5.gif   configuration of rss feeds, posted by W.Koster on Fri Apr 25 14:49:41 2008 
Is it possible to change what is being shown in the rss-feed ? (like only name, date and subject in the list and text and other attributes in the text-pane below the rss-feed list (I hope you can figure out what I mean). Regards, W.
    icon2.gif   Re: configuration of rss feeds, posted by Stefan Ritt on Fri Apr 25 17:19:27 2008 

W.Koster wrote:
Is it possible to change what is being shown in the rss-feed ? (like only name, date and subject in the list and text and other attributes in the text-pane below the rss-feed list (I hope you can figure out what I mean). Regards, W.

Have you tried the "RSS Title" option?

       icon2.gif   Re: configuration of rss feeds, posted by W.Koster on Mon Apr 28 13:37:01 2008 
> Have you tried the RSS Title option?

doh ... thanks, works perfectly (well apart from the lost end-of-lines in the text portion)
icon13.gif   Increment a field automatically on a new thread vs every entry, posted by Chuck Brost on Thu Apr 24 22:18:24 2008 

I may have missed it when reading the logs, if so, sorry about that, but I would like to know if there is a way to set a field, let us call it "process run"  Ok let me give you some details on this.

a process run may have several "work orders" or sets of parts/items in it, so it will have several separate entries in the log  such as:

date##, run123, part 1, quantity, comment

date##, run123, part2, quantity, comment

date##, run123, part3, quantity, comment

date##, run123, part4, quantity, comment

I thought perhaps to have them use the reply function to add the other 3 items of the same run, and that would work if I could find a way to set 'process run' to auto increment, say perhaps, when the next 'New' entry was entered.  Is there something in place that can already do this?  If this is possible, I thought I would see if I can change the button for 'New' to something like 'New Run' and reply to 'Add Workorder' or something along that line so there is no confusion when entering the data.

Any suggestions you might provide are greatfully accepted.

Chuck

    icon2.gif   Re: Increment a field automatically on a new thread vs every entry, posted by Chuck Brost on Fri Apr 25 19:33:24 2008 

Ok, nevermind that one, Dumb Question I think, now that I have figured out that the field I was concerned with does not increment in a reply already.  So.. that only leaves my one question, is there somewhere that I can change the text, not the action, on the menu so that I can do a reply, but have the link list as something like "New Item".?

Chuck Brost wrote:

I may have missed it when reading the logs, if so, sorry about that, but I would like to know if there is a way to set a field, let us call it "process run"  Ok let me give you some details on this.

a process run may have several "work orders" or sets of parts/items in it, so it will have several separate entries in the log  such as:

date##, run123, part 1, quantity, comment

date##, run123, part2, quantity, comment

date##, run123, part3, quantity, comment

date##, run123, part4, quantity, comment

I thought perhaps to have them use the reply function to add the other 3 items of the same run, and that would work if I could find a way to set 'process run' to auto increment, say perhaps, when the next 'New' entry was entered.  Is there something in place that can already do this?  If this is possible, I thought I would see if I can change the button for 'New' to something like 'New Run' and reply to 'Add Workorder' or something along that line so there is no confusion when entering the data.

Any suggestions you might provide are greatfully accepted.

Chuck

       icon2.gif   Re: Increment a field automatically on a new thread vs every entry, posted by Stefan Ritt on Sat Apr 26 09:26:53 2008 

Chuck Brost wrote:

Ok, nevermind that one, Dumb Question I think, now that I have figured out that the field I was concerned with does not increment in a reply already.  So.. that only leaves my one question, is there somewhere that I can change the text, not the action, on the menu so that I can do a reply, but have the link list as something like "New Item".?

 

Unfortunately this is not possible at the moment.

icon5.gif   how to set locale for date/time, posted by svrmarty on Thu Mar 27 14:15:12 2008 

it seems out systemlang is en_US,

#date
Thu Mar 27 14:11:59 CET 2008

and i want to change the local lang only for the elogd.

i tried it with .bash_profile in the elog homedir with

LANG=de_AT
export LANG

but it doesn't work.


how can i change it to get  ?

#date
Don Mär 27 14:09:14 CET 2008

 

thx

    icon2.gif   Re: how to set locale for date/time, posted by Stefan Ritt on Fri Apr 4 08:20:06 2008 

svrmarty wrote:

it seems out systemlang is en_US,

#date
Thu Mar 27 14:11:59 CET 2008

and i want to change the local lang only for the elogd.

i tried it with .bash_profile in the elog homedir with

LANG=de_AT
export LANG

but it doesn't work.


how can i change it to get  ?

#date
Don Mär 27 14:09:14 CET 2008

I investigated this and found that elogd itself does not use the locale properly, so I have to change the code. I will let you know when I fixed this problem.

       icon2.gif   Re: how to set locale for date/time, posted by svrmarty on Sun Apr 6 21:13:27 2008 

Stefan Ritt wrote:

svrmarty wrote:

it seems out systemlang is en_US,

#date
Thu Mar 27 14:11:59 CET 2008

and i want to change the local lang only for the elogd.

i tried it with .bash_profile in the elog homedir with

LANG=de_AT
export LANG

but it doesn't work.


how can i change it to get  ?

#date
Don Mär 27 14:09:14 CET 2008

I investigated this and found that elogd itself does not use the locale properly, so I have to change the code. I will let you know when I fixed this problem.

thx

    icon2.gif   Re: how to set locale for date/time, posted by Stefan Ritt on Wed Apr 9 22:14:05 2008 

svrmarty wrote:

it seems out systemlang is en_US,

#date
Thu Mar 27 14:11:59 CET 2008

and i want to change the local lang only for the elogd.

i tried it with .bash_profile in the elog homedir with

LANG=de_AT
export LANG

but it doesn't work.


how can i change it to get  ?

#date
Don Mär 27 14:09:14 CET 2008

You do not have to change the environment variable, this is all handled inside elogd. I fixed teh above error in SVN revision 2098. Can you try it?

       icon2.gif   Re: how to set locale for date/time, posted by svrmarty on Mon Apr 21 16:14:53 2008 

Stefan Ritt wrote:

svrmarty wrote:

it seems out systemlang is en_US,

#date
Thu Mar 27 14:11:59 CET 2008

and i want to change the local lang only for the elogd.

i tried it with .bash_profile in the elog homedir with

LANG=de_AT
export LANG

but it doesn't work.


how can i change it to get  ?

#date
Don Mär 27 14:09:14 CET 2008

You do not have to change the environment variable, this is all handled inside elogd. I fixed teh above error in SVN revision 2098. Can you try it?

is there any new option i can use/configure ?

i still get the english datetime

Eingabezeit: Thu Mar 27 09:27:41 2008

          icon2.gif   Re: how to set locale for date/time, posted by Stefan Ritt on Tue Apr 22 09:30:24 2008 

svrmarty wrote:

Stefan Ritt wrote:

svrmarty wrote:

it seems out systemlang is en_US,

#date
Thu Mar 27 14:11:59 CET 2008

and i want to change the local lang only for the elogd.

i tried it with .bash_profile in the elog homedir with

LANG=de_AT
export LANG

but it doesn't work.


how can i change it to get  ?

#date
Don Mär 27 14:09:14 CET 2008

You do not have to change the environment variable, this is all handled inside elogd. I fixed teh above error in SVN revision 2098. Can you try it?

is there any new option i can use/configure ?

i still get the english datetime

Eingabezeit: Thu Mar 27 09:27:41 2008

As I told you, you have to upgrade to SVN revision 2098 or later.

             icon2.gif   Re: how to set locale for date/time, posted by svrmarty on Fri Apr 25 14:52:26 2008 

Stefan Ritt wrote:

svrmarty wrote:

Stefan Ritt wrote:

svrmarty wrote:

it seems out systemlang is en_US,

#date
Thu Mar 27 14:11:59 CET 2008

and i want to change the local lang only for the elogd.

i tried it with .bash_profile in the elog homedir with

LANG=de_AT
export LANG

but it doesn't work.


how can i change it to get  ?

#date
Don Mär 27 14:09:14 CET 2008

You do not have to change the environment variable, this is all handled inside elogd. I fixed teh above error in SVN revision 2098. Can you try it?

is there any new option i can use/configure ?

i still get the english datetime

Eingabezeit: Thu Mar 27 09:27:41 2008

As I told you, you have to upgrade to SVN revision 2098 or later.

 

i've updated to ELOG V2.7.3-2104

 

                icon2.gif   Re: how to set locale for date/time, posted by Stefan Ritt on Fri Apr 25 17:15:12 2008 Capture.png

svrmarty wrote:

Stefan Ritt wrote:

svrmarty wrote:

 

is there any new option i can use/configure ?

i still get the english datetime

Eingabezeit: Thu Mar 27 09:27:41 2008

As I told you, you have to upgrade to SVN revision 2098 or later.

 i've updated to ELOG V2.7.3-2104

Well, then you should get German locale. I just tried with the same version and following elogd.cfg, so I don't know what you are doing wrong:

[global]
port = 8080
language = german

[demo]
Attributes = Author, Type, Category, Subject

Capture.png

                   icon2.gif   Re: how to set locale for date/time, posted by svrmarty on Fri Apr 25 19:56:48 2008 

Stefan Ritt wrote:

svrmarty wrote:

Stefan Ritt wrote:

svrmarty wrote:

 

is there any new option i can use/configure ?

i still get the english datetime

Eingabezeit: Thu Mar 27 09:27:41 2008

As I told you, you have to upgrade to SVN revision 2098 or later.

 i've updated to ELOG V2.7.3-2104

Well, then you should get German locale. I just tried with the same version and following elogd.cfg, so I don't know what you are doing wrong:

[global]
port = 8080
language = german

[demo]
Attributes = Author, Type, Category, Subject

Capture.png

great, works now

thx a lot

i had to create de_DE locales,  we only use de_AT, this is for austria, where we live

 

 

icon3.gif   LaTeX support, posted by Jochen Krempel on Wed Apr 23 18:59:30 2008 

I would appreciate if elog could provide a simple support for mathematical expressions.

A solution similar to wikimedia should be easy to implement and would help a lot.
http://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Windows#Alternative_Solution

The idea is to parse the elog entry for a tag (e.g.  <math></math>), extract the code, wrap it into a latex file, and pass this to latex, GhostScript, and ImageMagic. (The latter are already used by Elog, therefore the changes should not be too big.) The resulting image file would then be referenced by the  elog html code.

Of course, the FCKeditor would not support LaTeX. However, the majority of elog-useres should be scientists and rather familiar with LaTeX. Therefore it should be fine if the original LaTeX code is saved (e.g. in the ALT-tag of the image) and the replacement "code to image" is undone for editing.

Kind regards,
Jochen

    icon2.gif   Re: LaTeX support, posted by Stefan Ritt on Thu Apr 24 07:51:23 2008 

Jochen Krempel wrote:

I would appreciate if elog could provide a simple support for mathematical expressions.

A solution similar to wikimedia should be easy to implement and would help a lot.
http://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Windows#Alternative_Solution

The idea is to parse the elog entry for a tag (e.g.  <math></math>), extract the code, wrap it into a latex file, and pass this to latex, GhostScript, and ImageMagic. (The latter are already used by Elog, therefore the changes should not be too big.) The resulting image file would then be referenced by the  elog html code.

Of course, the FCKeditor would not support LaTeX. However, the majority of elog-useres should be scientists and rather familiar with LaTeX. Therefore it should be fine if the original LaTeX code is saved (e.g. in the ALT-tag of the image) and the replacement "code to image" is undone for editing.

We had already some time ago a request to integrate mimetex (elog:1827). I will see what I can do there.

icon3.gif   Request: elog as a "web service" ? (xml / soap), posted by Willem Koster on Wed Apr 23 10:53:58 2008 

We're using elog as our CMDB, but now management wants us to employ "web services" and I fear going to another tool (elog is fitting the admins like a glove, so we'd rather keep it)

Is it possible to configure elog to be able to run as a web-service ?  (basically getting xml-output according to a specific (SOAP) schema instead of html output)

http://en.wikipedia.org/wiki/Web_services

A 'Web service' (also Web Service) is defined by the W3C as "a software system designed to support interoperable Machine to Machine interaction over a network." Web services are frequently just Web APIs that can be accessed over a network, such as the Internet, and executed on a remote system hosting the requested services.

The W3C Web service definition encompasses many different systems, but in common usage the term refers to clients and servers that communicate using XML messages that follow the SOAP standard. Common in both the field and the terminology is the assumption that there is also a machine readable description of the operations supported by the server written in the Web Services Description Language (WSDL). The latter is not a requirement of a SOAP endpoint, but it is a prerequisite for automated client-side code generation in many Java and .NET SOAP frameworks (frameworks such as Spring and Apache CXF being notable exceptions). Some industry organizations, such as the WS-I, mandate both SOAP and WSDL in their definition of a Web service.

    icon2.gif   Re: Request: elog as a "web service" ? (xml / soap), posted by Stefan Ritt on Wed Apr 23 11:51:06 2008 

Willem Koster wrote:

We're using elog as our CMDB, but now management wants us to employ "web services" and I fear going to another tool (elog is fitting the admins like a glove, so we'd rather keep it)

Is it possible to configure elog to be able to run as a web-service ?  (basically getting xml-output according to a specific (SOAP) schema instead of html output)

At the moment no support for a Web Service is planned.

icon5.gif   conditional options are not working in find , posted by Arno Teunisse on Sat Apr 5 13:56:42 2008 

Hello

In my config file I have the following :

Options Head = AIX61{1},AIX53{2}, AIX52{3},HMC{4},CL_CLUSTER{5},VIRTUALIZATION{6},MICROCODE{7},BG_BLUEGENE{8}

{1} Options Topic = SECURITY, HIPER,TL00,TIPS
{2} Options Topic = SECURITY, HIPER,TL07,TL06,TL05,TL04,TL03,TL02,TL01 ,TIPS
{3} Options Topic = SECURITY, HIPER,TL10,TL09,TL08,TL07,TL06,TL05,TL04,TL03,TL02,TL01 ,TIPS
{4} Options Topic = HMC_CORRECTIVE, HMC_SECURITY,HMC_FIXES,HMC_INSTRUCT,HMC_MEDIA,HMC_DOCUMENT
{5} Options Topic = CL_DEEPCOMPUTING,CL_SYSMGMT,CL_GPFS,CL_LOADLEVELER,CL_ESSL,CL_PARALLEL_ESSL,CL_SWITCH,CL_RSCT,CL_PENV,CL_INIFINI
{6} Options Topic = PLM,VIOS_PM,VESS,VIOS,VIOS_WPM
{7} Options Topic = 2104-XU3,7017-S80,7017-S70,7020-40P,7025-F50,7025-F40,7025-F80,7026-B80,7026-H80,7026-M80,7028-6C4,7028-6E1,7029-6E3,7025-H50,702X-H70,7038-6M2,7039-651,7040-6X1,7043-140,7043-240,7043-260,7044-170,7248-43P,7043-150,704X-270,8203-E4A,8204-E8A,8844-3AZ,9076-SP,9110-510,9110-51A,9111-285,9111-520,9112-265,9113-550,9114-275,9115-505,9116-561,9117-570,9117-MMA,9118-575,9119-590,9119-595,9123-XXX,9124-XXX,9131-52A,9133-55A,9406-MMA,7037-A50,7047-185,ADAPTERS,DASD,DRIVES,CERTIFIED,OTHER
{8} Options Topic = BG_RELEASES,BG_FIXES,BG_COMPILERS,BG_REDBOOKS,BG_GPFS,BG_ESSL,BG_LOADLEVELER,BG_CSM

All is working fine when creating new entries. But when i use the  find command window,  i only see the Head options and selecting one of them,

the Topic options will not show up like they do when creating new entries.

I've installed the latest elog on Fedora ( version ELOG V2.7.3-2058 ) , but it's the same as the window version i'm using .

Would be nice if the user can search with the same items he used entering the data into the form.

Thanks for you're time.

greetings Arno Teunisse

 

 

 

    icon2.gif   Re: conditional options are not working in find , posted by Stefan Ritt on Thu Apr 17 22:17:05 2008 

Arno Teunisse wrote:

Would be nice if the user can search with the same items he used entering the data into the form.

I finally found some time to implement conditional attributes in the find form. This new feature is contained in SVN revision 2104 and in the Windows version 2.7.3-3.

       icon2.gif   Re: conditional options are not working in find , posted by Arno Teunisse on Thu Apr 17 22:40:12 2008 

Stefan Ritt wrote:

Arno Teunisse wrote:

Would be nice if the user can search with the same items he used entering the data into the form.

I finally found some time to implement conditional attributes in the find form. This new feature is contained in SVN revision 2104 and in the Windows version 2.7.3-3.

Hello Stefan

Just downloaded the windows version. It is working great !! Thanks, for this quick solution.. and you're time..

Just like elog more and more...

 

 

          icon2.gif   Re: conditional options are not working in find , posted by Arno Teunisse on Thu Apr 17 23:20:50 2008 

Arno Teunisse wrote:

Stefan Ritt wrote:

Arno Teunisse wrote:

Would be nice if the user can search with the same items he used entering the data into the form.

I finally found some time to implement conditional attributes in the find form. This new feature is contained in SVN revision 2104 and in the Windows version 2.7.3-3.

Hello Stefan

Just downloaded the windows version. It is working great !! Thanks, for this quick solution.. and you're time..

Just like elog more and more...

 

 

Just noticed that in IExplorer and Firefox when creating a new entrie i got a popup with the following text in it : Unknown toolbar item "ShowBlocks"

When clicking OK : everything is working. Think it has to do with FCKedit, but I'm not shure.

 

             icon2.gif   Re: conditional options are not working in find , posted by Stefan Ritt on Fri Apr 18 07:47:54 2008 

Arno Teunisse wrote:

Just noticed that in IExplorer and Firefox when creating a new entrie i got a popup with the following text in it : Unknown toolbar item "ShowBlocks"

When clicking OK : everything is working. Think it has to do with FCKedit, but I'm not shure.

There must be an old version of FCKedit. Maybe just clear your browser's cache and try again. You can also try to download elog273-3.exe again (the one from yesterday I built at home on my laptop, so maybe something went wrong...). The current one (dated April 18th) I build at the institute.

                icon2.gif   Re: conditional options are not working in find , posted by Arno Teunisse on Fri Apr 18 20:30:12 2008 

Stefan Ritt wrote:

Arno Teunisse wrote:

Just noticed that in IExplorer and Firefox when creating a new entrie i got a popup with the following text in it : Unknown toolbar item "ShowBlocks"

When clicking OK : everything is working. Think it has to do with FCKedit, but I'm not shure.

There must be an old version of FCKedit. Maybe just clear your browser's cache and try again. You can also try to download elog273-3.exe again (the one from yesterday I built at home on my laptop, so maybe something went wrong...). The current one (dated April 18th) I build at the institute.

Hello Stefan

You're right. Probably it's the old FCKedit that was in the browser cache. Clearing it and the problem was gone.

So there's nothing wrong with you're laptop.

Thank's again for the fix..

 

ELOG V3.1.5-3fb85fa6