Navigazione

    Privacy - Termini e condizioni
    © 2020 Search On Media Group S.r.l.
    • Registrati
    • Accedi
    • CATEGORIES
    • Discussioni
    • Non letti
    • Recenti
    • Hashtags
    • Popolare
    • Utenti
    • Stream
    • Interest
    • Categories
    1. Home
    2. trattema
    3. Post
    T

    trattema

    @trattema

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 2
    • Post 7
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    Età 17
    0
    Reputazione
    7
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User Newbie

    Post creati da trattema

    • CMS e Database su hosting diversi.

      Discussione splittata da quì.

      Senti Magicale so di essere fuori tema ma ti pongo lo stesso il mio problema.
      Devo trasferire il dominio da un server ad un altro. Ma non posso interrompere gli accessi perchè devo essere continuamente online.

      Fatta questa premessa la domanda che pongo è se sia possibile avere jommla installato su un host e il database installato su un'altro host.

      Ho provato a cercare post che parlassero di questo ma non ci sono riuscito. Se ve ne sono ti sarei grato se me li segnali.

      Non voglio utilizzare la funzione reindirizzamento perchè penso che il trasferimento del dominio richiederà molto tempo dato un rapporto conflittuale in essere.

      postato in Coding
      T
      trattema
    • RE: Passaggio da MySQL: 4.00.24 a MySQL: 5

      Grazie ho risolto tutto come hai detto tu.
      Non so come ringraziarti ma ti ringrazio.
      Ciao

      postato in Coding
      T
      trattema
    • RE: Passaggio da MySQL: 4.00.24 a MySQL: 5

      oK GRANDE ADESSO HO UN'ALTRA TABELLA

      Errore

       **query SQL:**     
                -- --------------------------------------------------------
      

      --
      -- Struttura della tabella fok_components

      CREATE TABLE fok_components(id int( 11 ) NOT NULL AUTO_INCREMENT ,
      name varchar( 50 ) NOT NULL default '',
      link varchar( 255 ) NOT NULL default '',
      menuid int( 11 ) unsigned NOT NULL default '0',
      parent int( 11 ) unsigned NOT NULL default '0',
      admin_menu_link varchar( 255 ) NOT NULL default '',
      admin_menu_alt varchar( 255 ) NOT NULL default '',
      OPTION varchar( 50 ) NOT NULL default '',
      ordering int( 11 ) NOT NULL default '0',
      admin_menu_img varchar( 255 ) NOT NULL default '',
      iscore tinyint( 4 ) NOT NULL default '0',
      params text NOT NULL ,
      enabled tinyint( 4 ) NOT NULL default '1',
      PRIMARY KEY ( id ) ,
      KEY parent_option( parent, OPTION ( 32 ) )
      ) TYPE = MYISAM ;

        **Messaggio di MySQL: ** 
      

      #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'option varchar(50) NOT NULL default '',
      ordering int(11) NOT NULL default '0'' at line 12

      postato in Coding
      T
      trattema
    • RE: Passaggio da MySQL: 4.00.24 a MySQL: 5

      NON CAPISCO
      DI SEGUITO IL TESTO DELLA TABELLA DIMMI LA SOSTITUZIONE DA FARE QUAL'E'

      --
      -- Struttura della tabella fok_acajoom_stats_details

      CREATE TABLE fok_acajoom_stats_details (
      id int(11) NOT NULL auto_increment,
      mailing_id int(11) NOT NULL default '0',
      subscriber_id int(11) NOT NULL default '0',
      sentdate datetime NOT NULL default '1000-01-01 00:00:00',
      html tinyint(1) NOT NULL default '0',
      read tinyint(1) NOT NULL default '0',
      PRIMARY KEY (id),
      UNIQUE KEY sub_mail (mailing_id,subscriber_id)
      ) TYPE=MyISAM;

      GRAZIE

      postato in Coding
      T
      trattema
    • RE: Passaggio da MySQL: 4.00.24 a MySQL: 5

      **continua a darmi
      **

      Errore

       **query SQL:**     
                -- --------------------------------------------------------
      

      --
      -- Struttura della tabella fok_acajoom_stats_details

      CREATE TABLE fok_acajoom_stats_details(id int( 11 ) NOT NULL AUTO_INCREMENT ,
      mailing_id int( 11 ) NOT NULL default '0',
      subscriber_id int( 11 ) NOT NULL default '0',
      sentdate datetime NOT NULL default '1000-01-01 00:00:00',
      html tinyint( 1 ) NOT NULL default '0',
      READ tinyint( 1 ) NOT NULL default '0',
      PRIMARY KEY ( id ) ,
      UNIQUE KEY sub_mail( mailing_id, subscriber_id )
      ) TYPE = MYISAM ;

        **Messaggio di MySQL: ** 
      

      #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'read tinyint(1) NOT NULL default '0',
      PRIMARY KEY (id),
      UNIQUE KEY sub_ma' at line 10

      postato in Coding
      T
      trattema
    • RE: Passaggio da MySQL: 4.00.24 a MySQL: 5

      Scusami l'host vecchio mi mette a disposizione

      Versione MySQL: 4.00.24

      Versione PHP: 4.3.5

      phpMyAdmin MySQL-Dump

      version 2.2.6

      Quindi faccio l'esportazione struttura e dati e poi l'importo sul nuovo server che invece ha

      -- phpMyAdmin SQL Dump
      -- version 3.1.2
      -- Versione MySQL: 5.0.67
      -- Versione PHP: 5.2.8

      Alcune tabelle le importa senza problemi altre invece mi da il seguente errore

      Errore

       **query SQL:**     
                # --------------------------------------------------------
      

      Struttura della tabella fok_acajoom_stats_details

      CREATE TABLE fok_acajoom_stats_details(id int( 11 ) NOT NULL AUTO_INCREMENT ,
      mailing_id int( 11 ) NOT NULL default '0',
      subscriber_id int( 11 ) NOT NULL default '0',
      sentdate datetime NOT NULL default '0000-00-00 00:00:00',
      html tinyint( 1 ) NOT NULL default '0',
      READ tinyint( 1 ) NOT NULL default '0',
      PRIMARY KEY ( id ) ,
      UNIQUE KEY sub_mail( mailing_id, subscriber_id )
      ) TYPE = MYISAM ;

        **Messaggio di MySQL: ** 
      

      #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'read tinyint(1) NOT NULL default '0',
      PRIMARY KEY (id),
      UNIQUE KEY sub_ma' at line 7

      E non so francamente dove mettere le mani.

      postato in Coding
      T
      trattema
    • Passaggio da MySQL: 4.00.24 a MySQL: 5

      Salve ho installato tempo fa joomla su un database MySQL: 4.00.24 ed adesso devo passare a MySQL: 5.
      Mi potete indicare la strada migliore?
      Premetto che sono un principiante di MySQL

      postato in Coding
      T
      trattema