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

Showing results 1 to 25 of 424
Search took 0.01 seconds.
Search: Posts Made By: MoT3rror
Forum: vB3 Programming Discussions 10-20-2008, 07:14 PM
Replies: 3
Views: 676
Posted By MoT3rror
You need to turn on the rewrite engine with this...

You need to turn on the rewrite engine with this code.

RewriteEngine On
Forum: vB3 Programming Discussions 10-09-2008, 11:17 PM
Replies: 2
Views: 746
Posted By MoT3rror
<a href="http://members.vbulletin.com/api/"...

<a href="http://members.vbulletin.com/api/" target="_blank">vBulletin API</a>
Forum: vB3 Programming Discussions 10-04-2008, 09:36 PM
Replies: 5
Views: 890
Posted By MoT3rror
You can use the setattribute...

You can use the setattribute (http://www.w3schools.com/Dom/met_element_setattribute.asp) function to set it before your javascript code.


element.setAttribute('MaxChars', 1000);
Forum: vB3 Programming Discussions 09-23-2008, 02:38 AM
Replies: 1
Views: 661
Posted By MoT3rror
One it is best to use vBulletin db functions so...

One it is best to use vBulletin db functions so you only use one database connection.
https://vborg.vbsupport.ru/showthread.php?t=98047&highlight=database+class

But if you want to stay with the...
Forum: vB3 Programming Discussions 09-23-2008, 02:30 AM
Replies: 1
Views: 604
Posted By MoT3rror
The characters are supposed to come up like that...

The characters are supposed to come up like that to protect yourself from XSS.
Forum: vB3 Programming Discussions 09-20-2008, 10:29 PM
Replies: 1
Views: 1,692
Posted By MoT3rror
Most browsers will detect a favicon.ico in your...

Most browsers will detect a favicon.ico in your root directory of your public_html or where you store your files for your website.
Forum: vB3 Programming Discussions 09-18-2008, 02:34 AM
Replies: 9
Views: 1,743
Posted By MoT3rror
<a...

<a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=8&txtCodeId=1786" target="_blank">http://www.planet-source-code.com/vb...txtCodeId=1786</a>
Forum: vB3 Programming Discussions 09-08-2008, 12:18 AM
Replies: 2
Views: 711
Posted By MoT3rror
Use define('NOPMPOPUP', 1); in init_start with...

Use define('NOPMPOPUP', 1);
in init_start with a if condition around it.
Forum: vB3 Programming Discussions 09-04-2008, 07:15 PM
Replies: 5
Views: 1,457
Posted By MoT3rror
Source...

Source (http://www.vbulletin.com/forum/showthread.php?t=280752)
Forum: vB3 Programming Discussions 09-04-2008, 02:54 AM
Replies: 6
Views: 1,056
Posted By MoT3rror
You can't put php in templates, you must use...

You can't put php in templates, you must use plugins.
Forum: vB3 Programming Discussions 09-03-2008, 08:56 PM
Replies: 5
Views: 934
Posted By MoT3rror
You are missing a > in this. </div> <div...

You are missing a > in this.

</div>
<div style="padding-top:15px;padding-bottom:0px;">
<if condition="$show['deletedpost']">
<img src="$stylevar[imgdir_misc]/trashcan.png"...
Forum: vB3 Programming Discussions 09-03-2008, 05:12 AM
Replies: 12
Views: 1,265
Posted By MoT3rror
Try using $bbuserinfo['userid'] == 0 in your...

Try using $bbuserinfo['userid'] == 0 in your condition.
Forum: vB3 Programming Discussions 09-03-2008, 05:10 AM
Replies: 2
Views: 619
Posted By MoT3rror
The function needs to be defined before the...

The function needs to be defined before the actually a tag. Also you don't really need all that code to change image for rollover.
...
Forum: vB3 Programming Discussions 09-03-2008, 05:07 AM
Replies: 2
Views: 1,100
Posted By MoT3rror
The server doesn't know the username and password...

The server doesn't know the username and password to a password protected directory so you get a 403 (or no access) if it is connecting by HTTP.
Forum: vB3 Programming Discussions 09-03-2008, 04:48 AM
Replies: 10
Views: 1,255
Posted By MoT3rror
What is title and description supposed to be a...

What is title and description supposed to be a file or plain text?
Forum: vB3 Programming Discussions 09-02-2008, 07:17 PM
Replies: 4
Views: 4,149
Posted By MoT3rror
Like I said you are getting a database error. Use...

Like I said you are getting a database error. Use mysql_error(); to get the error text.
Forum: vB3 Programming Discussions 09-01-2008, 05:41 AM
Replies: 10
Views: 1,255
Posted By MoT3rror
$sqlvalues = 'VALUES'; $first = true; ...

$sqlvalues = 'VALUES';
$first = true;

for()//something goes there or make it a while, foreach
{
$sqlvalues .= ($first ? '' : ', ') . "('" . $db->escape_string($somevalue) . "', '" ....
Forum: vB3 Programming Discussions 09-01-2008, 05:35 AM
Replies: 9
Views: 1,843
Posted By MoT3rror
Set $vbulletin->options['simpleversion'] to...

Set $vbulletin->options['simpleversion'] to nothing in global_start or another plugin around then should take a away the 373.
Forum: vB3 Programming Discussions 08-30-2008, 03:47 AM
Replies: 3
Views: 930
Posted By MoT3rror
They probably change how to start the ajax call...

They probably change how to start the ajax call again in IE 8. If you are using YUI or another javascript library, they might have updated it already or planning on doing it very soon.
Forum: vB3 Programming Discussions 08-30-2008, 03:37 AM
Replies: 10
Views: 1,498
Posted By MoT3rror
I believe it is $post and not $bbuserinfo for the...

I believe it is $post and not $bbuserinfo for the information of the user that made that post.
Forum: vB3 Programming Discussions 08-29-2008, 07:17 PM
Replies: 4
Views: 4,149
Posted By MoT3rror
You should use the inbuilt db functions for one....

You should use the inbuilt db functions for one. (https://vborg.vbsupport.ru/showthread.php?t=98047&highlight=database+class) Second your code doesn't protect against sql injection.

Here is some...
Forum: vB3 Programming Discussions 08-28-2008, 04:02 AM
Replies: 3
Views: 738
Posted By MoT3rror
He isn't talking about PHP version. Here you...

He isn't talking about PHP version.

Here you go (http://www.vbulletin.com/docs/html/avatar_management_permissions)
Forum: vB3 Programming Discussions 08-28-2008, 03:58 AM
Replies: 3
Views: 830
Posted By MoT3rror
Find <if condition="$show['member']"> ...

Find

<if condition="$show['member']">
<div class="smallfont">


Replace

<if condition="$show['member']">
<div class="smallfont" style="margin-top: -5px">
Forum: vB3 Programming Discussions 08-26-2008, 04:31 AM
Replies: 14
Views: 1,734
Posted By MoT3rror
All the $cronimage is a img tag when there is a...

All the $cronimage is a img tag when there is a schedule task that needs to happen. It best to put it near or the end of the footer template.
Forum: vB3 Programming Discussions 08-22-2008, 07:44 PM
Replies: 1
Views: 711
Posted By MoT3rror
Well how is it not working? Is there any errors. ...

Well how is it not working? Is there any errors.

Also you should modify the database, you should do everything in the admin CP.

So for step 6, open up subscription_payment_paypal.

Find...
Showing results 1 to 25 of 424

 
Forum Jump

All times are GMT. The time now is 07:02 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.03882 seconds
  • Memory Usage 2,066KB
  • 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
  • (10)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