Lo estoy instalando en xampp/localhost y ya he usado el repir settings. Ademas de modificar el settings.php.
Utilizo smf 2.0.4
Pongo los pasos dados:
1- Exporto mi base de datos de mi pagina web
2-Creo una base de datos nueva en mysql de mi pc utf-8 general_ci
3-Importo la base de datos en .zip
Y una vez que lo subo me tira este error:
#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 '?' at line 1
Miro la base de datos en la linea uno y no veo nada raro:
Código PHP:
-- phpMyAdmin SQL Dump
-- version 2.11.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 10, 2013 at 07:38 AM
-- Server version: 5.1.57
-- PHP Version: 5.2.17
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `a3145604_1`
--
-- --------------------------------------------------------
--
-- Table structure for table `smf_admin_info_files`
--
CREATE TABLE `smf_admin_info_files` (
`id_file` tinyint(4) unsigned NOT NULL AUTO_INCREMENT,
`filename` varchar(255) NOT NULL DEFAULT '',
`path` varchar(255) NOT NULL DEFAULT '',
`parameters` varchar(255) NOT NULL DEFAULT '',
`data` text NOT NULL,
`filetype` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id_file`),
KEY `filename` (`filename`(30))
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;