vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Chat Modifications - [AJAX] cChatBox (https://vborg.vbsupport.ru/showthread.php?t=169725)

cajunboy2208 02-15-2008 07:45 PM

Quote:

Originally Posted by hilfe-forum (Post 1443570)
Ok now it works ;)


I disable all product
Dont work (endless loading)

I delete old files from another Chatbox...
Dont work...

Reinstall your Chatbox...
Now it works...

Aktivate other product
Stil works ;)

so i think old files of other Chatbox was the problem ;)



I have same problem.
I did all of the steps.
I've never had a chatbox before on my forum though.
And I still have the problem.
It works fine on default skin, but not on my custom skin.

christrato 02-16-2008 05:49 AM

you can give me the link of your custom skin for download and try?

tnx

Geeps 02-21-2008 03:02 AM

Any idea why this error would be showing up in internet explorer?

error on page

Line: 668
Char: 1
Error: 'null" is null or not an object
Code: 0

Works fine in FireFox

Geeps 02-21-2008 03:15 AM

uninstalled the new version. just received emails about database errors:

Database error in vBulletin 3.6.8:

Invalid SQL:

(SELECT DISTINCT user.username AS username,user.userid AS userid,user.pmtotal,usergroup.pmquota,user.options AS options,cchatbox.username AS cchatusername
FROM cchatbox_message AS cchatbox
LEFT JOIN user AS user USING (userid)
LEFT JOIN session AS session USING (userid)
LEFT JOIN usergroup AS usergroup USING (usergroupid)
WHERE session.lastactivity > 1203569331 AND cchatbox.userid = user.userid AND usergroup.usergroupid = user.usergroupid AND cchatbox.time > 1203569931 - (1*3600)
ORDER BY cchatusername ASC)
UNION DISTINCT
(SELECT DISTINCT user.username AS username,user.userid AS userid,user.pmtotal,usergroup.pmquota,user.options AS options,cchatbox.username AS cchatusername
FROM session AS session
LEFT JOIN user AS user USING (userid)
LEFT JOIN cchatbox_message AS cchatbox USING (userid)
LEFT JOIN usergroup AS usergroup USING (usergroupid)
WHERE session.lastactivity > 1203569331 AND user.userid = session.userid AND usergroup.usergroupid = user.usergroupid
ORDER BY username ASC);;

MySQL Error : Unknown column 'jamesp57_forum.session.usergroupid' in 'on clause'
Error Number : 1054


I'm using a modded default skin, Vb version 3.68

http://4x4sonthe.net

inteller2k7 02-21-2008 05:31 AM

I'm getting this, and the forum colors changing to red, any ideas?



Database error in vBulletin 3.7.0 Beta 5:

Invalid SQL:

(SELECT DISTINCT user.username AS username,user.userid AS userid,user.pmtotal,usergroup.pmquota,user.options AS options,cchatbox.username AS cchatusername
FROM hackercchatbox_message AS cchatbox
LEFT JOIN hackeruser AS user USING (userid)
LEFT JOIN hackersession AS session USING (userid)
LEFT JOIN hackerusergroup AS usergroup USING (usergroupid)
WHERE session.lastactivity > 1203577110 AND cchatbox.userid = user.userid AND usergroup.usergroupid = user.usergroupid AND cchatbox.time > 1203578910 - (1*3600)
ORDER BY cchatusername ASC)
UNION DISTINCT
(SELECT DISTINCT user.username AS username,user.userid AS userid,user.pmtotal,usergroup.pmquota,user.options AS options,cchatbox.username AS cchatusername
FROM hackersession AS session
LEFT JOIN hackeruser AS user USING (userid)
LEFT JOIN hackercchatbox_message AS cchatbox USING (userid)
LEFT JOIN hackerusergroup AS usergroup USING (usergroupid)
WHERE session.lastactivity > 1203577110 AND user.userid = session.userid AND usergroup.usergroupid = user.usergroupid
ORDER BY username ASC);;

