Conectar

View Full Version : |Suporte| Referente a Morpheus



ZoneX
31/10/2018, 03:05 PM
Alguém poderia me ajudar neste erro? Já foi rodado a query e nada de ser resolvido.
[Only registered and activated users can see links]
(se possível, me envie a query a ser rodada, ficarei muito grato).
Criando este tópico, pois o tópico sobre a postagem da Morpheus foi fechado.

MiaKhalifa
31/10/2018, 03:36 PM
olá amigo :) crie essas 2 colunas manualmente [Only registered and activated users can see links]

ZoneX
31/10/2018, 03:43 PM
olá amigo :) crie essas 2 colunas manualmente [Only registered and activated users can see links]
Persiste no erro.

MiaKhalifa
31/10/2018, 03:47 PM
Persiste no erro.
me mande pm com algum meio de contato + rapido

MinoX
31/10/2018, 07:11 PM
Aki deu isso

[Only registered and activated users can see links]

ZoneX
31/10/2018, 07:40 PM
Resolvido. Quem precisar de ajuda, chama no PM.

Mentor
31/10/2018, 07:53 PM
Posta como resolveu o erro pois fica mais fácil, ao invés de ter que enviar MP.

MiaKhalifa
31/10/2018, 07:58 PM
Aki deu isso

[Only registered and activated users can see links]

se vc usa hospedagem linux ative pdo_dblib(algo assim)

MinoX
31/10/2018, 11:33 PM
se vc usa hospedagem linux ative pdo_dblib(algo assim)

to testando no xampp

MiaKhalifa
31/10/2018, 11:42 PM
to testando no xampp
Tente usar odbc ou sqlerver qual quer coisa verifique no xampp se tem que habilitar os "driver"

4i20
01/11/2018, 07:46 AM
Posta como resolveu o erro pois fica mais fácil, ao invés de ter que enviar MP.
Tem uns caras complicado mesmo, corre pedir ajuda, mais quando resolve, nao completa seu post postando como rersolveu..^^
Mais como ele nao fez isso, ja vo resolver o problema, esse erro que ele posto aqui acontece quando vc tenta criar as colunas mais de uma vez no mesmo banco.
Como corrigir: basta excluir os campos que o site cria na tabela memb_info, quando vc mandar instalar ele nao vai dar o erro novamente. Resolvido^^

Mentor
01/11/2018, 08:48 AM
É verdade 4i20, já vi várias vezes isso, de pessoa correr para o fórum pedindo ajuda e quando consegue resolver o problema não compartilha com a comunidade.

ZoneX
01/11/2018, 12:23 PM
Em momento algum eu deixei de prestar suporte aqui, eu estou com problemas em meu teclado. Mas eu deixei claro que iria dar suporte via MP, na qual eu iria passar meu skype ou Facebook. Enfim, assim que eu pegar meu teclado novo hoje, eu deixo aqui a solução. Não é falta de simpatia, e sim questão de não poder por agora. Contudo, assim que eu pegar meu teclado mais tarde, posto aqui a solução, caso alguém queira suporte mais rápido é só chamar por MP.

Blad Fear
01/11/2018, 06:04 PM
Será que alguém ´poderia me ajudar a instalar esta web ?

Marco_Aurélio
02/11/2018, 11:38 PM
Para quem estiver com o mesmo erro, basta ir na tabela Memb_Info e deletar as duas colunas, e rodar a instalação novamente, ele da o erro pq elas ja existem

ZoneX
03/11/2018, 01:02 AM
​Como eu disse, como o MiaKhalifa me auxiliou, eu teria que auxiliar os demais. Para resolver o problema é simples, caso você esteja utilizando a hospedagem Linux, você deve ativar todas extensões pdo, e quando for instalar, selecione a opção obdclib(algo assim, não posso verificar, minha hospedagem está com problemas.) selecione e informe seus dados. Se persistir no erro, você terá que configurar manualmente, para isso, acesse public_html/install/configs e edite os seguintes arquivos;

app.php, deixe da seguinte maneira;

