Auktionshaus system error - LUA ERROR !

08/30/2013 20:07 WyppyOne#1
Hi , i tried to install that system ...
[Only registered and activated users can see links. Click Here To Register...]

When i click on 20092 appear that box but when i click that box nothing hapenned ... and if i "give" to 20092 a item the same ... nothing happened ...

Sysser :

PHP Code:
SYSERRAug 30 21:00:01 :: RunStateLUA_ERRORlocale/singapore/quest/questlib.lua:2675attempt to index a nil value
SYSERR
Aug 30 21:00:01 :: WriteRunningStateToSyserrLUA_ERRORquest auktions_haus.start click
SYSERR
Aug 30 21:00:04 :: RunStateLUA_ERRORlocale/singapore/quest/questlib.lua:2675attempt to index a nil value
SYSERR
Aug 30 21:00:04 :: WriteRunningStateToSyserrLUA_ERRORquest auktions_haus.start click 
2675 is the line :

PHP Code:
    for av in io.open(fi,'r'):lines() do table.insert(t,split(av,'\t')) endos.remove(fi); 
from :

PHP Code:
mysql_query = function(query)
    if 
not pre then
        local rt 
io.open('CONFIG','r'):read('*all')
        
pre,_string.gsub(rt,'.+PLAYER_SQL:%s(%S+)%s(%S+)%s(%S+)%s(%S+).+','-h%1 -u%2 -p%3 -D%4')
    
end
    math
.randomseed(os.time())
    
local fi,t,out 'mysql_data_'..math.random(10^9)+math.random(2^4,2^10),{},{}
    
os.execute('mysql '..pre..' --e='..string.format('%q',query)..' > '..fi) -- für MySQL51
    
-- os.execute('mysql '..pre..' -e'..string.format('%q',query)..' > '..fi) -- für MySQL55
    
for av in io.open(fi,'r'):lines() do table.insert(t,split(av,'\t')) endos.remove(fi);
    for 
2table.getn(t) do table.foreach(t[i],function(a,b)
        
out[i-1]               = out[i-1] or {}
        
out[i-1][a]            = tonumber(b) or or 'NULL'
        
out[t[1][a]]           = out[t[1][a]] or {}
        
out[t[1][a]][i-1]      = tonumber(b) or or 'NULL'
    
endend
    
return out
end 
08/30/2013 20:16 Nick#2
Which MySQL - edition / version do you use? (actually)
__

Greeting.
08/30/2013 20:57 WyppyOne#3
Quote:
Originally Posted by .JαyZoN View Post
Which MySQL - edition / version do you use? (actually)
__

Greeting.
how can i check my mysql version ?
08/30/2013 21:08 Nick#4
Quote:
Originally Posted by WyppyOne View Post
how can i check my mysql version ?
You can check your mysql version with the following command;

Code:
mysql -V
After this you will get this output; (example)

Code:
Ver 14.14 Distrib 5.5.33, for FreeBSD8.4 (i386) using  5.2
So;

Code:
Distrib 5.5.33
..is the mysql version here.

----
or;
----

Code:
mysql -v
Output;

Code:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 68
Server version: 5.5.33 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Reading history-file /root/.mysql_history
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
So;

Code:
Server version: 5.5.33
_

I think, "mysql -V" will be more helpful.
__

Greeting.
08/30/2013 21:14 WyppyOne#5
5.0.92