Forum: Community Reviews
23 Oct 2004, 20:36
|
Replies: 5
Views: 1,097
|
Forum: vB3 General Discussions
14 Oct 2004, 00:47
|
Replies: 2
Views: 788
You have a few tools (some free, some not;...
You have a few tools (some free, some not; searched via Google):
http://www.scootersoftware.com/
http://www.prestosoft.com/ps.asp?page=edp_examdiff
http://www.araxis.com/merge/index.html...
|
Forum: vB3 General Discussions
10 Oct 2004, 02:48
|
Replies: 3
Views: 947
|
Forum: Modification Requests/Questions (Unpaid)
10 Oct 2004, 02:35
|
Replies: 1
Views: 731
|
Forum: vB3 Programming Discussions
10 Oct 2004, 02:24
|
Replies: 4
Views: 1,160
When in doubt, look how other people do it.
...
When in doubt, look how other people do it.
vBulletin does it, so look at their `attachment` table schema.
Note storing images in the database isn't good for gallery purposes.
Usually DB...
|
Forum: vB3 General Discussions
09 Oct 2004, 21:13
|
Replies: 9
Views: 1,291
ksorts sorts an array by its keys, so sorting...
ksorts sorts an array by its keys, so sorting $iforumcache[$parentid] sorts that array by displayorder.
I'm not certain what childlist is for. Maybe in building search indexes or something.
...
|
Forum: vB3 General Discussions
09 Oct 2004, 21:00
|
Replies: 9
Views: 1,291
|
Forum: vB3 General Discussions
09 Oct 2004, 20:54
|
Replies: 6
Views: 891
|
Forum: vB3 General Discussions
09 Oct 2004, 20:47
|
Replies: 6
Views: 891
|
Forum: vB3 Programming Discussions
09 Oct 2004, 20:43
|
Replies: 5
Views: 1,050
Mind explaining what you are trying to do? ;)
...
Mind explaining what you are trying to do? ;)
As a general reminder on the forums, remember to post more specific details of your problem for a large chuck of code before assuming members will...
|
Forum: vB3 General Discussions
09 Oct 2004, 20:33
|
Replies: 9
Views: 1,291
Take a look at the vBulletin table schema for...
Take a look at the vBulletin table schema for `forum`, and you will notice these columns:
childlist, parentid, parentlist, and forumid.
A hierarchical tree structure of categories composed of...
|
Forum: vB3 General Discussions
09 Oct 2004, 19:14
|
Replies: 3
Views: 947
|
Forum: Modification Graveyard
09 Oct 2004, 16:43
|
Replies: 36
Views: 9,653
Just create a separate table to hold the data,...
Just create a separate table to hold the data, and on first arrival check for new articles and put them into that table. My articlebot does this, and uses MagpieRSS. Feel free to view or use its...
|
Forum: vB3 Programming Discussions
08 Oct 2004, 23:46
|
Replies: 3
Views: 875
date() function returns a human readable...
date() function returns a human readable representation of a timestamp.
So comparing its return value to a timestamp (joindate) is erroneous.
The query you are probably looking for:
...
|
Forum: vB3 General Discussions
08 Oct 2004, 03:35
|
Replies: 1
Views: 837
Admin CP -> Users -> Prune
You may want to...
Admin CP -> Users -> Prune
You may want to prune their threads first, if you want them gone as well. Or lese deleting the member first will leave a bunch of "guest" threads.
Threads -> Prune
|
Forum: Community Lounge
06 Oct 2004, 16:22
|
Replies: 25
Views: 2,787
|
Forum: Testing Zone
06 Oct 2004, 16:06
|
Replies: 23
Views: 1,317
|
Forum: Modification Requests/Questions (Unpaid)
06 Oct 2004, 16:04
|
Replies: 3
Views: 934
DeviantART.com does such, although they're not...
DeviantART.com does such, although they're not powered by vBulletin.
A "premium member" would fall under a "premium user group." Therefore, create a new user group for these kind of members. In...
|
Forum: vB3 Programming Discussions
04 Oct 2004, 18:43
|
Replies: 2
Views: 785
|
Forum: Modification Requests/Questions (Unpaid)
03 Oct 2004, 17:44
|
Replies: 11
Views: 1,243
A script could easily be made to autocorrect...
A script could easily be made to autocorrect their mispellings, but that isn't going to teach the people not to type that way. You should instead make it more aware to your members that poor grammar...
|
Forum: Community Lounge
03 Oct 2004, 16:31
|
Replies: 40
Views: 3,528
Pico is about the equivalent of notepad's...
Pico is about the equivalent of notepad's functionality, but for Unix.
I also can't understand how people use notepad. Early in the summer when I was hired for a programming job in PHP/MySQL,...
|
Forum: Community Lounge
03 Oct 2004, 05:43
|
Replies: 40
Views: 3,528
On Windows I use Textpad...
On Windows I use Textpad (http://www.textpad.com/) for any coding.
On Linux or Unix I use VI/VIM (http://www.vim.org/). Great program, but has a steep learning curve.
Once I improve on VIM,...
|
Forum: vB3 Programming Discussions
03 Oct 2004, 05:33
|
Replies: 3
Views: 1,139
Timestamps are in seconds. They're much more...
Timestamps are in seconds. They're much more convenient to use, from my experience, then the inflexible SQL date format. Plus, they contain time, not merely the date.
So if you want days, take...
|
Forum: vBulletin 3.0 Beta Releases
03 Oct 2004, 00:34
|
Replies: 24
Views: 10,427
|
Forum: vBulletin.org Site Feedback
03 Oct 2004, 00:17
|
Replies: 10
Views: 1,356
Wow, that is interesting!
Do a quick view of...
Wow, that is interesting!
Do a quick view of the source page, and you'll find the member "Disturbed" having a sig:
<img src="http://207.44.206.46/~admin3/sig.php" border="0" alt="" />
The PHP...
|