<?phpreturn array(
'timezone' => 'America/Sao_Paulo',
'base_path' => 'install',
'template' => 'default',
'url_rewrite' => false,
'debug' => false,
);

database.php;

<?php
return array(
'conn' => array(
'default' => array(
'host' => 'SEUIP',
'user' => 'sa',
'password' => 'suasenhadosql',
'dbname' => 'MuOnline',
'port' => 'port',
'driver_class' => 'Lsw\\DoctrinePdoDblib\\Doctrine\\DBAL\\Driver\\PD ODblib\\Driver',
),
'forum' => array(
'active' => false,
'host' => 'localhost',
'user' => 'root',
'password' => '',
'dbname' => 'phpbb',
'table_prefix' => 'phpbb_',
'driver' => 'pdo_mysql',
),
),
'columns' => array(
'credit' => 'credits',
'token' => 'memb_token',
'avatar' => 'Avatar',
'resets' => 'ResetCount',
'master_resets' => 'MasterResetCount',
'pk' => 'PkCount',
'hero' => 'HeroCountWeb',
),
'use_vi_curr_info' => false,
'use_md5' => false,
'generate_guid' => false,
);

Logo após isso, é bem certo que o problema será resolvido, caso não, rode as querys abaixo;



IF OBJECT_ID('dbo.mw_banned_accounts', 'U') IS NOT NULL DROP TABLE dbo.mw_banned_accounts;
create table mw_banned_accounts (
id integer identity(1, 1) primary key not null,
account varchar(10) not null,
cause nvarchar(MAX) collate Latin1_General_CI_AS null,
block_date datetime default getdate() not null,
unblock_date datetime null,
user_block_id integer null,
status integer default 1 not null
);


IF OBJECT_ID('dbo.mw_config', 'U') IS NOT NULL DROP TABLE dbo.mw_config;
create table mw_config (
id integer identity(1, 1) primary key not null,
config varchar(400) not null,
body nvarchar(MAX) collate Latin1_General_CI_AS null,
type varchar(10) null
);


IF OBJECT_ID('dbo.mw_services', 'U') IS NOT NULL DROP TABLE dbo.mw_services;
create table mw_services (
id integer identity(1, 1) primary key not null,
name nvarchar(250) collate Latin1_General_CI_AS not null,
service varchar(250) not null,
active integer not null,
sequence integer not null,
url varchar(250) null,
config_url varchar(250) null,
parent_id integer null,
allowed integer not null,
rates text null
);


IF OBJECT_ID('dbo.mw_viptype_services', 'U') IS NOT NULL DROP TABLE dbo.mw_viptype_services;
create table mw_viptype_services (
id integer identity(1, 1) primary key not null,
viptype varchar(2) not null,
service_id integer not null
);


IF OBJECT_ID('dbo.mw_users', 'U') IS NOT NULL DROP TABLE dbo.mw_users;
create table mw_users (
id integer identity(1, 1) primary key not null,
name nvarchar(100) collate Latin1_General_CI_AS not null,
email varchar(200) null,
username varchar(40) not null,
password varchar(60) not null,
super_user integer default 0 not null,
group_id integer not null
);


IF OBJECT_ID('dbo.mw_user_groups', 'U') IS NOT NULL DROP TABLE dbo.mw_user_groups;
create table mw_user_groups (
id integer identity(1, 1) primary key not null,
name nvarchar(100) collate Latin1_General_CI_AS not null,
access text null
);


IF OBJECT_ID('dbo.mw_records', 'U') IS NOT NULL DROP TABLE dbo.mw_records;
create table mw_records (
id integer identity(1, 1) primary key not null,
type varchar(100) not null,
record integer not null default 0,
record_date datetime default getdate() not null,
);


IF OBJECT_ID('dbo.mw_jobs', 'U') IS NOT NULL DROP TABLE dbo.mw_jobs;
create table mw_jobs (
id integer identity(1, 1) primary key not null,
name nvarchar(100) collate Latin1_General_CI_AS not null,
minutes varchar(50) not null default '*',
hours varchar(50) not null default '*',
days varchar(50) not null default '*',
weeks varchar(50) not null default '*',
months varchar(50) not null default '*',
last_execution datetime null,
script_file varchar(200) null,
script text null,
result text null,
active integer not null default 0
);




