Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 07-07-2004, 04:52 PM
run.exe's Avatar
run.exe run.exe is offline
 
Join Date: Mar 2004
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default MySQL error 1064 in vB 3.0.3 + PHP5.0.0 using forums/global.php user authentication

MySQL error 1064 in vB 3.0.3 + PHP5.0.0 (gold/release)

--------------------------------------------------------------------------------

Hello and thank you for your time.

I am running vBulletin v3.0.3 (no hacks whatsoever), within the following context:


- Microsoft Windows Server 2003 Enterprise
- Apache 2 v2.0.50 (as a module, *NOT* CGI)
- mod_ssl v2.0.50
- MySQL v4.0.20d
- PHP5.0.0 (gold/release)


I receive the following error when attempting to access a forum link in vBulletin - which passes variables to a PHP page -
which, in turn, should access a MySQL database (via: action=new).

Said link remains unchanged since before my upgrade from vB 3.0.1-->3.0.3.

Any/all help will be MOST appreciated; thank you, in advance...


**************************************************


Database error in vBulletin :

Invalid SQL:
SELECT * FROM style
WHERE (styleid = 0 AND userselect = 1)
OR styleid =
ORDER BY styleid ASC
LIMIT 1

mysql error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY styleid ASC
LIMIT 1' at line 4

mysql error number: 1064


Date: Wednesday 07th of July 2004 09:44:55 AM
Script: http://www.500ecstasy.com/forums/re....php?action=new
Referer:
IP Address: xxx.xxx.xxx.xxx


**************************************************
Reply With Quote
  #2  
Old 07-07-2004, 05:29 PM
Modin Modin is offline
 
Join Date: Jun 2004
Posts: 162
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well, the sql string is missing a value after "OR styleid ="

this means a variable is empty somewhere, are you sure you haven't touched the code? I'm not sure what would cause this.
Reply With Quote
  #3  
Old 07-07-2004, 06:28 PM
run.exe's Avatar
run.exe run.exe is offline
 
Join Date: Mar 2004
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Upon further investigation, it appears that this problem is directly related to the inclusion/requirement of forums/global.php for user authentication (in my vBulletin 3.0.3 user-group permission specified link).

Specifically, the code in question follows:


<?
$self_dir = getcwd();
chdir('../');
require_once('global.php');
chdir($self_dir);
?>



Of note is the fact that browsing directly to forums/global.php yields the identical MySQL error noted above (1064).

Is anyone else using the above method of user authentication?

If not, what is the recommended method, please?
Reply With Quote
  #4  
Old 07-08-2004, 02:55 AM
run.exe's Avatar
run.exe run.exe is offline
 
Join Date: Mar 2004
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

{EDIT: preemptive bump deleted, in the interest of netiquette}
Reply With Quote
  #5  
Old 07-08-2004, 12:29 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

there is no need to bump a thread within 24h, that will just reduce your chance of getting help..

have you tried to add the importat variables/arrays before you call global.php.
there's a reason why these are on every page
Reply With Quote
  #6  
Old 07-08-2004, 03:17 PM
run.exe's Avatar
run.exe run.exe is offline
 
Join Date: Mar 2004
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much for your time and assistance.

Being a network engineer and not a coder (by any real standard), I do not follow your suggestion/implication; please pradon my (PHP) ignorance.

Given that nothing has changed in my PHP or HTML code - or environment - save the "upgrade" to PHP5 RC3, what is now missing that wasn't missing before? Has PHP syntax changed, somehow, post v4.3.6?

Would you be so kind as to provide some (generic, code) examples, please?
Reply With Quote
  #7  
Old 07-08-2004, 03:52 PM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Post the top part of your code...about 100 lines or so so we can see whats going on.
Reply With Quote
  #8  
Old 07-08-2004, 04:16 PM
run.exe's Avatar
run.exe run.exe is offline
 
Join Date: Mar 2004
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dark_Wizard
Post the top part of your code...about 100 lines or so so we can see whats going on.

Which code, please?

global.php

or

index.php {the file I cannot open, successfully}
Reply With Quote
  #9  
Old 07-08-2004, 04:29 PM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The file that contains this code you posted above:

Code:
<?
$self_dir = getcwd();
chdir('../');
require_once('global.php');
chdir($self_dir);
?>
Reply With Quote
  #10  
Old 07-08-2004, 04:59 PM
run.exe's Avatar
run.exe run.exe is offline
 
Join Date: Mar 2004
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
<?
$self_dir = getcwd();
chdir('../');
require_once('global.php');
chdir($self_dir);
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>TITLE</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles/styles.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {
	font-size: 30px;
	font-style: italic;
	font-weight: bold;
}
.style2 {
	font-size: 10px;
	font-style: italic;
	color: #CCCCCC;
}
.style4 {font-size: 12px; font-style: italic; font-weight: bold; }
.style11 {font-size: 12px; font-style: italic; font-weight: bold; color: #FFFFFF; }
.style12 {color: #999999}
.style13 {color: #FFFFFF}
.style15 {color: #FF0000}
.style16 {color: #CCCCCC}
.style21 {font-size: 24px}
.style23 {font-size: 14px; font-style: italic; font-weight: bold; }
.style24 {font-size: 14px}
.style25 {
	font-size: 24px;
	color: #FFFFFF;
	font-style: italic;
	font-weight: bold;
}
.style28 {font-size: 10px}
.style29 {font-size: 14px; font-style: italic; font-weight: bold; color: #CCCCCC; }
-->
</style>
</head>
<body bgcolor="#333333" text="#CCCCCC" link="#666666" vlink="#999999" alink="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<? if($bbuserinfo['userid'] == 0) { ?>
<table width="100%" height="100%" cellpadding="3" cellspacing="0" border="0">
	<tr valign="middle"><td align="center">
		<table width="618" height="30" border="0" cellpadding="3" cellspacing="0">
			<tr>	
			  <td colspan="2"width="612" height="27" align="center" bgcolor="#F0F0F0"><span class="section">500E OWNER REGISTRY</span></td>
		  </tr>
			<tr bgcolor="#999999">	
			<td colspan="2" height="1"></td>
			</tr>
			<tr bgcolor="#FFFFFF">	
			
			<table width="618" height="20" border="0" cellpadding="3" cellspacing="0">
				<tr bgcolor="#FFFFFF">	
				<td align="center"><span class="note">NOT LOGGED IN</span></td>
				</tr>
				<tr bgcolor="#FFFFFF">	
				<td align="center"><span class="text"><a href="http://path.to.my/forums/">log in</a></span></td>
				</tr>
		  </table>
	  <tr>
				<td colspan="2" align="left"><span class="text">&nbsp;</span></td>
	  </tr>
	</table>
		</td></tr>
</table>
<? } else { // is logged in ?>

<?php
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:01 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.05096 seconds
  • Memory Usage 2,258KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete