Evo san konačno dobijo aktivnu domenu pa sam na njoj instalira joomlu te sam pribacio lokalno izradjeni sadržaj..sve ok osim update nove baze s sadržajem stare...
Evo koju mi error poruku izbaci :
SQL query:
-- phpMyAdmin SQL Dump
-- version 2.6.0-rc3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 19, 2006 at 04:34 PM
-- Server version: 4.1.14
-- PHP Version: 4.4.0
--
-- Database: `rade`
--
-- --------------------------------------------------------
--
-- Table structure for table `jos_banner`
--
CREATE TABLE `jos_banner` (
`bid` int( 11 ) NOT NULL AUTO_INCREMENT ,
`cid` int( 11 ) NOT NULL default '0',
`type` varchar( 10 ) NOT NULL default 'banner',
`name` varchar( 50 ) NOT NULL default '',
`imptotal` int( 11 ) NOT NULL default '0',
`impmade` int( 11 ) NOT NULL default '0',
`clicks` int( 11 ) NOT NULL default '0',
`imageurl` varchar( 100 ) NOT NULL default '',
`clickurl` varchar( 200 ) NOT NULL default '',
`date` datetime default NULL ,
`showBanner` tinyint( 1 ) NOT NULL default '0',
`checked_out` tinyint( 1 ) NOT NULL default '0',
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
`editor` varchar( 50 ) default NULL ,
`custombannercode` text,
PRIMARY KEY ( `bid` ) ,
KEY `viewbanner` ( `showBanner` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =3;
MySQL said: Documentation
#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 'DEFAULT CHARSET=latin1 AUTO_INCREMENT=3' at line 19
administrator
19-06-2006, 22:32
izbacite iz SQLa ovo
ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =3
Vaš problem je u tome što pokušavate instalirati SQL cod koji je pisan u 4.1.x verziji ili većoj a mi imamo 4.0.27.
Savjet je da instalirate Joomlu kroz cpanel > Fantastico
pozdrav, SC
Nope..
Pokuša san predloženo ali ne radi sada mi izbaci neke hjeroglife i ništa ne razumin....
ovo je log errora :
Error
There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:
----BEGIN CUT----
eNqdkM9ymzAQxu96ij3kiGSBibHVE7Gp4w4YCjTN5BILo9R0+F ch4vjZcugj9RUqMfV0eq1mpNH8
dvf7djdI0zhlsLZh7UAY7BnY4MB84aEs1/wdofVDxuBmVzIYftQ9l4OQpK4K0p966xUc4nrgULqY
UXtme2B7jDpsTuF4KTr1rBoI3nq4QdEl+xwycAkljocHxduSyx LX3Tf0JUshzizwt8E+t+Ah0L5f
qxai+GkXhj7cEoqSyGfaa2nKUXKfmCwrzoygS3TjVTu+odDfbx mIFldDh5fL2xW20eT66/0nxqAb
ji5+2WhpTWEzNj3S+FXIoeparb4gFMvj3MCTUj2bzc7ns5mzuX BTRlqhTNDc+25QDOruyOuT/hq0
Fa2QXBmtvGoEg09jC/bKmtYDXAF12XwFSWSSMyG18dXczGET2zWRabq/WG/s6rnhihd80MoHyUtx
mLh58H8edFXOeVELGJQcj2qUAl46CWpih+/d8FzwVo/2x2+Txgnk/l0YwO4jBI+7LM/+SfvwGwMp
oq4=
----END CUT----
----BEGIN RAW----
ERROR: C1 C2 LEN: 1 2 367
STR: »
CVS: $Id: sqlparser.lib.php,v 2.47 2006/01/17 17:02:30 cybot_tm Exp $
MySQL: 4.0.27-standard-log
USR OS, AGENT, VER: Win MOZILLA 5.0
PMA: 2.8.0.2
PHP VER,OS: 4.4.2 Linux
LANG: en-iso-8859-1
SQL: -- phpMyAdmin SQL Dump
-- version 2.6.0-rc3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 19, 2006 at 04:39 PM
-- Server version: 4.1.14
-- PHP Version: 4.4.0
--
-- Database: `rade`
--
-- --------------------------------------------------------
--
-- Table structure for table `jos_banner`
--
DROP TABLE IF EXISTS `jos_banner`;
----END RAW----
SQL query:
-- phpMyAdmin SQL Dump -- version 2.6.0-rc3 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jun 19, 2006 at 04:39 PM -- Server version: 4.1.14 -- PHP Version: 4.4.0 -- -- Database: `rade` -- -- -------------------------------------------------------- -- -- Table structure for table `jos_banner` -- DROP TABLE IF EXISTS `jos_banner`;
MySQL said: Documentation
#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 '
DROP TABLE IF EXISTS `jos_banner`' at line 1
A ovo je u mojoj bazi :
-- --------------------------------------------------------
--
-- Table structure for table `jos_banner`
--
DROP TABLE IF EXISTS `jos_banner`;
CREATE TABLE IF NOT EXISTS `jos_banner` (
`bid` int(11) NOT NULL auto_increment,
`cid` int(11) NOT NULL default '0',
`type` varchar(10) NOT NULL default 'banner',
`name` varchar(50) NOT NULL default '',
`imptotal` int(11) NOT NULL default '0',
`impmade` int(11) NOT NULL default '0',
`clicks` int(11) NOT NULL default '0',
`imageurl` varchar(100) NOT NULL default '',
`clickurl` varchar(200) NOT NULL default '',
`date` datetime default NULL,
`showBanner` tinyint(1) NOT NULL default '0',
`checked_out` tinyint(1) NOT NULL default '0',
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
`editor` varchar(50) default NULL,
`custombannercode` text,
PRIMARY KEY (`bid`),
KEY `viewbanner` (`showBanner`)
) ;
--
-- Dumping data for table `jos_banner`
--
INSERT INTO `jos_banner` (`bid`, `cid`, `type`, `name`, `imptotal`, `impmade`, `clicks`, `imageurl`, `clickurl`, `date`, `showBanner`, `checked_out`, `checked_out_time`, `editor`, `custombannercode`) VALUES (1, 1, 'banner', 'OSM 1', 0, 66, 0, 'osmbanner1.png', 'http://www.opensourcematters.org', '2004-07-07 15:31:29', 1, 0, '2000-00-00 00:00:00', NULL, NULL),
(2, 1, 'banner', 'OSM 2', 0, 75, 0, 'osmbanner2.png', 'http://www.opensourcematters.org', '2004-07-07 15:31:29', 1, 0, '2000-00-00 00:00:00', NULL, NULL);
-- --------------------------------------------------------
Sve mi se čini da ču ja to morat nanovo sve napravit !!! ajme
administrator
21-06-2006, 06:11
vrlo jednostavno:
napravite export SQL sa postojćeg hosta na verziju 4.0 compatibile i sve 5+
pozdrav, SC
Istina vrlo jednostavno !!!
Samo šta ja neznam gdje se nalaze te opcije u export-u za kompaktibilitet sa starijim verzijama !!!:confused:
Ali nema veze odusta san od toga radin sve nanovo nije nešto strašno..jedino me to zanimalo za u buduče !!!:o
Hvala!!:)
administrator
22-06-2006, 00:31
trebalo bi biti u phpMyAdmin sučelju.
pozdrav, SC
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.