How to take visited Website log?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to take visited Website log?
# 1  
Old 08-17-2010
MySQL How to take visited Website log?

I want to take logs for all the visited websites.
If any user enter a URL in browser address bar I want to take the log after I want to proceed to access the website and
I want to block some websites for my users.
I'm using Linux machine. How to do this ?
# 2  
Old 08-17-2010
Nanba,
You can do this if your system is running a proxy server for your network. For setting up proxy server in linux, check squid documentation.

-Raja
This User Gave Thanks to rajamadhavan For This Post:
# 3  
Old 08-18-2010
MySQL

Quote:
Originally Posted by rajamadhavan
Nanba,
You can do this if your system is running a proxy server for your network. For setting up proxy server in linux, check squid documentation.

-Raja
how to configure to squid for log the visited urls in a file. give me a link / URL
# 4  
Old 09-14-2010
MySQL

I want to block some websites for particular time duration.

for example: I want to block youtube.com from 09:00 am to 11:00am after 11:00am users can access the youtube.com website. how to do this.
Is it possible to configure in squid?
If it is possible means how to configure the squid?
# 5  
Old 09-14-2010
Squid supports time based ACLs..For the given requirement the following config in squid.conf should fo the job I guess..

Code:
acl YOUTUBE dst www.youtube.com
acl DENIEDTIME time 09:00-11:00
http_access deny YOUTUBE DENIEDTIME
http_access allow YOUTUBE

For more info on squid ACL, refer
Squid-ACL FAQ

-Raja
This User Gave Thanks to rajamadhavan For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Web Development

Help with ht5boilerplate - website.

need a little help with this below MAVEN DAZZ what i need is ?!! a) To make sure, that logo stays on top (left hand side) -fixed in this navigation bar. on the same navigation bar (MENU) should stay on the other right hand side. Can anyone explain me how will this work. i am new to... (0 Replies)
Discussion started by: dazdseg
0 Replies

2. UNIX for Dummies Questions & Answers

Getting the source of website

Hi MAy i know how i can get html source of a given site in a file using bash script? I want to store the html source of the site in a file so that i can parse that file. Thanks, (1 Reply)
Discussion started by: pandeesh
1 Replies

3. UNIX for Dummies Questions & Answers

go to previously visited directory

Is there a way to go back to the previously visited directory? say im in /dir1 then went to /dir2 and wanted to go back to /dir1. besides from aliasing every directory i have, i was wondering if there's a way to maybe alias a command to go to the previously visited directory just to make it more... (8 Replies)
Discussion started by: swag:þ
8 Replies

4. Web Development

my website.please. help me.

hello!! well, i am planning to make my own virtual pet site like that of a neopets. unfortunately i don't have any idea on how to do it.. i've tried searching in the net, but the result is really complicated. i don't know where to begin.i have already drawn some that i think would help... (2 Replies)
Discussion started by: ackiemae
2 Replies

5. UNIX for Dummies Questions & Answers

Website

Hey guys I know you probably get this question a lot but, I want to make a website, and I don't have any experience doing this. I have a iMac and i was wondering if there is someone you could refer me to or a site that will show me how to do it. Thanks. (2 Replies)
Discussion started by: mmecca21
2 Replies

6. UNIX for Dummies Questions & Answers

how to create own website?

cud someone tell me how to create a website???:confused: plsss..... tnx alot!!!:):D (2 Replies)
Discussion started by: renytots07
2 Replies

7. UNIX for Dummies Questions & Answers

visited websites

Hi guys, Im just wondering on where a network admin would view a list of visited websites in unix and where to block some websites? (3 Replies)
Discussion started by: jake2891
3 Replies

8. UNIX for Dummies Questions & Answers

remember last visited line in vim

hi, I know we can do this; but dont know how.. I open a file using vim..browse thru it and then say :wq after reaching some line; The next time I open the same file, I want vim to position the cursor on the line where I left last time; anyone? (2 Replies)
Discussion started by: spopuri
2 Replies

9. Filesystems, Disks and Memory

website

HELLO FELLOW GEEKS. PLZ CHECK OUT MY FRIENDS SITE AT http://isunshine.dhs.org or u can also join the message board at http://isunshine.dhs.org/scripts/ikonboard.cgi wixifer (1 Reply)
Discussion started by: wixifer
1 Replies
Login or Register to Ask a Question