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

Showing results 1 to 25 of 74
Search took 0.01 seconds.
Search: Posts Made By: MarkPW
Forum: vB3 Programming Discussions 06-12-2009, 08:06 PM
Replies: 6
Views: 1,141
Posted By MarkPW
If your passing your parameters/variables in the...

If your passing your parameters/variables in the URL (not posting them via a form, for example), then you should be using $_GET, not $_POST.
Forum: vB3 Programming Discussions 06-12-2009, 03:08 AM
Replies: 2
Views: 671
Posted By MarkPW
change OR to AND... <if condition="$forumid...

change OR to AND...

<if condition="$forumid != 97 AND $forumid != 46 AND $forumid != 70 AND $forumid != 72">

Or you could use !in_array()...

<if condition="!in_array($forumid,...
Forum: vB3 Programming Discussions 05-21-2008, 08:38 AM
Replies: 14
Views: 1,490
Posted By MarkPW
Is this what you're looking for? [How-to]...

Is this what you're looking for?

[How-to] Add more tabs to the vB 3.7 profile pages (https://vborg.vbsupport.ru/showthread.php?t=165554)
Forum: vB3 Programming Discussions 01-30-2008, 02:57 PM
Replies: 3
Views: 724
Posted By MarkPW
That's because they aren't available in...

That's because they aren't available in global_start. Use global_setup_complete or even parse_templates ;)
Forum: vB3 Programming Discussions 01-27-2008, 12:29 AM
Replies: 4
Views: 832
Posted By MarkPW
You're asking how to add custom fields to the...

You're asking how to add custom fields to the postbit right?

