there is also no user panel
there is also no user panel
CentoS 7
if I was helpful you can give me a like
Brother ...
follow my post with step by step on how to enable the new extensions.
Enable too;
extension=php_odbc.dll
extension=php_pdo_odbc.dll
and activate short_tag
short_open_tag=On
i made minor corrections to the code and it's working fine.
look: https://www.youtube.com/watch?v=ZUsn7PtOTGU
ps: i'm using xampp: v3.2.4
create this procedure in account database:
and change register.php in: template\requestCode:/****** Object: StoredProcedure [dbo].[cabal_tool_registerAccount_web] Script Date: 05/07/2020 18:26:52 ******/ SET ANSI_NULLS OFF GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo].[cabal_tool_registerAccount_web] ( @id varchar(32), @password varchar(32), @email varchar(200), @chave varchar(10), @nome varchar(30), @CoDigo bigint) AS begin tran declare @userNum as int insert into cabal_auth_table( ID, Password, Email, Chave, Nome, activationCode, Ativado, Login, AuthType, IdentityNo) values @id, pwdencrypt(@password), @email, @chave, @nome, @CoDigo, 'sim', '0', 1, '7700000000000' ) set @userNum = @identity insert into cabal_charge_auth(usernum, type, expiredate, payminutes, ServiceKind) values @userNum, 0, DATEADD(day, 1000, getdate()), 0, 1) insert into WebiNext.dbo.cabal_Kit_iniciante(UserNum, ID, Enviado, Enviado2, Enviado3, Enviado4, Enviado5, Enviado6, Enviado1, DataCriacao, Kit) values @userNum, @id, '0', '0', '0', '0', '0', '0', '0', null, 'Nenhum') INSERT INTO [CabalCash].[dbo].[CashAccount] ([ID], [UserNum], [Cash], [CashBonus]) VALUES @id, @userNum, '0', '0') select @userNum as usernum commit GO
change this:
before:
$sql = 'exec Account.dbo.cabal_tool_registerAccount :login, :senha, :email, :chave, :nome, :codigo';
after:
$sql = 'exec Account.dbo.cabal_tool_registerAccount_web :login, :senha, :email, :chave, :nome, :codigo';
ps: line 94 more or less
use this database: https://mega.nz/file/U0MWGaKQ#bB-5ov...rnNR9tP065hZNk
"Account"
Last edited by yokohiro; 06-07-20 at 01:02 AM.
sorry for wrong file.
this correct file: https://mega.nz/file/U0MWGaKQ#bB-5ov...rnNR9tP065hZNk
https://ibb.co/BLCX4x4
https://ibb.co/n1PT14q
Sasuke I am worried that you will not manage to make this website fully working, it require at least basic skills in web development and seems you have no idea what are you actually doing.
No offense but have you ever tried to figure out something by your own?
Check these thread before ask!!!
https://forum.ragezone.com/f460/edit...-echs-1068489/ <- "How To" edit Cabalmain
https://forum.ragezone.com/f460/item...-bind-1068478/ <- "How To" edit items property
https://forum.ragezone.com/f460/edit...nster-1068508/