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

Showing results 1 to 25 of 500
Search took 0.03 seconds.
Search: Posts Made By: g-force2k2
Forum: vBulletin 3.7 Add-ons 04-02-2008, 10:00 PM
Replies: 4
Administrative and Maintenance Tools - Notification About Users' Subscriptions Expiring
Views: 3,259
Posted By g-force2k2
Notification About Users' Subscriptions Expiring

Basically the title explains what this modification does. Works hand in hand with the subscription cron job so that when it compiles and sends out emails to the users it'll compile and sent out...
Forum: vB3 General Discussions 03-30-2008, 11:36 PM
Replies: 2
Views: 1,397
Posted By g-force2k2
admincp => vbulletin options => Message Posting...

admincp => vbulletin options => Message Posting and Editing Options => Maximum Images Per Post
Forum: vBulletin 3.0 Full Releases 02-15-2004, 10:00 PM
Replies: 42
Views: 15,758
Posted By g-force2k2
vb3 User Rating Hack v1.0

I think the title is pretty self-explanatory, but I've created a ratings system for users to rate each other.

Things to do...
Files To Upload ( 1 )
-- rate.php
Template Modifications ( 1 )
--...
Forum: vB3 Programming Discussions 02-14-2004, 07:07 AM
Replies: 5
Views: 1,193
Posted By g-force2k2
Try running the query. UPDATE user SET...

Try running the query.

UPDATE user SET usergroupid=6 WHERE userid=x

x being your userid.