MySQL Error : Unknown column 'aioforum_hacker.session.usergroupid' in 'on clause'
Error Number : 1054
Date : Thursday, February 21st 2008 @ 02:28:30 AM
Script : http://aioforums.com/cchatbox.php?do=userlist
Referrer : http://aioforums.com/aioforums.php?styleid=19
Classname : vB_Database
MySQL Version : 4.1.22-standard

christrato 02-21-2008 05:49 AM

Quote:

Originally Posted by Geeps (Post 1447836)
Any idea why this error would be showing up in internet explorer?

error on page

Line: 668
Char: 1
Error: 'null" is null or not an object
Code: 0

Works fine in FireFox

when this error appear?

Quote:

Originally Posted by Geeps (Post 1447845)
uninstalled the new version. just received emails about database errors:

Database error in vBulletin 3.6.8:

Invalid SQL:

(SELECT DISTINCT user.username AS username,user.userid AS userid,user.pmtotal,usergroup.pmquota,user.options AS options,cchatbox.username AS cchatusername
FROM cchatbox_message AS cchatbox
LEFT JOIN user AS user USING (userid)
LEFT JOIN session AS session USING (userid)
LEFT JOIN usergroup AS usergroup USING (usergroupid)
WHERE session.lastactivity > 1203569331 AND cchatbox.userid = user.userid AND usergroup.usergroupid = user.usergroupid AND cchatbox.time > 1203569931 - (1*3600)
ORDER BY cchatusername ASC)
UNION DISTINCT
(SELECT DISTINCT user.username AS username,user.userid AS userid,user.pmtotal,usergroup.pmquota,user.options AS options,cchatbox.username AS cchatusername
FROM session AS session
LEFT JOIN user AS user USING (userid)
LEFT JOIN cchatbox_message AS cchatbox USING (userid)
LEFT JOIN usergroup AS usergroup USING (usergroupid)
WHERE session.lastactivity > 1203569331 AND user.userid = session.userid AND usergroup.usergroupid = user.usergroupid
ORDER BY username ASC);;

MySQL Error : Unknown column 'jamesp57_forum.session.usergroupid' in 'on clause'
Error Number : 1054


I'm using a modded default skin, Vb version 3.68

http://4x4sonthe.net

damn... probably is the position of LEFT JOIN... because " LEFT JOIN usergroup AS usergroup USING (usergroupid)" don't found the usergroupid column on the table "session or cchatbox".

i not receive this error and can't try if this solution work or not... i attach the file "functions_cchatbox.php" download it and upload into directory "includes".

wait for your answer...

christrato 02-21-2008 05:52 AM

<a href="https://vborg.vbsupport.ru/member.php?u=205225" target="_blank">inteller2k7</a> try to download and overwrite the functions_cchatbox.php that i have attached into my previous post.

inteller2k7 02-21-2008 02:11 PM

Quote:

Originally Posted by christrato (Post 1447914)
inteller2k7 try to download and overwrite the functions_cchatbox.php that i have attached into my previous post.

Thank you, works great....

Geeps 02-21-2008 02:20 PM

The error on page shows up in the lower left corner of the Internet Explorer window. It doesn't seem to effect anything, and it shows only when the chat is turned on. I never noticed it since I use Firefox, but one of the forum members pointed it out last night.

inteller2k7 02-21-2008 02:28 PM

Quote:

Originally Posted by Geeps (Post 1448139)
The error on page shows up in the lower left corner of the Internet Explorer window. It doesn't seem to effect anything, and it shows only when the chat is turned on. I never noticed it since I use Firefox, but one of the forum members pointed it out last night.

Download the new functions file, in post 56 above, and replace it. I had the same problem and that fixed it.


All times are GMT. The time now is 07:56 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.01216 seconds
  • Memory Usage 1,757KB
  • 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
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete