Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 20 of 20
Search took 0.00 seconds.
Search: Posts Made By: treszoks
Forum: Modification Requests/Questions (Unpaid) 09-28-2002, 01:02 AM
Replies: 9
Views: 1,170
Posted By treszoks
You'd actually want to 'OR' the two usergroupids...

You'd actually want to 'OR' the two usergroupids together.
Forum: Modification Requests/Questions (Unpaid) 08-12-2002, 02:09 PM
Replies: 3
Views: 841
Posted By treszoks
Here's an example query to get you started. This...

Here's an example query to get you started. This will give you the number of threads started by a particular user in a particular forum.
select count(*) from thread where postuserid='$userid' and...
Forum: Modification Requests/Questions (Unpaid) 08-09-2002, 12:31 PM
Replies: 10
Views: 1,438
Posted By treszoks
Were you wanting me to help you with this or do...

Were you wanting me to help you with this or do you have it taken care of?
Forum: Modification Requests/Questions (Unpaid) 08-08-2002, 09:45 PM
Replies: 10
Views: 1,438
Posted By treszoks
That's pretty much exactly what I said. Shouldn't...

That's pretty much exactly what I said. Shouldn't be too hard to setup.
Forum: Modification Requests/Questions (Unpaid) 08-08-2002, 12:37 PM
Replies: 10
Views: 1,438
Posted By treszoks
Since the user/pass from this script does not...

Since the user/pass from this script does not match the vb user/pass, how will you relate them together? I see a method of doing this, but it might require an additional script to work. I could alter...
Forum: Modification Requests/Questions (Unpaid) 06-28-2002, 09:32 PM
Replies: 4
Views: 889
Posted By treszoks
<a...

<a href="https://vborg.vbsupport.ru/showthread.php?threadid=21833" target="_blank">https://vborg.vbsupport.ru/showt...threadid=21833</a>
Forum: Modification Requests/Questions (Unpaid) 06-23-2002, 02:03 AM
Replies: 5
Views: 1,188
Posted By treszoks
You could write a php script that would retrieve...

You could write a php script that would retrieve the info from the mysql server with the results in it and that same php script could generate a web form(similar to vb's new topic form) already...
Forum: Modification Requests/Questions (Unpaid) 02-09-2002, 01:43 PM
Replies: 1
Views: 712
Posted By treszoks
I had an epiphany. Here's the code: ...

I had an epiphany. Here's the code:

$threads_today=mysql_query("SELECT distinct(threadid), count(*) as newcount FROM post GROUP BY threadid HAVING MIN(dateline)>=$datesql");...
Forum: Modification Requests/Questions (Unpaid) 02-09-2002, 04:09 AM
Replies: 1
Views: 712
Posted By treszoks
I cannot figure out a mysql query that will...

I cannot figure out a mysql query that will return the number of new topics started today. The today's active topics count is easy, but I want the count of the new ones created today.
Forum: vBulletin 2.x Full Releases 10-29-2001, 01:11 PM
Replies: 15
Views: 4,448
Posted By treszoks
I can write out better instructions if you tell...

I can write out better instructions if you tell me exactly what you need. What I did was write out a general form for all possibilities. How many fields do you want? How many of those are required...
Forum: vBulletin 2.x Full Releases 10-29-2001, 01:06 PM
Replies: 21
Views: 6,234
Posted By treszoks
Isn't there already an option in the cp to find...

Isn't there already an option in the cp to find out the number of new threads made each day under the "vb stats" link?
Forum: vBulletin 2.x Full Releases 10-28-2001, 03:15 PM
Replies: 15
Views: 4,448
Posted By treszoks
pipi, it depends on the field number but here's...

pipi, it depends on the field number but here's how you'd do it.

In the "postbit" template, just place this where you want it:

$post[fieldX]

where X is the number of the field
Forum: vBulletin 2.x Full Releases 10-25-2001, 01:53 AM
Replies: 15
Views: 4,448
Posted By treszoks
Assuming the linebreaks were added to the db: ...

Assuming the linebreaks were added to the db:

In member.php find this in the "getinfo" action segment (should be around line 1200):

$profilefield[value]=$userinfo[$profilefieldname];

Change...
Forum: vBulletin 2.x Full Releases 10-23-2001, 01:43 AM
Replies: 15
Views: 4,448
Posted By treszoks
Mine only requires adding two templates and...

Mine only requires adding two templates and modifying a couple of lines in register.php and member.php and doesn't use text files that must be opened and read from.
Forum: vBulletin 2.x Full Releases 10-22-2001, 09:38 PM
Replies: 15
Views: 4,448
Posted By treszoks
Here you go. Untested, but should work.

Here you go. Untested, but should work.
Forum: vBulletin 2.x Full Releases 10-20-2001, 10:00 PM
Replies: 15
Views: 4,448
Posted By treszoks
Someone asked for this and here it is. Hopefully...

Someone asked for this and here it is. Hopefully the documentation is clear enough and I didn't miss anything. Post here with any problems and/or comments.

This hack adds a select field (dropdown...
Forum: vBulletin 2.x Full Releases 10-20-2001, 02:19 AM
Replies: 130
Views: 26,748
Posted By treszoks
I've added select fields to my board and will...

I've added select fields to my board and will share directions if anyone would like them. It requires adding two templates for each select field plus a couple of lines in register.php and member.php.
Forum: vBulletin 2.x Full Releases 10-16-2001, 02:49 AM
Replies: 5
Views: 2,472
Posted By treszoks
Yeah, I saw that thread floleb7, but none of them...

Yeah, I saw that thread floleb7, but none of them did what I wanted. Those just require editing the templates and don't show every single page in the dropdown menu like this which requires editing...
Forum: vBulletin 2.x Full Releases 10-14-2001, 10:00 PM
Replies: 5
Views: 2,472
Posted By treszoks
Ok, this modification changes the current pagenav...

Ok, this modification changes the current pagenav stuff such as: "Pages (3): [ < ? 1 ? 2 ? 3 ? ]" to a simple dropdown menu containing all the pages...no previous/next/first/last crap.

In...
Forum: vBulletin 2.x Full Releases 10-11-2001, 09:26 PM
Replies: 21
Views: 6,234
Posted By treszoks
I did something similar as a change for the...

I did something similar as a change for the "today's active topics" link. I noticed how it didn't actually show today's active topics, but rather showed the topics from the last 24 hours. Here's...
Showing results 1 to 20 of 20

 
Forum Jump

All times are GMT. The time now is 04:44 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02622 seconds
  • Memory Usage 1,988KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (20)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (27)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • forumjump
  • search_complete
  • navbits
  • navbits_complete