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

Showing results 1 to 25 of 178
Search took 0.01 seconds.
Search: Posts Made By: Modin
Forum: Board of the Month 08-23-2007, 04:52 PM
Replies: 40
Views: 10,001
Posted By Modin
Seconded :)

Seconded :)
Forum: vB3 Programming Discussions 10-26-2004, 02:03 AM
Replies: 10
Views: 1,017
Posted By Modin
hmm... not sure if it'll parse $_SERVER in a...

hmm... not sure if it'll parse $_SERVER in a template, but hey it's worth a try


<if condition="$_SERVER['REMOTE_ADDR'] == '156.156.156.165'">
<p>Hey usergroup 156.156.156.165</p>
</if>

...
Forum: Modification Requests/Questions (Unpaid) 10-12-2004, 11:46 PM
Replies: 30
Views: 3,998
Posted By Modin
Admincp -> Usergroups -> usergroup manager ->...

Admincp -> Usergroups -> usergroup manager -> mods -> select no for "Can View IP Addresses".

I would assume that globally disables it...if not, it should ;)
Forum: vB3 General Discussions 10-03-2004, 02:30 AM
Replies: 8
Views: 905
Posted By Modin
google ads should haven't anything to do with...

google ads should haven't anything to do with page generation time.

It's probably the 6 extra queries you're running.
Forum: vB3 General Discussions 10-03-2004, 02:27 AM
Replies: 1
Views: 933
Posted By Modin
<input type="text" name="name" value="<?php echo...

<input type="text" name="name" value="<?php echo $_REQUEST['who']; ?>">


Try that :)
Forum: vB3 Programming Discussions 10-03-2004, 02:24 AM
Replies: 2
Views: 841
Posted By Modin
I assume paths are still set up correctly?

I assume paths are still set up correctly?
Forum: vB3 Programming Discussions 10-03-2004, 02:23 AM
Replies: 3
Views: 925
Posted By Modin
how are you going about to creating this table? ...

how are you going about to creating this table?

It looks like the table you're trying to create is using an unsupported feature
Forum: vB3 Programming Discussions 10-03-2004, 02:21 AM
Replies: 5
Views: 1,050
Posted By Modin
yeah, I thought about preg as well...though I...

yeah, I thought about preg as well...though I find that when you have a common delimiter explode is much easier.

And technically a new array is created when you use preg, the matches it returns...
Forum: vB3 Programming Discussions 09-30-2004, 02:38 AM
Replies: 5
Views: 1,050
Posted By Modin
Easiest would probably be to split the string...

Easiest would probably be to split the string into it's parts, then rejoin them when you got what you want

$str = "AA_B_C_DDD_123_456"
$str_array = explode("_", $str);
for($i = 0; $i < 4; $i++)...
Forum: vB3 Programming Discussions 09-28-2004, 11:33 PM
Replies: 3
Views: 966
Posted By Modin
looks like you've corrupted something in your...

looks like you've corrupted something in your usergroups.

What hacks have you installed?
Forum: vB3 General Discussions 09-27-2004, 11:15 PM
Replies: 2
Views: 1,061
Posted By Modin
remove any "print_output" or "echo" or "print"...

remove any "print_output" or "echo" or "print" statements from the code, that'll get ride of output.
Forum: vB3 Programming Discussions 09-27-2004, 11:13 PM
Replies: 5
Views: 924
Posted By Modin
<table width="800" that should fix your...

<table width="800"

that should fix your table to 800 pixels...change 800 to what you need :)

Though images larger than 800 px wide will stretch the table
Forum: vB3 Programming Discussions 09-27-2004, 11:12 PM
Replies: 12
Views: 1,573
Posted By Modin
looks right to me AN-net, though just throw it in...

looks right to me AN-net, though just throw it in a test page and test it out :)
Forum: vB3 Programming Discussions 09-25-2004, 12:18 PM
Replies: 4
Views: 981
Posted By Modin
since you say the images are in database (I takes...

since you say the images are in database (I takes this they are stored as a string in the database as oppose to on the filesystem) you must have a script that pulls it out and returns it. Double...
Forum: vB3 Programming Discussions 09-25-2004, 12:07 PM
Replies: 1
Views: 856
Posted By Modin
looks fine, probably php isn't set up properly to...

looks fine, probably php isn't set up properly to send mail.

Is this your personal server?
Forum: vB3 Programming Discussions 09-14-2004, 02:23 AM
Replies: 2
Views: 895
Posted By Modin
if you want this to happen when you click submit...

if you want this to happen when you click submit then set the form method to GET

ie.
<form method="GET" action="index.php">
Forum: vB3 Programming Discussions 09-14-2004, 02:22 AM
Replies: 5
Views: 854
Posted By Modin
is Usrid the variable you want to be trimming? It...

is Usrid the variable you want to be trimming? It would seem intuitive to be trimming a variable called Username (or whatever you store it in).

Unless of course you have the username stored in...
Forum: vB3 General Discussions 09-09-2004, 09:43 PM
Replies: 3
Views: 1,023
Posted By Modin
go to admincp --> Styles & Templates --> Style...

go to admincp --> Styles & Templates --> Style Manage --> Select All Style Options --> Find table border group and add this to extra css attributes

border: 1px #000000;


Cheers :)
Forum: vB3 General Discussions 09-09-2004, 09:38 PM
Replies: 2
Views: 937
Posted By Modin
host the image locally on your server, then...

host the image locally on your server, then people won't be getting it from paypal's server and be given a cookie.
Forum: vB3 General Discussions 09-09-2004, 09:37 PM
Replies: 1
Views: 851
Posted By Modin
yep, go into your admincp and go to User Profile...

yep, go into your admincp and go to User Profile Fields, you can manage them in there.
Forum: vB3 Programming Discussions 09-09-2004, 09:33 PM
Replies: 4
Views: 950
Posted By Modin
yeah, if you passed a hidden field, you could do...

yeah, if you passed a hidden field, you could do it.... but that's very insecure since someone could just send the correct headers and see the button you're hiding...
Forum: vB3 Programming Discussions 09-08-2004, 09:35 PM
Replies: 2
Views: 960
Posted By Modin
do you have it pointing to the right server? it...

do you have it pointing to the right server? it should probably be set to localhost
Forum: vB3 Programming Discussions 09-08-2004, 09:26 PM
Replies: 4
Views: 950
Posted By Modin
before you call the .js file I believe you can...

before you call the .js file I believe you can set a js variable which will be in the scope of the .js file.

ie.

<script language="javascript">
myvar = 6;
</script>

<script...
Forum: vB3 Programming Discussions 09-08-2004, 09:24 PM
Replies: 1
Views: 849
Posted By Modin
um, I'm guessing not...at least not easily. ...

um, I'm guessing not...at least not easily.
Mainly because you need some extra permissions to setup the users for mail (hence why you have to log in for cpanel)
Forum: vB3 Programming Discussions 08-19-2004, 03:48 PM
Replies: 16
Views: 1,506
Posted By Modin
lol, I usually tell my other admins to not touch...

lol, I usually tell my other admins to not touch anything without telling me first :p

it can be one of the most frustating things, glad you got it sorted :)

As for your template hack, I haven't...
Showing results 1 to 25 of 178

 
Forum Jump

All times are GMT. The time now is 11:00 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.03113 seconds
  • Memory Usage 2,047KB
  • 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
  • (12)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