IF OBJECT_ID('dbo.mw_news', 'U') IS NOT NULL DROP TABLE dbo.mw_news;
create table mw_news (
id integer identity(1, 1) primary key not null,
title nvarchar(400) collate Latin1_General_CI_AS not null,
slug varchar(400) not null,
body nvarchar(MAX) collate Latin1_General_CI_AS not null,
link varchar(400) collate Latin1_General_CI_AS null,
create_date datetime default getdate() not null,
type varchar(100) not null,
views integer default 0 not null,
user_id integer null,
image_cover varchar(250) null,
allow_comments integer default 0 not null
);


IF OBJECT_ID('dbo.mw_news_comments', 'U') IS NOT NULL DROP TABLE dbo.mw_news_comments;
create table mw_news_comments (
id integer identity(1, 1) primary key not null,
comment nvarchar(max) not null,
author varchar(100) not null,
admin integer default 0 not null,
ip varchar(40) not null,
create_date datetime default getdate() not null,
news_id integer not null
);


IF OBJECT_ID('dbo.mw_helpdesk_tickets', 'U') IS NOT NULL DROP TABLE dbo.mw_helpdesk_tickets;
create table mw_helpdesk_tickets (
id integer identity(1, 1) primary key not null,
department nvarchar(200) collate Latin1_General_CI_AS not null,
subject nvarchar(300) collate Latin1_General_CI_AS not null,
message nvarchar(MAX) collate Latin1_General_CI_AS not null,
create_date datetime default getdate() not null,
update_date datetime null,
status integer default 1 not null,
account varchar(10) not null,
images varchar(700) null
);


IF OBJECT_ID('dbo.mw_helpdesk_ticket_messages', 'U') IS NOT NULL DROP TABLE dbo.mw_helpdesk_ticket_messages;
create table mw_helpdesk_ticket_messages (
id integer identity(1, 1) primary key not null,
message nvarchar(MAX) collate Latin1_General_CI_AS not null,
admin integer default 0 not null,
account varchar(100) not null,
create_date datetime default getdate() not null,
ticket_id integer not null,
images varchar(700) null
);


IF OBJECT_ID('dbo.mw_packages', 'U') IS NOT NULL DROP TABLE dbo.mw_packages;
create table mw_packages (
id integer identity(1, 1) primary key not null,
package nvarchar(200) collate Latin1_General_CI_AS not null,
description nvarchar(MAX) null,
price numeric(10,2) not null,
viptype integer null,
vipdays integer null,
coins text null,
active integer not null,
sequence integer not null,
image varchar(200) null
);


IF OBJECT_ID('dbo.mw_logs', 'U') IS NOT NULL DROP TABLE dbo.mw_logs;
create table mw_logs (
id integer identity(1, 1) primary key not null,
create_date datetime default getdate() not null,
log text not null,
account varchar(10) not null,
type varchar(50) null,
table_name varchar(30) null,
primary_key varchar(20) null,
metadata text null
);


IF OBJECT_ID('dbo.mw_shops', 'U') IS NOT NULL DROP TABLE dbo.mw_shops;
create table mw_shops (
id integer identity(1, 1) primary key not null,
name nvarchar(100) collate Latin1_General_CI_AS not null,
slug varchar(400) not null,
description nvarchar(max) collate Latin1_General_CI_AS not null,
coin varchar(20) not null,
sequence integer not null,
active integer not null,
max_level integer not null default 13,
max_option integer not null default 16,
unique_sockets integer not null default 0,
default_price_level integer null,
default_price_option integer null,
default_price_skill integer null,
default_price_luck integer null,
default_price_ancient integer null,
default_price_harmony integer null,
default_price_refine integer null,
default_price_socket integer null,
default_price_excellent integer null,
default_max_excellent integer null,
default_max_sockets integer null,
image varchar(100) null,
);


