Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
visitor
- Page 1
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by Dani
… it, because you're creating *more* overhead for every 4th
visitor
. But if you get 1000 visitors per hour, then that…
Visitor count
Programming
Web Development
14 Years Ago
by rajeesh_rsn
… , In one of my web application I want a real
visitor
count. I am not looking for any third party one… also that will add a visit. Really "How real
visitor
counts are calculating ?" My question is 1. If a… added into database. After 2 or 3 hours the same
visitor
visits again.. Then is it count as new visit or…
Re: Visitor count
Programming
Web Development
14 Years Ago
by rajeesh_rsn
… of one day. if the cookie exits implies that the
visitor
has already visited.[/QUOTE] Hi thanks for the reply and… I just wanna know about the real logic behind the
visitor
count. In which logic google and other ranking sites calculating…
Re: Visitor count
Programming
Web Development
14 Years Ago
by shubhamjain1
Use cookies or sessions. Just as a user visits the page, create a cookie with an expiry of one day. if the cookie exits implies that the
visitor
has already visited.
Visitor Counter
Programming
Web Development
10 Years Ago
by davy_yg
Hello, I am looking for a
visitor
counter that could record:
Visitor
Counter Online 1 Today 4 Yesterday 8 Week 4 Month 32 Year 32 Total 2637 Where can I find it?
visitor Details
Programming
Web Development
16 Years Ago
by rajeesh_rsn
… a web site made in php. I need to collect
visitor
data ( ip address, visiting time) and store in it a…
Visitor Messages?
Programming
Web Development
14 Years Ago
by Aser Gado
I am creating a
visitor
messages system on a member's profile, here is my …
Re: Visitor Counter
Programming
Web Development
15 Years Ago
by BeachyUK
… is only in terms of doing a COUNT from the
visitor
table. It may still be worth doing though. As a….e. when user visitors a page it: - Adds IP to
visitor
table - Looks up last count in a summary table which…
Re: Visitor Get Location = Custom Graphic
Programming
Software Development
13 Years Ago
by NormR1
> I need to get a visitors location Where is that information available? Can you have the
visitor
/user select it from a list? Or type it into a textfield?
Re: Visitor Get Location = Custom Graphic
Programming
Software Development
12 Years Ago
by chrislim2888
You may try this: http://www.ip2phrase.com/. A way to display a custom message of the
visitor
geo location.
Overload and Override behavior for Visitor Pattern
Programming
Software Development
12 Years Ago
by sciwizeh
… //SOMEWHERE ELSE A CLASS public void doAlgorithm(
Visitor
visitor
){ for(Visited v : datastructure){ v.visit(
visitor
); } } The book mentions doing the same…SOMEWHERE IN A CLASS public void algorithm(
Visitor
visitor
){ for(Visited v : datastructure){ v.visit(
visitor
); } } But as I understand it…
Re: Overload and Override behavior for Visitor Pattern
Programming
Software Development
12 Years Ago
by sciwizeh
The idea behind the [
visitor
pattern](http://en.wikipedia.org/wiki/Visitor_pattern) is to make … not aware of what is being done to them. the
Visitor
has a method for each type of object like above… classes only have a method that accepts a
visitor
and passes themselves to the
visitor
. In the link the java implementation overrides…
Re: Overload and Override behavior for Visitor Pattern
Programming
Software Development
12 Years Ago
by JamesCherrill
Yes, if you really want to implement the full classic
Visitor
in Java then you need reflection. Personally I would question …
Storing data in a Visitor
Programming
Software Development
13 Years Ago
by daviddoria
…image->GetPixel(i); float targetPixel = image->GetPixel(i);
visitor
.Visit(sourcePixel, targetPixel); } } private: Patch SourcePatch; Patch …* InternalImage; }; class PatchPairContainer { public: void VisitAllPatchPairs(PatchPairVisitor&
visitor
) { for(unsigned int i = 0; i < this…
Problem implementing Visitor Pattern with Abstract visitor class
Programming
Software Development
15 Years Ago
by hoolr
… v = " "); ~Element(); void Accept(
Visitor
& v); vector<Node*> nodeVec; vector&…attrVec; private: string name, value; }; void Element::Accept(
Visitor
& v) { v.VisitElement(*this); } [/CODE] And…int numAttrs = e.GetNumAttrs(); cout << "
Visitor
has found " << numNodes << …
Problem implementing Visitor Pattern with Abstract visitor class
Programming
Computer Science
15 Years Ago
by hoolr
… v = " "); ~Element(); void Accept(
Visitor
& v); vector<Node*> nodeVec; vector&…attrVec; private: string name, value; }; void Element::Accept(
Visitor
& v) { v.VisitElement(*this); } [/CODE] And…int numAttrs = e.GetNumAttrs(); cout << "
Visitor
has found " << numNodes << …
Re: Storing data in a Visitor
Programming
Software Development
13 Years Ago
by daviddoria
… realized that if I use a class template for a
visitor
: [code] template <typename TPixel> class PixelPairVisitor { public: virtual…
Cross casting in Acyclical Visitor not compiling
Programming
Software Development
15 Years Ago
by Ian Morrison
…) = 0; }; class MyClass : public Entity { public: virtual void accept(
Visitor
&v) const { MyClassVisitor *rcvr = dynamic_cast<MyClassVisitor*>(&… if(rcvr) rcvr->visit(*this); } }; class SpecificVisitor : public
Visitor
, public MyClassVisitor { public: virtual void visit(const MyClass &obj…
Re: Problem implementing Visitor Pattern with Abstract visitor class
Programming
Software Development
15 Years Ago
by dkalita
… = e.GetNumNodes(); int numAttrs = e.GetNumAttrs(); cout << "
Visitor
has found " << numNodes << " noes…\n";
Visitor
tempV;/*set all the necessary data members*/ e.nodeVec[0…
Re: Problem implementing Visitor Pattern with Abstract visitor class
Programming
Computer Science
15 Years Ago
by hoolr
I simply added another implementation of accept, which could take take a pointer and now it works. [CODE] void Element::Accept(
Visitor
& v) { v.VisitElement(*this); } void Element::Accept(
Visitor
* v) { v->VisitElement(*this); } [/CODE]
Re: Problem implementing Visitor Pattern with Abstract visitor class
Programming
Software Development
15 Years Ago
by hoolr
I simply added another implementation of accept, which could take take a pointer and now it works. [CODE] void Element::Accept(
Visitor
& v) { v.VisitElement(*this); } void Element::Accept(
Visitor
* v) { v->VisitElement(*this); } [/CODE]
Re: Problem implementing Visitor Pattern with Abstract visitor class
Programming
Software Development
15 Years Ago
by dkalita
… a pointer and now it works. [CODE] void Element::Accept(
Visitor
& v) { v.VisitElement(*this); } void Element::Accept…(
Visitor
* v) { v->VisitElement(*this); } [/CODE][/QUOTE] wel done. Its …
Re: Cross casting in Acyclical Visitor not compiling
Programming
Software Development
15 Years Ago
by Banfa
…line 26 which requires the full declaration of
visitor
. Assuming this is a mistake that doesn't…then have you declared any Virtual functions in
visitor
? You can only dynamic_cast from a class with… line 33 and replace [icode]class
Visitor
;[/icode] with [code] class
Visitor
{ public: virtual ~
Visitor
(){} }; [/code] it compiles for me…
Re: Problem implementing Visitor Pattern with Abstract visitor class
Programming
Software Development
15 Years Ago
by hoolr
… problem with that is it needs to be a single
Visitor
object which "visits" every element. So ConcreteVisitorA VisitorA…
Create visitor counter using sessions
Programming
Web Development
12 Years Ago
by OsaMasw
…from this great community I have question about creating
visitor
counter,daily,monthly,yearly I've created a … visitors * I want to know how to seperate daily
visitor
from monthly ? * I've created a second table…store final result so I can clear the visitors table.
visitor
table ---------------- session_id -- time here is the results for …
Re: Cross casting in Acyclical Visitor not compiling
Programming
Software Development
15 Years Ago
by Ian Morrison
Ah... this could well be my issue, thanks. The actual definition of the
Visitor
base class is supplied elsewhere. Going to need to figure out how to juggle my dependencies to make it work. I'll get back to you if it fixes the problem. [edit] Yeah, that fixes it. Thanks!
Converting Every Visitor into Subscriber
Digital Media
Digital Marketing
15 Years Ago
by tblac864
…ago. But the bottom line is that your
visitor
may not come back to your website again…of those visitors into your customers. Before your
visitor
leaves your website, you want to convert …. You do this by asking for your
visitor
’s name and email address through your opt…-in form. And if your
visitor
signs up to be on your mailing list…
Re: Converting Every Visitor into Subscriber
Digital Media
Digital Marketing
15 Years Ago
by paperkool
…ago. But the bottom line is that your
visitor
may not come back to your website again…of those visitors into your customers. Before your
visitor
leaves your website, you want to convert …. You do this by asking for your
visitor
’s name and email address through your opt…-in form. And if your
visitor
signs up to be on your mailing list…
Re: Converting Every Visitor into Subscriber
Digital Media
Digital Marketing
15 Years Ago
by InsightsDigital
… optimize these numbers by: a. improving usability b. motivating the
visitor
to dig digger to the site and become more curious… on the product c. invite the
visitor
to subscribe or sign up for a special deal club…
Re: Create visitor counter using sessions
Programming
Web Development
12 Years Ago
by broj1
Have you taken into account the fact that the same
visitor
will have different session ID on each visit (on each session)?
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC