ljamal wrote:
There's a variable that you can set to append a prefix to the tables and another one that will append a prefix to the stored procedures when they are created. This will allow you to keep the tables from conflicting with other tables in your database. By default the variables are tbl and wwfsp. |
I found it. I had to change tbl to wwftbl so it wouldn't overwrite my existing tables. It worked fine. No lost of data. Very very pleased.
The only place I goofed up was not changing it in BOTH common.asp files. The comments in the code said to change it in common.asp also. I didn't mention that there are two of them!
Well, I figured that out and it works fine.
Also, I am super pleased at how easy it was to integrate my existing asp site with the forum. I simply modified the header and footer files, and suddenly the forum looks like the rest of my site.
I plan on doing much more integration, but right now I have other things on the burner.
One thing I would like to do is to have every page on my asp site detect visitors and logged in users. Right now the forum does that when you are on the forum pages only. I would like to add code to the rest of my asp site that would do the same. Right now every asp page opens the same database as the forum is in, so adding more calls to the same database would be easy.
If someone has such a mod, that would be great.
The code for accessing the database is already included on every page, so all I would need is the actual code that tracks the users as active. I don't even need to display anything (even though that would be a nice option). I just want to count them as an active visitor to increase the count.
It looks much better to see 100 active users than 20. Counting people on the whole site would increase the number dramatically even if they never come to the forum. (The site we have is pretty big.)