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

Showing results 1 to 25 of 59
Search took 0.00 seconds.
Search: Posts Made By: Mko
Forum: vB3 Programming Discussions 12-16-2014, 10:19 PM
Replies: 17
Views: 2,395
Posted By Mko
I was initially going to call the API to fetch...

I was initially going to call the API to fetch the amount of players logged in, but I opted to do it using a table in my db and not using a Scheduled Task.

Anyways, good to see that the code I...
Forum: vB3 Programming Discussions 12-16-2014, 04:24 PM
Replies: 17
Views: 2,395
Posted By Mko
I see! Thanks for the information. As a...

I see! Thanks for the information.

As a follow-up question...
I have a custom bridge I developed with vB. Since both you reminded me how a user needs to be viewing the forum in order for...
Forum: vB3 Programming Discussions 12-16-2014, 03:54 PM
Replies: 17
Views: 2,395
Posted By Mko
I see. Thanks for the suggestion! Would the...

I see. Thanks for the suggestion!

Would the following settings be what I'm after if I wish to have my Task run every minute?
https://vborg.vbsupport.ru/external/2014/12/20.png
Forum: vB3 Programming Discussions 12-16-2014, 03:36 PM
Replies: 17
Views: 2,395
Posted By Mko
Scheduled Task - Run Every 5 Seconds

I've created a Scheduled Task that will submit a request to an API and store the value returned in a table in my database.
I'm interested in having this Scheduled Task run every 5 seconds, yet in...
Forum: vB3 Programming Discussions 08-17-2013, 01:40 PM
Replies: 2
Views: 1,403
Posted By Mko
Ah, thanks for the reply. I just went through the...

Ah, thanks for the reply. I just went through the 4 classes that use one of the fetch_avatar functions and set the thumb param to false and they display perfectly (no issues with the cache). As for...
Forum: vB3 Programming Discussions 08-17-2013, 10:47 AM
Replies: 2
Views: 1,403
Posted By Mko
Issue with Images' Caching

Hello,
One of my fellow Administrators has been reporting an odd issue he's been experiencing with my Forum dealing with the caching of images. I've looked around a bunch and can't seem to figure...
Forum: vB3 Programming Discussions 02-04-2013, 08:11 PM
Replies: 0
Views: 1,084
Posted By Mko
Forum: vB3 Programming Discussions 01-21-2013, 12:02 AM
Replies: 0
Views: 939
Posted By Mko
Forum: vB3 Programming Discussions 01-14-2013, 01:01 AM
Replies: 4
Views: 1,571
Posted By Mko
The vBulletin Forum Folder is the folder that is...

The vBulletin Forum Folder is the folder that is extracted from the .zip you download from the Members' Area on vbulletin.com
Forum: vB3 General Discussions 01-13-2013, 01:11 PM
Replies: 9
Views: 1,129
Posted By Mko
I normally have two pretty effective methods to...

I normally have two pretty effective methods to stop spammers.
#1. reCAPTCHA. Go to http://www.google.com/recaptcha and register to get a Public and Private key. Then, in a new tab/window, open up...
Forum: vB3 Programming Discussions 01-13-2013, 01:03 PM
Replies: 4
Views: 1,571
Posted By Mko
There is no way to recover a deleted file in...

There is no way to recover a deleted file in FileZilla.
However, the solution is simple -- you just need to re-upload the init.php file included in your vBulletin Forum Folder to the correct path....
Forum: vB3 Programming Discussions 01-12-2013, 11:37 AM
Replies: 2
Views: 933
Posted By Mko
This should help you out: ...

