Page 2 of 3 PrimeiroPrimeiro 123 ÚltimoÚltimo
Resultados 11 a 20 de 21
  1. #11
    Developer C++ 4i20's Avatar

    Data de Ingresso
    Jan 2016
    Posts
    257
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Mencionado
    53 Post(s)
    MEU HUMOR
    Relaxed
    Citação Originally Posted by Mentor Ver Post
    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^^
    Last edited by 4i20; 01/11/2018 at 08:49 AM.

  2. #12
    Fundador PerfectZone Mentor's Avatar


    Data de Ingresso
    Jun 2013
    Posts
    2,850
    Thanks Thanks Given 
    784
    Thanks Thanks Received 
    2,188
    Thanked in
    355 Posts
    Mencionado
    804 Post(s)
    MEU HUMOR
    Twisted
    País
    Brazil
    É verdade @[Somente membros podem ver os links. ], 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.
    Perfect Zone Brasil



    Inscreva-se no meu canal clicando [Somente membros podem ver os links. ]

  3. #13
    Membro ZoneX's Avatar
    Data de Ingresso
    May 2018
    Posts
    76
    Thanks Thanks Given 
    82
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    5 Post(s)
    País
    Brazil
    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.

  4. #14
    Membro Blad Fear's Avatar
    Data de Ingresso
    Mar 2016
    Posts
    46
    Thanks Thanks Given 
    33
    Thanks Thanks Received 
    40
    Thanked in
    3 Posts
    Mencionado
    9 Post(s)
    Será que alguém ´poderia me ajudar a instalar esta web ?

  5. #15
    Membro Marco_Aurélio's Avatar
    Data de Ingresso
    Sep 2014
    Posts
    344
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Mencionado
    44 Post(s)
    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

  6. #16
    Membro ZoneX's Avatar
    Data de Ingresso
    May 2018
    Posts
    76
    Thanks Thanks Given 
    82
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    5 Post(s)
    País
    Brazil
    Como eu disse, como o @[Somente membros podem ver os links. ] 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.
    Last edited by ZoneX; 03/11/2018 at 02:06 AM.

  7. #17
    Membro LoaD's Avatar
    Data de Ingresso
    Jul 2017
    Posts
    23
    Thanks Thanks Given 
    5
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    1 Post(s)
    MEU HUMOR
    Psychedelic
    País
    Brazil
    Alguem pode me ajudar com isso aqui?:
    Fatal error: Call to undefined method PDO::__set_state() in C:\inetpub\vhosts\loadingmus4.com\httpdocs\configs \database.php on line 5

  8. #18
    Fundador PerfectZone maniacoo's Avatar


    Data de Ingresso
    Mar 2016
    Posts
    461
    Thanks Thanks Given 
    12
    Thanks Thanks Received 
    697
    Thanked in
    29 Posts
    Mencionado
    65 Post(s)
    MEU HUMOR
    Cool
    Citação Originally Posted by LoaD Ver Post
    Alguem pode me ajudar com isso aqui?:
    Fatal error: Call to undefined method PDO::__set_state() in C:\inetpub\vhosts\loadingmus4.com\httpdocs\configs \database.php on line 5
    instalou via ODBC e nao funciona, tem que instalar via sqlsrv

  9. #19
    Membro amombarril's Avatar
    Data de Ingresso
    Oct 2018
    Posts
    10
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    0 Post(s)
    País
    Brazil
    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.
    Last edited by amombarril; 12/11/2018 at 07:37 PM.

  10. #20
    Membro Marco_Aurélio's Avatar
    Data de Ingresso
    Sep 2014
    Posts
    344
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Mencionado
    44 Post(s)
    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 httpdocs\Site\vendor\doctrine\dbal\lib\Doctrine\DB AL\Driver\PDOStatement.php(105): PDOStatement->execute(NULL)
    #1 httpdocs\Site\vendor\doctrine\dbal\lib\Doctrine\DB AL\Connection.php(847): Doctrine\DBAL\Driver\PDOStatement->execute()
    #2 httpdocs\Site\vendor\doctrine\dbal\lib\Doctrine\DB 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 httpdocs\Site\src\Database\Connection.php(15): call_user_func_array(Array, Array)
    #5 httpdocs\Site\src\Account\Account.php(321): Mo in httpdocs\Site\vendor\doctrine\dbal\lib\Doctrine\DB 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.

Page 2 of 3 PrimeiroPrimeiro 123 ÚltimoÚltimo

Permissões de Postagem

  • Você não pode iniciar novos tópicos
  • You may not post Resposta(s)
  • Você não pode enviar anexos
  • Você não pode editar suas mensagens
  •  
Sobre nós
Somos uma comunidade em atividade a 8 anos que aborda assuntos relacionados a games em geral, principalmente games MMORPG. e que busca sempre ajudar os membros através de conteúdos, tutoriais e suporte...
Nossos anunciantes
Hinetworks
VelozHost
InovHost
Rede Sociais