IF OBJECT_ID('dbo.mw_shop_categories', 'U') IS NOT NULL DROP TABLE dbo.mw_shop_categories;
create table mw_shop_categories (
id integer identity(1, 1) primary key not null,
name nvarchar(100) collate Latin1_General_CI_AS not null,
type varchar(100) null,
slug varchar(400) not null,
sequence integer not null,
active integer not null,
parent_id integer null,
shop_id integer not null
);


IF OBJECT_ID('dbo.mw_shop_items', 'U') IS NOT NULL DROP TABLE dbo.mw_shop_items;
create table mw_shop_items (
id integer identity(1, 1) primary key not null,
name nvarchar(100) collate Latin1_General_CI_AS not null,
section integer not null,
index_ integer not null,
durability integer not null default 255,
x_size integer not null default 1,
y_size integer not null default 1,
ancient varchar(5) null,
skill integer not null default 0,
refine integer not null default 0,
sockets integer not null default 0,
harmony integer not null default 0,
slug varchar(400) not null,
active integer not null,
price integer not null default 0,
price_level integer not null default 0,
price_option integer not null default 0,
price_skill integer not null default 0,
price_luck integer not null default 0,
price_ancient integer not null default 0,
price_harmony integer not null default 0,
price_refine integer not null default 0,
price_socket integer not null default 0,
price_excellent integer not null default 0,
max_excellent integer not null default 6,
max_sockets integer not null default 5,
image varchar(100) null,
classes varchar(100) null,
solds integer not null default 0,
offer integer not null default 0,
fix_level integer not null default -1,
fix_option integer not null default -1,
luck integer not null default 1,
category_id integer null
);


IF OBJECT_ID('dbo.mw_shop_coupons', 'U') IS NOT NULL DROP TABLE dbo.mw_shop_coupons;
create table mw_shop_coupons (
id integer identity(1, 1) primary key not null,
coupon varchar(100) not null,
start_date date null,
expire_date date null,
active integer not null,
discount numeric(10,2) not null,
create_date datetime default getdate() not null
);


IF OBJECT_ID('dbo.mw_orders', 'U') IS NOT NULL DROP TABLE dbo.mw_orders;
create table mw_orders (
id integer identity(1, 1) primary key not null,
username varchar(10) not null,
gateway varchar(100) not null,
code varchar(400) null,
value numeric(10,2) not null,
status integer not null,
currency varchar(10) null,
create_date datetime default getdate() not null,
transaction_id varchar(100) null
);


IF OBJECT_ID('dbo.mw_polls', 'U') IS NOT NULL DROP TABLE dbo.mw_polls;
create table mw_polls (
id integer identity(1, 1) primary key not null,
title varchar(200) not null,
start_date date default getdate() not null,
end_date date null,
active integer default 0 not null,
allow_multiple integer default 0 not null,
only_logged_in integer default 0 not null,
allow_ips integer default 0 not null
);


IF OBJECT_ID('dbo.mw_polls_answers', 'U') IS NOT NULL DROP TABLE dbo.mw_polls_answers;
create table mw_polls_answers (
id integer identity(1, 1) primary key not null,
answer varchar(200) not null,
poll_id integer not null,
sequence integer null,
total integer default 0 not null
);


IF OBJECT_ID('dbo.mw_polls_answers_persons', 'U') IS NOT NULL DROP TABLE dbo.mw_polls_answers_persons;
create table mw_polls_answers_persons (
id integer identity(1, 1) primary key not null,
answer_id integer not null,
ip varchar(40) not null,
account varchar(10) null
);


IF OBJECT_ID('dbo.mw_market_items', 'U') IS NOT NULL DROP TABLE dbo.mw_market_items;
create table mw_market_items (
id integer identity(1, 1) primary key not null,
hex varchar(64) not null,
payment_type varchar(10) not null,
coin varchar(100) null,
price varchar(10) not null,
account varchar(10) not null,
selling_start_date date not null,
bought_by varchar(10) null,
bought_date date null,
item_name varchar(100) not null,
item_section integer not null,
item_level integer not null,
item_option integer not null
);


IF OBJECT_ID('dbo.mw_auth_tokens', 'U') IS NOT NULL DROP TABLE dbo.mw_auth_tokens;
create table mw_auth_tokens (
id integer identity(1, 1) primary key not null,
token varchar(40) not null,
account varchar(10) not null,
expires bigint not null
);