This should help you out:
https://vborg.vbsupport.ru/showthread.php?t=98009
Forum: vB3 Programming Discussions 01-11-2013, 07:14 PM
Replies: 15
Views: 3,169
Posted By Mko
Whoops, was an error on my part. Sorry :( Now,...

Whoops, was an error on my part. Sorry :(
Now, when I go to mysite.com/home.php, the value in the `session` table is actually /home.php! So, the value's getting stored in the table. All that we need...
Forum: vB3 Programming Discussions 01-11-2013, 06:46 PM
Replies: 15
Views: 3,169
Posted By Mko
The location that's stored in the database when I...

The location that's stored in the database when I view home.php is:
/

Not sure how I'd get around that :s
Forum: vB3 Programming Discussions 01-11-2013, 02:06 AM
Replies: 15
Views: 3,169
Posted By Mko
Still doesn't work. For the plugins I'm calling...

Still doesn't work. For the plugins I'm calling inside vB:
online_location_process:
switch ($filename)
{
case 'home.php':
$userinfo['activity'] = 'homepage';
break;...
Forum: vB3 Programming Discussions 01-10-2013, 11:33 PM
Replies: 15
Views: 3,169
Posted By Mko
Neither of those options worked, sadly :c I've...

Neither of those options worked, sadly :c
I've tried: /home.php, ./home.php, ../home.php, /../home.php, ./../home.php, ../../home.php, home.php, and homepage.
Forum: vB3 Programming Discussions 01-10-2013, 11:20 PM
Replies: 15
Views: 3,169
Posted By Mko
Alright. Renaming it to home.php works. I still...

Alright. Renaming it to home.php works. I still get an 'Unknown Location' error.
My current online_location_process:

switch ($filename)
{
case '../home.php':
$userinfo['activity']...
Forum: vB3 Programming Discussions 01-10-2013, 10:50 PM
Replies: 15
Views: 3,169
Posted By Mko
Yeah, my homepage is called index.php :/ Would...

Yeah, my homepage is called index.php :/
Would renaming it to home.php be of some use?

P.S. For the Plugin online_location_process:
switch ($filename)
{
case '../':
Would '../' be...
Forum: vB3 Programming Discussions 01-10-2013, 10:16 PM
Replies: 15
Views: 3,169
Posted By Mko
I've simply included global.php and copy and...

I've simply included global.php and copy and pasted the navbar login code into my homepage to get login to work.
Anyways, I gave your attempt a try. The location in the `session` table on my forums...
Forum: vB3 Programming Discussions 01-10-2013, 07:19 PM
Replies: 15
Views: 3,169
Posted By Mko
External PHP File - Display User Location in "Who's Online"

Hey all,
I have a question regarding external files.
To start off:
- I have vBulletin installed to mysite.com/forums.
- I have a homepage at mysite.com/index.php (which has working login to...
Forum: vB3 Programming Discussions 12-25-2012, 04:23 PM
Replies: 0
Views: 902
Posted By Mko
vbmenu_popup Alignment Issue

I've been recently coding a theme for my site. However, I've come across an error that is a bit perplexing to me.

Essentially, when I try to open up any vbmenu_popup, the box is misaligned, and...
Forum: vBulletin 3.8 Add-ons 09-16-2012, 03:51 PM
Replies: 47
Views: 24,240
Posted By Mko
For any user who seems to have issues with the...

For any user who seems to have issues with the date that displays on the recent_thanks.php page, open recent_thanks.php.
Then go to line 100 and 101, and comment out (/* */) those two lines. Below,...
Forum: vB3 Programming Discussions 08-15-2012, 09:56 PM
Replies: 2
Views: 994
Posted By Mko
Haha whoops, silly mistake by me. I know it was...

Haha whoops, silly mistake by me. I know it was something obvious.

Thanks for the help again haha :P
Forum: vB3 Programming Discussions 08-15-2012, 08:59 PM
Replies: 2
Views: 994
Posted By Mko
While Loop Using fetch_userinfo - 'Array' Displayed?

Hey all,
When I try to do a While Loop, I have a line of code that looks like:

$username = fetch_userinfo($userid);


However, the output always displays 'Array' instead of the username.
Does...
Forum: vB3 General Discussions 08-11-2012, 11:38 AM
Replies: 3
Views: 1,078
Posted By Mko
Paid Subscriptions - PayPal

Hey all,
I'm in the process of setting up a forum for a friend of mine, and he asked me whether or not Subscription Prices are subjected to PayPal Fees.

Basically, he's wondering:
If there is a...
Showing results 1 to 25 of 59

 
Forum Jump

All times are GMT. The time now is 09:12 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.03736 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
  • (27)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