Cheers,
g-force2k2
Forum: vBulletin 3.0 Full Releases 02-14-2004, 06:51 AM
Replies: 118
Views: 29,703
Posted By g-force2k2
Sadie Frost WHERE t.forumid NOT IN ( " ....

Sadie Frost

WHERE t.forumid NOT IN ( " . implode ( ",", get_noaccess_forumids ( ) ) . " )
AND t.forumid != 16

Thanks for the links Natch I will take a look.

Cheers,
g-force2k2
Forum: vB3 Programming Discussions 02-13-2004, 05:14 AM
Replies: 10
Views: 1,154
Posted By g-force2k2
Make sure that in functions_newpost.php that this...

Make sure that in functions_newpost.php that this exists:

$DB_site->query("
INSERT INTO " . TABLE_PREFIX . "post
(threadid, parentid, title, username, userid, dateline, pagetext,...
Forum: vB3 Programming Discussions 02-13-2004, 05:08 AM
Replies: 3
Views: 852
Posted By g-force2k2
I don't think that you can restore a table after...

I don't think that you can restore a table after you have deleted it, unless it is done immediately after deletion, but even then I am unsure, you can probably look up some information on mysql.com...
Forum: vB3 Programming Discussions 02-13-2004, 05:06 AM
Replies: 12
Views: 1,130
Posted By g-force2k2
Did you check the editor templates? because that...

Did you check the editor templates? because that is actually where the actual wysiwyg is built, so you might have accidently edited something within that template.

Cheers,
g-force2k2
Forum: vB3 Programming Discussions 02-12-2004, 04:38 PM
Replies: 4
Views: 1,118
Posted By g-force2k2
Well depending if you used the table prefix...

Well depending if you used the table prefix option in the config.php it would be (table_prefix)user else it would just be user for the table. Also the passwords are stored as md5 encription.
...
Forum: vB3 Programming Discussions 02-12-2004, 04:35 PM
Replies: 3
Views: 925
Posted By g-force2k2
Just for references it seems that you inserted a...

Just for references it seems that you inserted a string that was urlencode, so to prevent this in the future you could always urldecode the string before inserting it into the database.

Cheers,...
Forum: vB3 Programming Discussions 02-12-2004, 12:32 AM
Replies: 12
Views: 1,130
Posted By g-force2k2
you didn't alter the cols or rows? or perhaps you...

you didn't alter the cols or rows? or perhaps you didn't close the <if statement correctly or properly. If you could provide some source template code I can take a look.

Cheers,
g-force2k2
Forum: vB3 Programming Discussions 02-12-2004, 12:30 AM
Replies: 44
Views: 3,887
Posted By g-force2k2
Try changing the method to POST and then make it...

Try changing the method to POST and then make it $_POST['do'] == "insert" and also make the form action="gallery.php"

Hope that helps somewhat.

Cheers,
g-force2k2
Forum: vB3 Programming Discussions 02-12-2004, 12:25 AM
Replies: 8
Views: 1,497
Posted By g-force2k2
Yes it's a rather interesting feature of vb3, and...

Yes it's a rather interesting feature of vb3, and I believe it is disabled as a default, but sometimes it doesn't seem that way because some redirects still work regardless.

Cheers,
g-force2k2
Forum: vBulletin 3.0 Full Releases 02-11-2004, 12:19 PM
Replies: 432
Views: 51,043
Posted By g-force2k2
Nice work Boofo, just some ideas for future vb3...

Nice work Boofo, just some ideas for future vb3 stats hack, I would personally have used a datastore column instead of a new table ( special template ) and also would have used a cron job, but these...
Forum: vB3 Programming Discussions 02-11-2004, 09:05 AM
Replies: 2
Views: 796
Posted By g-force2k2
Have not looked at the hack, but either way you...

Have not looked at the hack, but either way you would have to edit the main template which I assume would be 'home' as you did and you can basically add all of the data there, but if you're trying to...
Forum: vB3 General Discussions 02-09-2004, 03:58 PM
Replies: 3
Views: 1,206
Posted By g-force2k2
SELECT DISTINCT t.threadid, t.title, p.userid,...

SELECT DISTINCT t.threadid, t.title,
p.userid, p.username, p.postid
FROM " . TABLE_PREFIX . "post p
LEFT JOIN " . TABLE_PREFIX . "thread t USING (threadid)
ORDER BY dateline DESC LIMIT 10
...
Forum: vB3 Programming Discussions 02-09-2004, 04:00 AM
Replies: 44
Views: 3,887
Posted By g-force2k2
First off $fv= $DB_site->query("SELECT...

First off

$fv= $DB_site->query("SELECT gallery_views FROM gallery_index WHERE gallery_id='$id'");
$views=$DB_site->fetch_array($fv);

is a waste of a query as it is getting data that already...
Forum: vB3 Programming Discussions 02-09-2004, 03:46 AM
Replies: 7
Views: 1,161
Posted By g-force2k2
I just added that line of code to a php file of...

I just added that line of code to a php file of vb3 and its a common query that just selects user columns based upon a particular criteria, at first it required an array to implode so I made one...
Forum: vB3 General Discussions 02-09-2004, 02:55 AM
Replies: 21
Views: 2,653
Posted By g-force2k2
Yeah I don't really know C ( or C++ ) at all,...

Yeah I don't really know C ( or C++ ) at all, wanted to learn some, but you don't think that placing a return to return the the main cron control script, which would be exiting out of the inner cron...
Forum: vB3 General Discussions 02-09-2004, 02:45 AM
Replies: 21
Views: 2,653
Posted By g-force2k2
Hmm... very interesting, I did some tests with...

Hmm... very interesting, I did some tests with continue ; in both an included file and a function and both returned errors, but something else did work.

return ;

It returns to the main script...
Forum: vB3 Programming Discussions 02-09-2004, 02:33 AM
Replies: 7
Views: 1,161
Posted By g-force2k2
lol, okay, but then I don't believe it is that...

lol, okay, but then I don't believe it is that line that is causing the error, because I tested it and it worked fine, do you have any conflicting lines above or below that could be causing the...
Forum: vB3 General Discussions 02-09-2004, 02:31 AM
Replies: 21
Views: 2,653
Posted By g-force2k2
Alright, then couldn't continue ; possibly do the...

Alright, then couldn't continue ; possibly do the trick?

Cheers,
g-force2k2
Forum: vB3 General Discussions 02-09-2004, 02:28 AM
Replies: 21
Views: 2,653
Posted By g-force2k2
so then are you trying to break the control of...

so then are you trying to break the control of the cron job to stop the following scheduled cron jobs, because I see that you are logging the error that has occurred, and if thats the case couldn't...
Forum: vB3 Programming Discussions 02-09-2004, 02:22 AM
Replies: 7
Views: 1,161
Posted By g-force2k2
I don't think that the character '+' is a valid...

I don't think that the character '+' is a valid character in variable names.

Cheers,
g-force2k2
Forum: vB3 General Discussions 02-09-2004, 02:16 AM
Replies: 21
Views: 2,653
Posted By g-force2k2
Could not not define a global variable that is...

Could not not define a global variable that is ran through each loop and if an error is occured then instead of continuing the while loop it could instead break out, and if necessary first build a...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT. The time now is 12:16 AM.


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.03145 seconds
  • Memory Usage 2,078KB
  • 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)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (36)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
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete