Search found 1223 matches

by Abacre
Fri Apr 01, 2005 7:05 pm
Forum: Advanced Find and Replace
Topic: Another noobie question :>
Replies: 3
Views: 10091

Hi, There are few things to consider: 1. When you run Find operation it runs in "native" mode. It means that OR operator is applied. You may try PHRASE mode for Find. 2. Replace tab: try to remove trailing spaces if you have it in your search for phrase. 3. Be sure that the strings are exactly the s...
by Abacre
Fri Apr 01, 2005 9:22 am
Forum: Advanced Log Analyzer
Topic: empty reports.ini / ala stops working after initial run
Replies: 5
Views: 54585

Hi, I need more information. I tested ALA with the following command line: ALA.exe -analyze:all But it works fine. I mean that reports are produced carefully. What do you mean about reports.ini file "blown away"? When ALA started in command line is Reports tab empty or not? I mean are reports loaded...
by Abacre
Fri Apr 01, 2005 8:54 am
Forum: Advanced Find and Replace
Topic: Regular expressions
Replies: 2
Views: 8819

Hi Anton,

In your case you may use, for example,
\w
it's alphanumeric char.

So the final expression for you will be:

Search for:
go \w+ \w+ walk

Where \w+ means one or more alphanumeric chars.

Read more about regular expressions syntax:
http://www.abacre.com/afr/manual/regexpsyntax.htm
by Abacre
Wed Mar 30, 2005 7:59 pm
Forum: Advanced Log Analyzer
Topic: empty reports.ini / ala stops working after initial run
Replies: 5
Views: 54585

Hi,

sorry, not yet, I will force this question tomorrow morning.

Roman
by Abacre
Wed Mar 30, 2005 1:41 pm
Forum: Advanced Find and Replace
Topic: using afr to increment values
Replies: 4
Views: 17752

Hi,

It's not possible to do now with AFR, but I know how to quickly
implement it (we already have a pretty framework for it). We will develop it this week. I will send you a message
then.
by Abacre
Tue Mar 29, 2005 8:42 am
Forum: Advanced Find and Replace
Topic: dynamic find & replace
Replies: 1
Views: 6923

Hi, I started to write the answer about using "Cyrlic Replace" but then I found out that in this case you have to create the file with names manually. So we added new feature into the program that can do the job automatically. It's called "Include File Name into search scope" What should you do step...
by Abacre
Thu Mar 24, 2005 3:33 pm
Forum: Advanced Find and Replace
Topic: read only files
Replies: 4
Views: 12122

By default this option is in OFF position.

So you may use AFR to scan all your configuration files and add the
following line there:
ForceReadOnlyFiles=true
by Abacre
Thu Mar 24, 2005 11:21 am
Forum: Advanced Find and Replace
Topic: read only files
Replies: 4
Views: 12122

Hi, Please download the latest version of the program: m This is only updated EXE file. You need to extract executable file from zip archive into folder where the program is installed. So you will replace old executable file by this new one. Then go to main menu - Action - Options - General: check O...
by Abacre
Tue Mar 15, 2005 11:18 pm
Forum: Advanced Log Analyzer
Topic: filter on host
Replies: 6
Views: 28149

Hi Andrew,

We fixed two issues for host parameter: in recognition module and in
filtering module.

Please download the latest version:
http://www.abacre.com/download/ala.zip

Does it work now?
by Abacre
Tue Mar 15, 2005 11:28 am
Forum: Advanced Find and Replace
Topic: find and replace with wild card
Replies: 6
Views: 16277

I was thinking to ask you: do all URL in your example end up with FALSE string or not? If it's so then you may use the expression you wrote. I was not sure that all your URLs ends with FALSE. Therefore I suggested the universal expression that works with all URLs. In this example $1 is not the end o...
by Abacre
Mon Mar 14, 2005 6:30 pm
Forum: Advanced Log Analyzer
Topic: filter on host
Replies: 6
Views: 28149

Tomorrow I will try your log files to see what it can be there.
by Abacre
Mon Mar 14, 2005 4:32 pm
Forum: Advanced Log Analyzer
Topic: filter on host
Replies: 6
Views: 28149

Maybe it's the problem of caching. Please remove cache files located in:
C:\Program Files\Advanced Log Analyzer\Cache

or switch off "Incremental analysis" option in Options window.
Does it work now?
by Abacre
Mon Mar 14, 2005 2:26 pm
Forum: Advanced Find and Replace
Topic: find and replace with wild card
Replies: 6
Views: 16277

Yes, you are right. I was talking about Batch replace mode.
So you should go to "Batch replace" tab and check ON "Use regular
expressions" option.

If you check "Just find" it will only find without replacements.

In future we are going to add r.e. into Find operation (tab).
by Abacre
Mon Mar 14, 2005 2:01 pm
Forum: Advanced Find and Replace
Topic: find and replace with wild card
Replies: 6
Views: 16277

Bonjour Jean-Claude, Please study in details the syntax of regular expressions: m So in r.e. you should use .* instead of * Therefore .* means any even empty char. If there is should be at least one char between http and CHVI then you should use .+ If you want to simply remove the left part and repl...
by Abacre
Mon Mar 14, 2005 11:54 am
Forum: Advanced Find and Replace
Topic: Please Help.
Replies: 3
Views: 10099

In regular expressions \r\n means new line.
Read more:
http://www.abacre.com/afr/manual/regexpsyntax.htm