IF OBJECT_ID('dbo.mw_indication_goals', 'U') IS NOT NULL DROP TABLE dbo.mw_indication_goals;
create table mw_indication_goals (
id integer identity(1, 1) primary key not null,
goal varchar(200) not null,
coin varchar(20) not null,
amount text not null
);


IF OBJECT_ID('dbo.mw_indication_rewards', 'U') IS NOT NULL DROP TABLE dbo.mw_indication_rewards;
create table mw_indication_rewards (
id integer identity(1, 1) primary key not null,
account varchar(10) not null,
indication varchar(10) not null,
indication_goal_id integer not null,
rewarded integer not null default 0,
amount integer not null default 0
);

É isso, espero que todos consiga instalar de maneira correta.

LoaD
04/11/2018, 03:06 AM
Alguem pode me ajudar com isso aqui?:
Fatal error: Call to undefined method PDO::__set_state() in C:\inetpub\vhosts\loadingmus4.com\[Only registered and activated users can see links] \database.php on line 5

maniacoo
04/11/2018, 07:35 AM
Alguem pode me ajudar com isso aqui?:
Fatal error: Call to undefined method PDO::__set_state() in C:\inetpub\vhosts\loadingmus4.com\[Only registered and activated users can see links] \database.php on line 5
instalou via ODBC e nao funciona, tem que instalar via sqlsrv

amombarril
12/11/2018, 06:16 PM
Olá, aqui deu esse erro

Error!

could not find driver line: 47

Hospedagem Linux

19 minutes:------- Atualizado -------

obrigado! Fiz tudo certinho como consta nesses tópicos, desde já agradeço.

Marco_Aurélio
27/11/2018, 04:54 PM
Ingles:
Could you give me a hand, I'm trying to use this web because it's decrypt, and I'm having difficulty.
I make the installation of it normal all right but at the time of opening the page it presents the following error
So I'm using the SXII Koreana database, and for example the Wharehouse table is called T_WareHouseInfo.

Portugues
Poderia me dar uma ajuda, estou tentando usar essa web por ela esta decrypt, e estou tendo dificuldade.
Faço a instalação dela normal tudo certo porém na hora de abrir a pagina apresenta o seguinte erro
Então estou usando o banco de dados a SXII Koreana, e por exemplo a tabela Wharehouse se chama T_WareHouseInfo.

Code:

Invalid object name 'warehouse'.'

Stack trace: #0 [Only registered and activated users can see links] AL\Driver\PDOStatement.php(105): PDOStatement->execute(NULL)
#1 [Only registered and activated users can see links] AL\Connection.php(847): Doctrine\DBAL\Driver\PDOStatement->execute()
#2 [Only registered and activated users can see links] AL\Connection.php(510): Doctrine\DBAL\Connection->executeQuery('select mi.memb_...', Array, Array)
#3 [internal function]: Doctrine\DBAL\Connection->fetchAssoc('select mi.memb_...', Array)
#4 [Only registered and activated users can see links](15): call_user_func_array(Array, Array)
#5 [Only registered and activated users can see links](321): Mo in [Only registered and activated users can see links] AL\DBALException.php on line 131

Ingles
Do you know in which file I can change the name of the table in question?
another one when I try to access admincp displays this message

Portugues
Sabe em qual arquivo consigo alterar o nome da tabela em questão?
outra quando tento acessar o admincp apresenta essa mensagem
Error

Controller Site not found.

MuSoul
19/01/2019, 03:35 PM
estou tendo problema no cadastro alguem pra dar um help ?
EDIT: QUEM ESTIVER COM O MESMO PROBLEMA BASTA IR AO SITE DO LOUIS E BAIXAR A DB ATUALIZADA DO UPD14 REFERENTE A VERSÃO DO SEU SERVIDOR

[Only registered and activated users can see links]

SQLSTATE[HY000]: General error: 20018 DEFAULT or NULL are not allowed as explicit identity values. [20018] (severity 16) [(null)]