logminer-users Mailing List for LogMiner
Brought to you by:
tellini
You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
(3) |
Jun
(10) |
Jul
(2) |
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Simone T. <te...@us...> - 2015-07-16 08:55:32
|
Il giorno 15/lug/2015, alle ore 10:42, julian benadit <ben...@gm...> ha scritto: > > Iam research scholar working in the topic web mining , I am trying to install Logminer-1.23 version in Ubuntu 12.04 i386 . But when tried to install it using make command it gives error messages which is shown as screen shot picture.kindly help me how to debug these error and how to work with this log miner tool. Alternatively pls send me the exact operating system to install these software.Also I have already installed the suporting pacakge libpqxx3.1 version. it seems like they removed a function in libpqxx 3. LogMiner was build using v2.5 of that library (I don’t remember if it compiled with 2.6 either). You might look for the older version, or replace the sqlesc() calls with the function that took its place, which should be transaction::esc(), if I’m not mistaken, but I’ve only gave it a very quick look... -- Simone Tellini http://tellini.info <http://tellini.info/> |
|
From: julian b. <ben...@gm...> - 2015-07-15 08:43:07
|
Dear author, Iam research scholar working in the topic web mining , I am trying to install Logminer-1.23 version in Ubuntu 12.04 i386 . But when tried to install it using *make* command it gives error messages which is shown as screen shot picture.kindly help me how to debug these error and how to work with this log miner tool. Alternatively pls send me the exact operating system to install these software.Also I have already installed the suporting pacakge libpqxx3.1 version. Pls hep me out to work with this tool. |
|
From: Simone T. <te...@us...> - 2007-09-12 12:46:09
|
Il giorno 12/set/07, alle ore 14:32, pe...@wo... ha
scritto:
> I've finally got my site launched and, as such finally have log
> files with much in them. I've been getting a few error (or
> warnings acctualy):
>
> WARNING: nonstandard use of \\ in a string literal
> LINE 1: SELECT replace( $1 , '%5c', '\\' )
> ^
> HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
> QUERY: SELECT replace( $1 , '%5c', '\\' )
this is a warning that appears when using PostgreSQL 8.2+ (or maybe
even earlier version, I can't remember). I chose not to fix it in the
distribution because the fix is not compatible with previous 8.x
versions.
You can either:
- change the accesses_insert() stored procedure as the HINT
suggests, i.e. "replace( $1 , '%5c', '\\' )" would become "replace
( $1 , '%5c', E'\\' )"
- add the following line to your postgresql.conf:
escape_string_warning = off
- just ignore the warnings ;-)
--
Simone Tellini
http://tellini.info
|
|
From: <pe...@wo...> - 2007-09-12 12:32:40
|
I've finally got my site launched and, as such finally have log files with much in them. I've been getting a few error (or warnings acctualy):
WARNING: nonstandard use of \\ in a string literal
LINE 1: SELECT replace( $1 , '%5c', '\\' )
^
HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
QUERY: SELECT replace( $1 , '%5c', '\\' )
CONTEXT: PL/pgSQL function "accesses_insert" line 80 at assignment
Processing log file: /home/htdocs/stats/wbg-logs/old...
WARNING: nonstandard use of escape in a string literal
LINE 1: ...:0:0', 'dd/mm/yyyy hh24:mi:ss' ), 18052, 0, 0, 1, '\023x\220...
^
HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
WARNING: nonstandard use of escape in a string literal
LINE 1: ...000\000\000\000\000\000\000\000\000\000\000\000', '\023x\220...
^
HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
WARNING: nonstandard use of escape in a string literal
LINE 1: ...000\000\000\000\000\000\000\000\000\000\000\000', 'log\000\0...
^
HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
Things seem to be working fine, the stats displayed look sane, and are similar to the stats I'm getting from my hosting provider. I can send the log file if you'd like. It's a linux/apache server, godaddy's shared linux hosting. I'd look into a little myself if I had more time, or more (recent) experience with PL/pgSQL, but like I said, everything seems to be working fine anyway.
Peter Witkop
|
|
From: Simone T. <te...@us...> - 2007-06-19 08:54:53
|
Il giorno 18/giu/07, alle ore 19:16, Simone Tellini ha scritto: > By the way, ProcessSite() is leaking LogReader instances in your code: > it's not a big problem since the memory is released on exit, but I'll > fix it. I'll let you know when the code is on CVS. I've just committed it. I'll pack a release today as well. -- Simone Tellini http://tellini.info |
|
From: Simone T. <te...@us...> - 2007-06-18 17:16:17
|
On Mon, 18 Jun 2007 09:57:22 -0700 pe...@wo... wrote: p> The one thing I did need though, was the ability to read all the logs in a given directory. [...] p> I've attached both files I modified (logminer.h and logminer.cpp). Thanks for the code. I'll integrate it into the CVS tree as soon as possible. By the way, ProcessSite() is leaking LogReader instances in your code: it's not a big problem since the memory is released on exit, but I'll fix it. I'll let you know when the code is on CVS. -- Simone Tellini http://tellini.info |
|
From: <pe...@wo...> - 2007-06-18 16:57:33
|
I've just tried out log miner for a new site I'm puting together, and I really like it so far. The one thing I did need though, was the ability to read all the logs in a given directory. I put together a quick hack to do that. It's a touch rough (since I haven't used C++ since college), but it does what I need it to, which is to determine if the Log in the config file refers to a directory, and if so, read all the files therein. Since I don't know diff well enough to make a nice clean patch, I've attached both files I modified (logminer.h and logminer.cpp). This works on FreeBSD, and I think it ought to be pretty portable. Peter witkop |
|
From: Lee R. <bw...@ea...> - 2007-03-12 21:36:54
|
>dao.cpp: In member function 'long unsigned int DAO::GetSiteID(const
std::string&)':
>dao.cpp:51: error: 'Quote' is not a member of 'pqxx'
>dao.cpp:63: error: 'Quote' is not a member of 'pqxx'
Duh. I see what is going on now... the ChangeLog for libpqxx-2.6.9
contains the following:
2006-09-13 Jeroen T. Vermeulen <jt...@xs...>
...
include/pqxx/util.hxx, src/utils.cxx, tools/rmlo.cxx:
- Removed 1.x ToString(), FromString(), and Quote() functions
So, it looks like I have to revert on the version of libpqxx and avoid the
2.6.9 version.
|
|
From: Simone T. <te...@us...> - 2007-03-12 20:47:48
|
Il giorno 12/mar/07, alle ore 20:14, Lee Roth ha scritto: > I get the following error when trying to 'make install'... I looked at > dao.cpp and I'm guessing that I need to be passing the dbname, > host, user > and password, but I'm not exactly sure how. > > Any ideas where I am going wrong? it seems like you're using an unsupported version of libpqxx I'm using version 2.5.5 and it has the pqxx::Quote method. I guess you're using an earlier version. -- Simone Tellini http://tellini.info |
|
From: Lee R. <bw...@ea...> - 2007-03-12 19:14:45
|
I am trying to install using the directions in the README file.
I get the following error when trying to 'make install'... I looked at
dao.cpp and I'm guessing that I need to be passing the dbname, host, user
and password, but I'm not exactly sure how.
Any ideas where I am going wrong?
Thanks!
-------------------------------
Making install in logminer
make[2]: Entering directory
`/home/lee/projects/logminer/LogMiner-1.17/src/logminer'
if g++ -DHAVE_CONFIG_H -I. -I. -I../../src/include -I../.. -I../../include
-g -O2 -I/usr/local/include -I/pgsql/include -MT dao.o -MD -MP -MF
".deps/dao.Tpo" -c -o dao.o dao.cpp; \
then mv -f ".deps/dao.Tpo" ".deps/dao.Po"; else rm -f
".deps/dao.Tpo"; exit 1; fi
dao.cpp: In member function 'long unsigned int DAO::GetSiteID(const
std::string&)':
dao.cpp:51: error: 'Quote' is not a member of 'pqxx'
dao.cpp:63: error: 'Quote' is not a member of 'pqxx'
dao.cpp: In member function 'long unsigned int DAO::GetReqID(pqxx::work&,
long unsigned int, const Request&)':
dao.cpp:81: error: 'Quote' is not a member of 'pqxx'
dao.cpp:96: error: 'Quote' is not a member of 'pqxx'
dao.cpp:97: error: 'Quote' is not a member of 'pqxx'
dao.cpp:98: error: 'Quote' is not a member of 'pqxx'
dao.cpp:99: error: 'Quote' is not a member of 'pqxx'
dao.cpp:100: error: 'Quote' is not a member of 'pqxx'
dao.cpp:101: error: 'Quote' is not a member of 'pqxx'
dao.cpp: In member function 'long unsigned int
DAO::GetReferrerID(pqxx::work&, const std::string&, bool)':
dao.cpp:122: error: 'Quote' is not a member of 'pqxx'
dao.cpp:136: error: 'Quote' is not a member of 'pqxx'
dao.cpp: In member function 'long unsigned int
DAO::GetUserAgentID(pqxx::work&, const std::string&)':
dao.cpp:156: error: 'Quote' is not a member of 'pqxx'
dao.cpp:169: error: 'Quote' is not a member of 'pqxx'
dao.cpp: In member function 'void DAO::InsertRequest(long unsigned int,
const LogReader&)':
dao.cpp:194: error: 'Quote' is not a member of 'pqxx'
dao.cpp:195: error: 'Quote' is not a member of 'pqxx'
dao.cpp:196: error: 'Quote' is not a member of 'pqxx'
dao.cpp:197: error: 'Quote' is not a member of 'pqxx'
make[2]: *** [dao.o] Error 1
make[2]: Leaving directory `/home/lee/projects/logminer/LogM
--
--- LR ---
|
|
From: <RH...@SI...> - 2006-10-14 10:31:09
|
秋の新着コミュニテイです。 http://xxzzxx.com/n/ |
|
From: <FD...@SI...> - 2006-10-08 09:00:46
|
ここにありました! http://maximum-happiness.com/xyz |
|
From: <XB...@YA...> - 2006-10-04 14:08:25
|
桃色の出会い・・・ http://zheshishenme.net/otona/ |
|
From: Simone T. <te...@us...> - 2006-07-13 14:56:19
|
On Thu, Jul 13, 2006 at 12:05:34PM +0800, bxf12315 wrote: > Whether you can give me to share LogMiner the design mentality. I think you should study the source code of LogMiner a bit to see how it works. Also, look at the db/schema.sql file to see how data is organised in the database. -- Simone Tellini http://tellini.info |
|
From: bxf12315 <bxf...@gm...> - 2006-07-13 04:15:32
|
Dear Tellini : I'm a student. Now ,i take part in a research project of web Log Analysis. I maybe having a central SQL repository for my log data. Because I now am begin studies. I extremely hoped can obtain your help Please forgive me to liberty. Whether you can give me to share LogMiner the design mentality. sincerely! xiaofeng bxf12315 2006-07-13 |
|
From: <sa...@ho...> - 2006-06-30 03:06:49
|
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ http://13196.com/okusama/ okusamanosusume gon...@to... okusamanosusume |
フレンド@チャット 担当 斉藤洋子です。 あやこさんよりメッセージを頂きましたので転送させて頂きます 下記のメールを転送いたします。 ***************これより下転送メール*************** フレンド@チャットを使ってる亜美っていいます。 ここって2ショットが出来るって聞いて始めて使ってます、今時間があればチャットでお話できませんか?? http://lucky777-love.net/fcx/fc02 ここからチャットに入れますよ 担当の斉藤さんっていう人にlogminer-u...@li....netさんが同じ地域の人って聞いたのでメッセージ送らせて貰いました 今はパソコンの前にいるので声かけてみてください〜 まってます♪ あやこ ***************これより上転送メール*************** 上記のメッセージを亜美さんより頂きました。 会うまでのサポートも必要であれば承りますので必要であればお伝えください。 情報を大切に保管した上での紹介となりますので、どうぞご安心ください。 フレンド@チャット担当 斉藤洋子よりメッセージ転送させて頂きました |
|
From: <fri...@ma...> - 2006-06-26 22:46:00
|
こんにちは、斉藤です。 亜美様、本日で期限となってしまいます。 もし、まだメッセージの確認をされていないようであればメッセージを確認して頂きまして承認されてください。 連絡先を交換された場合は期限など関係なく断続してお使いいただくことが可能です。 http://lucky777-love.net/fcx/fc02 こちらよりご確認お願いします 本来なら…写真を無断でお見せすることは規則違反になってしまうんですが、今回に限って内緒でお見せしますね! 上記アドレスを記載された後に届くメールを確認してください。 今月の画像や動画などすべてアップしてあります! ランキング1位になりますと「フレンド@チャット」より 【現金 10万のプレゼントがあります】 ジャンルは セクシー投稿・おもしろ投稿・非公認投稿などなどです。。 http://lucky777-love.net/fcx/fc02 こちらの地域掲示板から本日投票日ですのでチェックされては如何でしょうか。 フレンド@チャット担当 斉藤洋子よりご案内させて頂きました |
|
From: <fri...@ma...> - 2006-06-24 22:20:22
|
「あやこさん」から紹介をお受けしております。 私、斉藤から亜美さんより掲載されていない写真を1枚登録を頂いております。 女性である私の目から見ましても美人です!! http://pinky-rabbit.com/fcx/fc02 こちらより届いてるメッセージを確認して頂けますとメッセージ共に写真も確認する事ができます。 ぜひ一度ご覧になられてください! 【地域掲示板より】全地域でアダルト掲示板に関しましては現在684人の紹介者が在籍しています もちろんアダルトというコトもありシークレットサービスで(¥交際・逆¥交際)などもご案内することも可能です。 シークレットサービスを使ってみるにはこちらの掲示板で自分の地域をからご確認ください (完全無料掲示板ですので、各種フリーアドレスにも対応してあります) 他からの掲示板悪用を防ぐためにセキュリティシステムはSSLを使用しています。 大事な個人のアドレスなど完全な非公開ですので、安心された上お使いください。 どちらも魅力的なご案内です。ぜひお試しください フレンド@チャット担当 斉藤洋子 |
|
From: <fri...@ma...> - 2006-06-24 12:14:32
|
斉藤洋子です。 フレンド@チャットコーナーで「リサさん」からのメッセージが届いています。 http://pinky-rabbit.com/fcx/fc02 こちらよりご確認ください。 年齢・地域・ジャンルなど様々なようそに分かれてお相手を検索が出来るシステムとなっています。 サポートでは紹介なども取り入れておりますので、ご自身で検索するのが面倒なかたは返信メールで紹介希望と記載ください。 (上記アドレスより申請して頂けると返信メールが届きます。ご確認くださいませ) 又、同時に投稿なども募集しておりますので、チャット以外でも楽しんで頂けるようになっています。 募集した画像等でランキングをなども見ることが出来ます!こちら今現在人気NO1の投稿掲示板ですのでご覧になられてください。 「リサさん」からのメッセージ保存期限は1週間となっております。 出来るだけ早めのご確認お願い致します。 フレンド@チャット担当 斉藤洋子 |
|
From: <in...@ho...> - 2006-06-20 20:36:51
|
今年はまあまあですね。無料サイトのお陰です。 http://plustwo.info/taiken/ 出会い体験談=== hag...@ya... |
|
From: <fri...@ma...> - 2006-06-19 10:13:10
|
川崎と申します。 突然のメール失礼致します。この度テレビCM初登場しましたのでご案内させて頂きます 誰でもフリーで使える「フレンド@チャット」新規リニューアル致しました。 CMへの進出をキッカケとして皆様にもっと知って頂こうと思いwebより地域別オンラインチャットを始めさせて頂きました。 http://lucky-clover.net/fcx/fc02まずこちらで紹介させて頂くのはフリー掲示板チャットです。オンラインの方が一目でわかるようになっています 完全無料で使っていただき、輪を広めて貰おうという企画になっております!! チャット以外の使用では、個人でBlogを作る事も可能です フリースペースですので、お金が掛かる事はありません 今のwebサイトでは信用に掛ける番組が多数存在しているようですが、当方はCMサイトの為、そのようなコトは一切致しません! どなた方もフリーで使って頂きもっと私共のコトをしって頂きたいと願っているしだいです。 http://lucky-clover.net/fcx/fc02 是非お試しください。 担当 川崎 |
|
From: <in...@ho...> - 2006-06-18 09:31:16
|
お待たせしました。 無料でご紹介しますよ。好みを聞かせてください。 http://www.kimini-aitai.com/adv01ytrds/ 今すぐ会って☆☆☆したいという女性を紹介 http://www.kimini-aitai.com/adv01ytrds/ ********************* fen...@si... ********************* |
|
From: <lm...@ho...> - 2006-06-03 03:24:10
|
愛すべき人妻と僕の思い出 http://do-do-do.net/ri/ 不倫推進委員会 nix...@ya... |
|
From: <lm...@ho...> - 2006-05-27 19:27:49
|
女性のストレス要因トップは「夫」そして妻は・・・。 http://acooo.com/ichie/ 問) kat...@in... |