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

Showing results 1 to 25 of 332
Search took 0.01 seconds.
Search: Posts Made By: rake
Forum: vB3 Programming Discussions 04-23-2006, 01:46 PM
Replies: 3
Views: 919
Posted By rake
Sure there is. :) ...

Sure there is. :)

http://www.vbulletin.com/docs/html/codestandards_sql_query
Forum: vB3 Programming Discussions 04-23-2006, 01:41 PM
Replies: 4
Views: 861
Posted By rake
Those are unix-timestamps. They represent the...

Those are unix-timestamps. They represent the number of seconds that have passed since the start of the unix era (January 1st, 1970). You can use the date() function to format them. Take a look here...
Forum: Community Lounge 07-01-2005, 02:21 PM
Replies: 6
Views: 919
Posted By rake
I can confirm that. I double-checked that my...

I can confirm that. I double-checked that my e-mail address is correct, both in my usercp and in the members area.
Forum: vBulletin Pre-Sales Questions 03-29-2005, 08:41 PM
Replies: 3
Views: 1,204
Posted By rake
Obviously he's unlicensed, since he's posting in...

Obviously he's unlicensed, since he's posting in the pre-sales forum.

bryan007, after purchasing a vbulletin license, and moving to this particular forum software, you will be able to download and...
Forum: vB3 General Discussions 01-16-2005, 01:57 PM
Replies: 7
Views: 1,276
Posted By rake
Just use exit; and it'll work fine. ...

Just use exit; and it'll work fine.


print_r($arr);
echo "execution is stopped and you'll get the array structure";
exit;
Forum: vB3 General Discussions 01-16-2005, 01:54 PM
Replies: 4
Views: 1,099
Posted By rake
Erm... The "system" consists of people just...

Erm... The "system" consists of people just starting new threads and attaching files. "Feedback" are the replies to those threads.. Or maybe i don't understand what you're asking?
Forum: vB3 General Discussions 01-16-2005, 01:49 PM
Replies: 74
Views: 7,002
Posted By rake
This is the proper way to do pagination. It's...

This is the proper way to do pagination. It's from one of my scripts, and the original code is taken right out of vbulletin. All you need to edit are the two queries, the template that is called, and...
Forum: vB3 General Discussions 01-13-2005, 06:35 AM
Replies: 9
Views: 1,031
Posted By rake
then edit the STANDARDERROR template.

then edit the STANDARDERROR template.
Forum: vB3 General Discussions 01-13-2005, 06:29 AM
Replies: 6
Views: 1,041
Posted By rake
That's the wrong way to do it. You need to read...

That's the wrong way to do it. You need to read the file data, set some header information and then echo it out. Look at attachment.php for an example.
Forum: vB3 Programming Discussions 01-13-2005, 06:22 AM
Replies: 1
Views: 1,098
Posted By rake
SELECT...

SELECT subscriptionlog.*,user.username,user.userid,user.email FROM subscriptionlog LEFT JOIN user USING(userid) WHERE subscriptionid=X

try that query.
Forum: vB3 Programming Discussions 01-13-2005, 06:20 AM
Replies: 28
Views: 3,250
Posted By rake
to get the forum name you'll need to join the...

to get the forum name you'll need to join the forum table USING(forumid) which is equal to ON(thread.forumid=forum.forumid)
Forum: vB3 Programming Discussions 01-13-2005, 06:18 AM
Replies: 4
Views: 1,063
Posted By rake
this is the piece of code that's causing the...

this is the piece of code that's causing the errors:

eval('$retval = "' . fetch_template($maintemplatename) . '";');

and it's in the construct_postbit function. Revert your postbit templates.
Forum: vB3 Programming Discussions 01-12-2005, 07:19 PM
Replies: 4
Views: 1,063
Posted By rake
Remove the file you have attached. You are NOT...

Remove the file you have attached. You are NOT allowed to attach entire vBulletin files, and you have also made your LICENCE NUMBER publically viewable, since it's in the header of that file.

If...
Forum: vB3 General Discussions 01-12-2005, 07:07 PM
Replies: 1
Views: 636
Posted By rake
Yes, you will lose the hacks. Search the forums....

Yes, you will lose the hacks. Search the forums. It has been asked over and over.
Forum: vB3 General Discussions 01-12-2005, 07:06 PM
Replies: 6
Views: 1,314
Posted By rake
Check your individual usergroup settings.

Check your individual usergroup settings.
Forum: vB3 General Discussions 01-12-2005, 07:05 PM
Replies: 9
Views: 1,031
Posted By rake
You mean within a phrase, or what?

You mean within a phrase, or what?
Forum: vB3 General Discussions 01-12-2005, 07:03 PM
Replies: 3
Views: 1,065
Posted By rake
This has been discussed before, but i don't know...

This has been discussed before, but i don't know if a solution has been found. I remember reading several threads about this on vb.com. The forumcache is number of forums * number of usergroups...
Forum: vB3 Programming Discussions 01-12-2005, 06:56 PM
Replies: 8
Views: 1,546
Posted By rake
make sure the folder exists and is world-writable...

make sure the folder exists and is world-writable (chmod 777). Also, use the move_uploaded_file function instead of copy.
Forum: vB3 Programming Discussions 01-12-2005, 06:51 PM
Replies: 5
Views: 1,144
Posted By rake
Yes, it's probably possible using javascript. Not...

Yes, it's probably possible using javascript. Not sure how, but i bet it can be done.
Forum: vB3 Programming Discussions 01-12-2005, 06:47 PM
Replies: 20
Views: 2,473
Posted By rake
start with a blank page, ...

start with a blank page,
require("./global.php");
to get the vb back-end, so you can access vb resources..

Get your database structure straight. One table should be enough to start with....
Forum: vB3 Programming Discussions 01-12-2005, 06:40 PM
Replies: 28
Views: 3,250
Posted By rake
$cut = time() - 60*60*X*Y; where X is the...

$cut = time() - 60*60*X*Y;
where X is the number of hours and Y is the number of days.. You're basically counting the number of seconds (60 seconds * 60 minutes * X hours * Y days) and subsctracting...
Forum: vB3 Programming Discussions 01-12-2005, 06:36 PM
Replies: 19
Views: 1,909
Posted By rake
Keep in mind, you'll be running through a table...

Keep in mind, you'll be running through a table that can be a couple of thousand rows large, depending on the number of members on your board..

You should use the solution provided by MarcoH64
Forum: vB3 Programming Discussions 01-12-2005, 06:32 PM
Replies: 8
Views: 1,546
Posted By rake
Like i said, before, you can't come here and...

Like i said, before, you can't come here and expect someone to code an entire hack for you, well, unless one of the coders is willing to.. you should at the Modification Requests forum, or unless you...
Forum: vB3 Programming Discussions 01-11-2005, 06:13 PM
Replies: 3
Views: 1,036
Posted By rake
The RSS/JS feeds are meant mostly for content...

The RSS/JS feeds are meant mostly for content syndication on OTHER sites. Of course you could use it on your site too. But you should search the forums here. This question has been asked over and...
Forum: vB3 Programming Discussions 01-11-2005, 06:08 PM
Replies: 2
Views: 809
Posted By rake
DROP TABLE IF EXISTS `vbchat_store`; to remove...

DROP TABLE IF EXISTS `vbchat_store`; to remove the table and then install the hack again.
Showing results 1 to 25 of 332

 
Forum Jump

All times are GMT. The time now is 10:50 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.02241 seconds
  • Memory Usage 2,059KB
  • 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
  • (14)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