ciao a tutti ho attivato nel mio sito aspetto registrazione predefinito, ma una volta attivato mi da un errore 403 accesso negato
non capisco perchè non mi funziona
cucumiao
@cucumiao
Post creati da cucumiao
-
aspetto registrazione predefinito errore 403 accesso negato
-
You have an error in your SQL syntax
ciao a tutti durante l'installazione, dopo l'inserimento dei parametri per il database mi esce una schermata con il seguente errore. > 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 'TYPE=MyISAM CHARACTER SET
utf8
' at line 29 SQL=CREATE TABLEjos_banner
(bid
int(11) NOT NULL auto_increment,cid
int(11) NOT NULL default '0',type
varchar(30) NOT NULL default 'banner',name
varchar(255) NOT NULL default '',alias
varchar(255) 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,catid
INTEGER UNSIGNED NOT NULL DEFAULT 0,description
TEXT NOT NULL DEFAULT '',sticky
TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,ordering
INTEGER NOT NULL DEFAULT 0,publish_up
datetime NOT NULL default '0000-00-00 00:00:00',publish_down
datetime NOT NULL default '0000-00-00 00:00:00',tags
TEXT NOT NULL DEFAULT '',params
TEXT NOT NULL DEFAULT '', PRIMARY KEY (bid
), KEYviewbanner
(showBanner
), INDEXidx_banner_catid
(catid
) ) TYPE=MyISAM CHARACTER SETutf8
ho fatto una ricerca su internet ho visto che altri hanno riscontrato il mio problema ma non ho trovato la soluzione per risolvere il problema..
Qualcuno sa come fare?
Grazie in anticipo:) -
orologio modiale con ora del pc
ciao a tutti non sono molto eperto di java, avrei necessita di avere un orologio con l'ora di varie città,ma che prenda l'ora dal pc e non dal web, ne ho trovato uno, però mi da solo un ora, mi servirebbe che mi visualizzasse più orari, per esempio tokio new york etc.
Questo è il codice dell'orologio che ho trovato
[html] <HEAD> <TITLE>HTML Clock</TITLE> <META NAME="FILENAME" CONTENT="clock_JS.HTM"> </HEAD> <BODY TOPMARGIN=20 LEFTMARGIN=40 BGCOLOR="#FFFFFF" LINK="#FFFFFF" VLINK="#666666" TEXT="#FFFFFF"> <!--TOOLBAR_START--> <!--TOOLBAR_EXEMPT--> <!--TOOLBAR_END--> <H2><FONT FACE="verdana,arial,helvetica" SIZE=1> </FONT> </H2> <P> <P> <DIV id=Clock align=center style="font-family: Verdana; font-size: 40; color:#6699CC"> </DIV> <SCRIPT LANGUAGE="JavaScript"> function tick() { var hours, minutes, seconds, ap; var intHours, intMinutes, intSeconds; var today; today = new Date(); intHours = today.getHours(); intMinutes = today.getMinutes(); intSeconds = today.getSeconds(); if (intHours == 0) { hours = "12:"; ap = "Midnight"; } else if (intHours < 12) { hours = intHours+":"; ap = "A.M."; } else if (intHours == 12) { hours = "12:"; ap = "Noon"; } else { intHours = intHours - 12 hours = intHours + ":"; ap = "P.M."; } if (intMinutes < 10) { minutes = "0"+intMinutes+":"; } else { minutes = intMinutes+":"; } if (intSeconds < 10) { seconds = "0"+intSeconds+" "; } else { seconds = intSeconds+" "; } timeString = hours+minutes+seconds+ap; Clock.innerHTML = timeString; window.setTimeout("tick();", 100); } window.onload = tick; </SCRIPT> </BODY> [/html]Grazie in anticipo a tutti -
modulo per far ruotare immagini flash
ciao cercavo un modulo per far girare i miei banner creati in flash, volevo avere anche la possibilità di avere il random delle immagini, in modo che appaiano in modo casuale nella home.
Grazie in anticipo;)