Good'm following this error.
1
LUA ERROR: sys/lua/admin/os.lua:56: attempt to perform arithmetic on field 'cpath' (a string value)
I use CentOS 6 server as more'm unable to run the script because of this problem.
Scripts
Starkkz's Admin Script 0.1.5 error
Starkkz's Admin Script 0.1.5 error
1

LUA ERROR: sys/lua/admin/os.lua:56: attempt to perform arithmetic on field 'cpath' (a string value)
if string.find(os.name(), "linux") then 	app_start = os.clock() 	package.cpath = package.cpath + ";/usr/lib/lua/5.1/?.so" -- here 	package.path = package.path + ";/usr/lib/lua/5.1/?.lua" -- and here end
VADemon: package.cpath = package.cpath + ";/usr/lib/lua/5.1/?.so" package.path = package.path + ";/usr/lib/lua/5.1/?.lua"
VADemon already pointed this out.package.cpath = package.cpath .. ";/usr/lib/lua/5.1/?.so" package.path = package.path .. ";/usr/lib/lua/5.1/?.lua"
GeoB99:
1
