| Author |
Message |
apocalypse

Joined: Feb 02, 2008
Posts: 1
|
Posted:
Sat Feb 02, 2008 8:37 pm |
|
I'm having problems getting Nuke Live Chat to work on my website. From the Admin Panel, when I click on the chat icon, it comes back and says that there is a DB Error. I have removed and replaced everything and still have the same problems. Any suggestions?? Thanks in advance |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Sun Feb 03, 2008 1:10 pm |
|
Did you install the tables with the sql file? Have you checked to make sure the tables are actually there(using phpmyadmin)? If the tables are in place you can find out what the problem is by changing:
| php: |
if (!($result = $db->sql_query($sql)))
{
die('DB ERROR');
}
|
to
| php: |
if (!($result = $db->sql_query($sql)))
{
echo $sql.'<br />'.mysql_error().'<br />';
die('DB ERROR');
}
|
|
| |
|
|
 |
sidd1066

Joined: Jun 20, 2008
Posts: 4
|
Posted:
Mon Jun 23, 2008 10:38 am |
|
i am getting the same thing
can u explain more how to check it
my phpnuke site is working fine, i installed tables at the time of installation do i have to add some more for chat?
i have phpmyadmin and using php 5.2.5 |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Mon Jun 23, 2008 1:48 pm |
|
Yes, you have to install tables for the chat. It is included in the package as a .sql file that you will import using phpmyadmin. |
| |
|
|
 |
sidd1066

Joined: Jun 20, 2008
Posts: 4
|
Posted:
Mon Jun 23, 2008 11:27 pm |
|
thanks gotcha its working but now i am having some problem with border
its not related to this topic so i am posting as a new one |
| |
|
|
 |
|
|