Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~8K People Reached
Favorite Tags

9 Posted Topics

Member Avatar for seodevid

Utilize a logfile Instead of using MySQL database create a database file! users.online.txt textfile: [CODE]87.58.110.25 1278694959 130.20.145.10 1278694920[/CODE] Each row is a visitor. First column is the visitor IP. Second column is the last visitor activity. Whenever the visitor visits a page, you update the time entry in your file. …

Member Avatar for Zoon
0
59
Member Avatar for NathanOliver

[QUOTE=nezachem;1242530]One problem with this code is that it can't match a literal '?'. Another is its complexity. I can't even try to understand how it works, let alone debug it. This is how I would approach globbing: [CODE]#include "glob.h" int globMatch(char * pattern, char * text) { while(*pattern && *text) …

Member Avatar for NathanOliver
4
502
Member Avatar for icewolf

Hello, If you can gain information like the name of the executable, you can probably find the path to it. It should be possible to get the path to an executable from it's PID. Then with the path you can easily do your MD5 check. Hope this helps. // Zoon

Member Avatar for Bluefox815
0
202
Member Avatar for Exoskeletor

Why don't you read the rules to find out? I'd even say, posting those links "illegally" would be even better than posting this meaningless post telling us you didn't read the rules :D Welcome to DaniWeb btw ;)

Member Avatar for Exoskeletor
0
80
Member Avatar for notmasteryet

Try making a simple version. [CODE]mail("******@gmail.com", "Test Mail", "We have success");[/CODE] If this does not work neither, your hosting provider probably doesn't support mail. Usually locally hosted servers does nor. Also, have you checked your spamfilters? :) If you need a good webhost, take a look at [URL="http://webhosting.blanye.com"]Blanye Webhosting[/URL].

Member Avatar for Member #334542
0
178
Member Avatar for Excizted

You probably don't want to include boost in your project, just for this one thing. It's not that hard to figure out, so unless you already have boost linked, try doing it yourself! ;)

Member Avatar for NathanOliver
0
5K
Member Avatar for toddermohan

The pointer is an address to something in your memory (RAM). fopen will create an "object" to handle the requested file, in the memory. But for you to be able to use this object, to manipulate the file, you have the address returned which you store in a pointer :) …

Member Avatar for Radical Edward
0
145
Member Avatar for cthoes

cthoes, Have you set good permissions on the folder you attempt to move to? [B]Locally Hosted[/B] Use CHMOD from your terminal or use your desktop frontend to set the permissions. [B]Remotely Hosted[/B] Use a FTP client to connect to the server. FileZilla allows you to modify permissions. Note: Maybe your …

Member Avatar for cthoes
0
2K
Member Avatar for hawksury

Hello, Have you tried to print out the output of File.size()? Maybe it doesn't work like that :) Also, please use code tags, it eases the reading and retains indents. // Zoon

Member Avatar for Zoon
0
106

The End.