You can do this by either directly editing the postbit_legacy template or using a template hook (the latter of which I prefer because...
Forum: vB3 Programming Discussions 01-26-2008, 10:29 PM
Replies: 4
Views: 832
Posted By MarkPW
In AdminCP, go to vBulletin Options > Style &...

In AdminCP, go to vBulletin Options > Style & Language Settings.

Set "Use Legacy (Vertical) Postbit Template" to yes.
Forum: vB3 Programming Discussions 01-25-2008, 11:53 PM
Replies: 4
Views: 813
Posted By MarkPW
Is there a reason why you're creating a session...

Is there a reason why you're creating a session for your cron script?

I define the following for my crons:

define('SKIP_SESSIONCREATE', 1);
define('NOCOOKIES', 1);
define('DIE_QUIETLY', 1);
Forum: vB3 Programming Discussions 10-28-2007, 05:55 PM
Replies: 1
Views: 942
Posted By MarkPW
Just add the following within the login form: ...

Just add the following within the login form:

<input type="hidden" name="redirect" value="mycustompage.php" />
Forum: Community Lounge 10-26-2007, 03:44 PM
Replies: 25
Views: 3,894
Posted By MarkPW
The point you made was that you used no keywords,...

The point you made was that you used no keywords, yet you still got indexed. Just because you haven't "set up shop", have no keywords or have no general content, doesn't mean you will not get...
Forum: Community Lounge 10-25-2007, 07:24 PM
Replies: 25
Views: 3,894
Posted By MarkPW
That's because your URL was discovered (unless...

That's because your URL was discovered (unless you submitted manually), therefore Google and other search engines are inclined to index it.



Just because you don't have any content on your site...
Forum: Community Lounge 10-25-2007, 03:29 PM
Replies: 25
Views: 3,894
Posted By MarkPW
I never said not doing any SEO will NOT get you...

I never said not doing any SEO will NOT get you indexed. Of course you will get indexed, but all search engine spiders depend on keywords to find your site, as do search engine users. If haven't...
Forum: Community Lounge 10-24-2007, 11:40 AM
Replies: 25
Views: 3,894
Posted By MarkPW
Do you honestly believe I would question your...

Do you honestly believe I would question your argument without any experience or evidence? I think you're misinterpreting what I'm trying to say. I'm not inferring that you should fill your META tags...
Forum: Community Lounge 10-24-2007, 01:20 AM
Replies: 25
Views: 3,894
Posted By MarkPW
Chris, I was disputing your original statement...

Chris, I was disputing your original statement that keywords really don't matter with Google. Whether you realise it or not, keywords do play an important role.
Forum: vB3 Programming Discussions 10-23-2007, 09:48 PM
Replies: 2
Views: 709
Posted By MarkPW
Yes, it's possible to retrieve all the data you...

Yes, it's possible to retrieve all the data you want.
Forum: Community Lounge 10-23-2007, 07:36 PM
Replies: 25
Views: 3,894
Posted By MarkPW
It's hard to comment not knowing what content and...

It's hard to comment not knowing what content and sites you're referring to. Nonetheless, it doesn't mean careful consideration of specific keywords has no effect on SERPS. :)
Forum: Community Lounge 10-23-2007, 04:50 PM
Replies: 25
Views: 3,894
Posted By MarkPW
I don't dispute that content is extremely...

I don't dispute that content is extremely important. It's very unlikely you're going to rank well for an article full of repeat keywords. However, that doesn't mean that keywords don't matter....
Forum: Community Lounge 10-23-2007, 01:09 AM
Replies: 25
Views: 3,894
Posted By MarkPW
That's all part of the practise of SEO. If you...

That's all part of the practise of SEO. If you SEO your site, you concentrate on factors that WILL improve your SERPS, that includes creating good content. It's no good SEO'ing by way of creating...
Forum: Community Lounge 10-23-2007, 12:51 AM
Replies: 25
Views: 3,894
Posted By MarkPW
I wouldn't panick just yet. Give it a few days....

I wouldn't panick just yet. Give it a few days. I've had this happen loads of times, especially when launching a new site.



You've confused me. SEO only helps navigation??
Forum: vB3 Programming Discussions 10-23-2007, 12:34 AM
Replies: 5
Views: 827
Posted By MarkPW
In a word, no. Besides, I wouldn't put too much...

In a word, no. Besides, I wouldn't put too much emphasis on page rank. It has no substantial affect on SERPS - in my experience anyway.
Forum: vB3 General Discussions 06-29-2007, 10:15 PM
Replies: 3
Views: 885
Posted By MarkPW
Yes, simply add the following on any page you...

Yes, simply add the following on any page you want to track.


$cwdir = getcwd();
chdir('/path/to/your/forum/');
require '/path/to/your/forum/global.php';
chdir($cwdir);
Forum: vB3 Programming Discussions 06-28-2007, 12:00 PM
Replies: 1
Views: 877
Posted By MarkPW
You can't use GET with vb's login system, unless...

You can't use GET with vb's login system, unless you modify the input cleaning method in vb's login.php.
Forum: vB3 Programming Discussions 06-27-2007, 02:29 AM
Replies: 17
Views: 2,269
Posted By MarkPW
Since you have a connection to your database, you...

Since you have a connection to your database, you can use mysql_real_escape_string() (which you should use anyway). This should solve your problem:

$salt =...
Forum: vB3 Programming Discussions 06-27-2007, 01:59 AM
Replies: 17
Views: 2,269
Posted By MarkPW
Where are your SQL errors generated from? You're...

Where are your SQL errors generated from? You're giving me half the story - I haven't a clue what's happening in the "rest" of your script. The above script generated a password hash with salt. It...
Forum: vB3 Programming Discussions 06-27-2007, 01:49 AM
Replies: 17
Views: 2,269
Posted By MarkPW
AFAIK your problem is to do with your SQL...

AFAIK your problem is to do with your SQL statement. Your script above tells me nothing that will explain your SQL errors.
Forum: vB3 Programming Discussions 06-27-2007, 01:12 AM
Replies: 17
Views: 2,269
Posted By MarkPW
It sounds as though you aren't escaping certain...

It sounds as though you aren't escaping certain value(s) in your sql statement. Are you using mysql_escape_string() on your variables before you use them in your statement?
Showing results 1 to 25 of 74

 
Forum Jump

All times are GMT. The time now is 12:50 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.03054 seconds
  • Memory Usage 2,046KB
  • 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
  • (37)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