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

Showing results 1 to 25 of 241
Search took 0.01 seconds.
Search: Posts Made By: m002.p
Forum: vBulletin 3.8 Add-ons 12-30-2018, 08:55 PM
Replies: 5
Views: 6,222
Posted By m002.p
It might just be me, but the force agreement does...

It might just be me, but the force agreement does not allow a user to actually view the privacy policy as it redirects back to the force agreement

Furthermore, I had to add /forum/ to the...
Forum: vBulletin 4.x Add-ons 03-04-2018, 08:36 PM
Replies: 581
Views: 114,171
Posted By m002.p
Old I know, but I have the same issue on vb3.8.9

Old I know, but I have the same issue on vb3.8.9
Forum: vB3 Programming Discussions 08-30-2012, 07:16 PM
Replies: 11
Views: 1,277
Posted By m002.p
Hi kh99, The issue is actually this, not the...

Hi kh99,

The issue is actually this, not the preg_match_all.

$p1 = "/BOT report (.*),(.*)/siU";
if (preg_match_all($p1, $console['chat'], $out1))
{
// Define variables for actions...
Forum: vB3 Programming Discussions 08-26-2012, 08:29 AM
Replies: 11
Views: 1,277
Posted By m002.p
Kh99, I have one preg_match I simply cannot...

Kh99,

I have one preg_match I simply cannot get to work as true in this if statement.

Any ideas?

// Check for player reports
$p1 = "/BOT report (.*);(.*)/";
if (preg_match_all($p1,...
Forum: vB3 Programming Discussions 08-25-2012, 12:51 PM
Replies: 11
Views: 1,277
Posted By m002.p
Thanks. So finally, is it best to use the "....

Thanks.

So finally, is it best to use the ". instead of {} for variables directly in the preg_match function to avoid the {} being used as part of the search critera?
Forum: vB3 Programming Discussions 08-25-2012, 12:22 PM
Replies: 11
Views: 1,277
Posted By m002.p
I was using the { } characters to enclose the...

I was using the { } characters to enclose the variable as I have done in a mysql query for any variables like $array['offset'];

Do you not need to enclose variables? Is there documentation to...
Forum: vB3 Programming Discussions 08-25-2012, 09:50 AM
Replies: 11
Views: 1,277
Posted By m002.p
Ah thanks, works a treat. On a similar note,...

Ah thanks, works a treat. On a similar note, furthering this issue, could you explain the following to me?

I get this message while using preg_match:

PHP Warning: preg_match() [<a...
Forum: vB3 Programming Discussions 08-17-2012, 02:43 PM
Replies: 11
Views: 1,277
Posted By m002.p
Using preg_match_all...

Hi everyone,

I have a string for example like below:

id:3,name:example,ip:89.12.4.54,sa:false,a:false;id:5,name:exampletwo,ip:78.23.45.61,sa:false,a:true;

I am using a preg_match_all...
Forum: vB3 Programming Discussions 07-29-2012, 04:46 PM
Replies: 6
Views: 1,219
Posted By m002.p
Hi Kh99, I know its been a while since I had...

Hi Kh99,

I know its been a while since I had this issue, but I have since been trying using another method.

Instead of using the old method:

// Store all checkboxes as array
$a_offenses =...
Forum: vB3 General Discussions 07-20-2012, 08:37 PM
Replies: 11
Views: 1,253
Posted By m002.p
You are absolutely right. I am so sorry..I feel...

You are absolutely right. I am so sorry..I feel like an idiot.

Thank you for your time & effort.
Forum: vB3 General Discussions 07-20-2012, 07:56 PM
Replies: 11
Views: 1,253
Posted By m002.p
Yes here is the template. It is a modification of...

Yes here is the template. It is a modification of a welcome panel here on vb.org

<if condition="$vbulletin->options['onoff']">
<table class="tborder" cellpadding="$stylevar[cellpadding]"...
Forum: vB3 General Discussions 07-20-2012, 06:58 AM
Replies: 11
Views: 1,253
Posted By m002.p
Sorry to say but that code doesnt work either....

Sorry to say but that code doesnt work either. The avatar simply does not display...

Cant get my head round it... change the height & width to pixels and it works fine.

Furthermore, no. The...
Forum: vB3 General Discussions 07-19-2012, 07:28 PM
Replies: 11
Views: 1,253
Posted By m002.p
Hi, Thanks for your reply. The code is...

Hi,

Thanks for your reply.

The code is used in a template on the forumhome.

The image with the first code simply does not show whereas change it to a pixel ie. width="200" works. It seems to...
Forum: Community Lounge 07-19-2012, 05:58 PM
Replies: 10
Views: 1,508
Posted By m002.p
Welcome back, I still use a couple of your old...

Welcome back, I still use a couple of your old mods from the 3.x series :)

Still working beautifully. Good to see you
Forum: vB4 General Discussions 07-19-2012, 05:56 PM
Replies: 5
Views: 1,344
Posted By m002.p
Yes and that was sad as I really valued the...

Yes and that was sad as I really valued the simplicity of the old templates & style vars etc. :(
Forum: vB3 General Discussions 07-19-2012, 05:08 PM
Replies: 11
Views: 1,253
Posted By m002.p
Avatar Resizing

Hi guys,

Have a weird one here but I want to resize an avatar displayed using %. However, when doing it with the below method the image does not display.

<a...
Forum: vB3 Programming Discussions 06-10-2012, 04:22 PM
Replies: 6
Views: 1,219
Posted By m002.p
Genius, works like a charm. Thank you, something...

Genius, works like a charm. Thank you, something so simple but so simply overlooked.

Matt
Forum: vB3 Programming Discussions 06-10-2012, 03:43 PM
Replies: 6
Views: 1,219
Posted By m002.p
Hi, thanks for your response. I dont follow...

Hi, thanks for your response.

I dont follow what you mean.

Heres an example.

Row 'offenses' for ID 4; Team Killing, Spamming, ROE Violations

Out of all the checkbox possibilities as...
Forum: vB3 Programming Discussions 06-10-2012, 02:47 PM
Replies: 6
Views: 1,219
Posted By m002.p
Retrieving checkbox values from MYSQL

Hello everyone.

I am tearing my hair out with this one and I sort of know the reason why it wont work, being a loop issue but I cant see where I am going wrong.

I have checkboxes as seen in...
Forum: vB4 General Discussions 06-10-2012, 02:43 PM
Replies: 5
Views: 1,344
Posted By m002.p
Thanks for your valued feedback. Being a "coder"...

Thanks for your valued feedback. Being a "coder" I managed to work things out no problem in the end ;)

If you really must know I did not backup because I thought someone else on my site did as...
Forum: vBulletin 3.8 Add-ons 03-10-2012, 01:45 PM
Replies: 691
Chat Modifications - [DBTech] vBShout v6 (vB3) [AJAX]
Views: 117,778
Posted By m002.p
Thanks got it to display, my only issue now is it...

Thanks got it to display, my only issue now is it appears they are two different chatboxes.

The chats are respective of only the shoutbox displayed on the forum home and in the vbcmps module. In...
Forum: vBulletin 3.8 Add-ons 03-10-2012, 12:18 PM
Replies: 691
Chat Modifications - [DBTech] vBShout v6 (vB3) [AJAX]
Views: 117,778
Posted By m002.p
Yes all I am doing is what we did on vbShout by...

Yes all I am doing is what we did on vbShout by Inferno Tech. Simply add the full URL eg.

vbshout.php to /forum/vbshout.php

I was going to purchase Pro but to my users mainly use a module on...
Forum: vBulletin 3.8 Add-ons 03-10-2012, 12:04 PM
Replies: 691
Chat Modifications - [DBTech] vBShout v6 (vB3) [AJAX]
Views: 117,778
Posted By m002.p
Well im sure it is possible. I have adjusted the...

Well im sure it is possible. I have adjusted the templates to now reflect the full paths but still "Error: 404 Not Found".

I will keep looking into it but there doesnt appear to be a place to list...
Forum: vBulletin 3.8 Add-ons 03-09-2012, 10:22 AM
Replies: 691
Chat Modifications - [DBTech] vBShout v6 (vB3) [AJAX]
Views: 117,778
Posted By m002.p
I have installed on the vbadvanced homepage as...

I have installed on the vbadvanced homepage as per the instructions but the chatbox displays a 404 error. The source is trying to get /vbshout.php from the homepage and it should be...
Forum: vBulletin 4 Articles 03-06-2012, 09:41 PM
Replies: 41
Views: 22,559
Posted By m002.p
Hi all, I have a query about this method of...

Hi all,

I have a query about this method of downgrading. Would appreciate assistance in this thread if someone in the know could spare 5
...
Showing results 1 to 25 of 241

 
Forum Jump

All times are GMT. The time now is 11:24 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.03696 seconds
  • Memory Usage 2,064KB
  • 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)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (42)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