PHP Nuke Nederland
 
•   Home  •  Downloads  •  Your Account  •  Forums  •
PHP-Nuke Nederland: Forums

PHP-Nuke Nederland :: View topic - [OPGELOST]error creating tables
 Forum FAQ  •   Search   •  Memberlist  •  Usergroups   •  Register   •    •  Profile  •  Log in to check your private messages  •  Log in

 
Post new topicReply to topic
View previous topic Log in to check your private messages View next topic
Author Message
DAB-Poseidon
Gevorderd
Gevorderd


Joined: Nov 07, 2006
Posts: 86
Location: Roermond

PostPosted: Mon 28 Jul 2008 13:40 Reply with quoteBack to top

Code:
$Q01 = "CREATE TABLE " . $check_table_1 . "
      (
        `nxp_botlist_id` int(11) NOT NULL auto_increment,
        `nxp_botlist_agen` varchar(255) NOT NULL '',
        `nxp_botlist_name` varchar(255) NOT NULL '',
        `nxp_botlist_vers` int(5) NOT NULL '',
        `nxp_botlist_site` varchar(255) NOT NULL '',
        PRIMARY KEY  (`nxp_botlist_id`)
      ) TYPE=MyISAM;";
$R01 = $db->sql_query($Q01);


Dus hij hoort zo te zijn? Zo ja. dan zegt hij hetvolgende:



    Fout
    SQL-query:

    $Q01 = "CREATE TABLE ".$check_table_1. "
    (
    `nxp_botlist_id` int(11) NOT NULL auto_increment,
    `nxp_botlist_agen` varchar(255) NOT NULL '',
    `nxp_botlist_name` varchar(255) NOT NULL '',
    `nxp_botlist_vers` int(5) NOT NULL '',
    `nxp_botlist_site` varchar(255) NOT NULL '',
    PRIMARY KEY (`nxp_botlist_id`)
    ) TYPE=MyISAM;";



    MySQL retourneerde:

    #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 '$Q01 = "CREATE TABLE " . $check_table_1 . "
    (
    `nxp_botlist_id`' at line 1


_________________
Image
Image
View user's profileSend private messageSend e-mailVisit poster's websiteMSN Messenger
nedkelly
Elite Support
Elite Support


Joined: Aug 23, 2004
Posts: 518

PostPosted: Mon 28 Jul 2008 16:59 Reply with quoteBack to top

Code:
`nxp_botlist_agen` varchar(255) NOT NULL '',
        `nxp_botlist_name` varchar(255) NOT NULL '',
        `nxp_botlist_vers` int(5) NOT NULL '',
        `nxp_botlist_site` varchar(255) NOT NULL ''

Verwijder eens de " op het eind van de regels.
View user's profileSend private message
DAB-Poseidon
Gevorderd
Gevorderd


Joined: Nov 07, 2006
Posts: 86
Location: Roermond

PostPosted: Tue 29 Jul 2008 0:05 Reply with quoteBack to top

nedkelly wrote:
Code:
`nxp_botlist_agen` varchar(255) NOT NULL '',
        `nxp_botlist_name` varchar(255) NOT NULL '',
        `nxp_botlist_vers` int(5) NOT NULL '',
        `nxp_botlist_site` varchar(255) NOT NULL ''

Verwijder eens de " op het eind van de regels.


Hetzelfde..

Fout
SQL-query:

$Q01 = "CREATE TABLE ".$check_table_1. "
(
`nxp_botlist_id` int(11) NOT NULL auto_increment,
`nxp_botlist_agen` varchar(255) NOT NULL ,
`nxp_botlist_name` varchar(255) NOT NULL ,
`nxp_botlist_vers` int(5) NOT NULL ,
`nxp_botlist_site` varchar(255) NOT NULL ,
PRIMARY KEY (`nxp_botlist_id`)
) TYPE=MyISAM;";



MySQL retourneerde:

#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 '$Q01 = "CREATE TABLE " . $check_table_1 . "
(
`nxp_botlist_id`' at line 1

_________________
Image
Image
View user's profileSend private messageSend e-mailVisit poster's websiteMSN Messenger
nedkelly
Elite Support
Elite Support


Joined: Aug 23, 2004
Posts: 518

PostPosted: Tue 29 Jul 2008 0:37 Reply with quoteBack to top

Probeer dit eens:
Code:
 CREATE TABLE `nxp_botlist` (
`nxp_botlist_id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`nxp_botlist_agen` varchar( 255 ) NOT NULL ,
`nxp_botlist_name` varchar( 255 ) NOT NULL ,
`nxp_botlist_vers` int( 5 ) NOT NULL ,
`nxp_botlist_site` varchar( 255 ) NOT NULL ,
PRIMARY KEY ( `nxp_botlist_id` )
) TYPE = MYISAM
View user's profileSend private message
DAB-Poseidon
Gevorderd
Gevorderd


Joined: Nov 07, 2006
Posts: 86
Location: Roermond

PostPosted: Tue 29 Jul 2008 4:35 Reply with quoteBack to top

ut is toch god ge klaagt Razz
hij zegt dat quertie goed is verzonden

Uw SQL-query is succesvol uitgevoerd. (Query duurde 0.1603 sec)
SQL-query:
CREATE TABLE `nxp_botlist` (
`nxp_botlist_id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`nxp_botlist_agen` varchar( 255 ) NOT NULL ,
`nxp_botlist_name` varchar( 255 ) NOT NULL ,
`nxp_botlist_vers` int( 5 ) NOT NULL ,
`nxp_botlist_site` varchar( 255 ) NOT NULL ,
PRIMARY KEY ( `nxp_botlist_id` )
) TYPE = MYISAM

en nog zegt ie data missing op mijn installer. En ik probeerde er NUKE voor te zetten zoals:

Uw SQL-query is succesvol uitgevoerd. (Query duurde 0.1603 sec)
SQL-query:
CREATE TABLE `nuke_nxp_botlist` (
`nxp_botlist_id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`nxp_botlist_agen` varchar( 255 ) NOT NULL ,
`nxp_botlist_name` varchar( 255 ) NOT NULL ,
`nxp_botlist_vers` int( 5 ) NOT NULL ,
`nxp_botlist_site` varchar( 255 ) NOT NULL ,
PRIMARY KEY ( `nxp_botlist_id` )
) TYPE = MYISAM

maar weer geen verschil Embarassed het is toch wel jammer dat dit moet hé

MVG ,MAikel

_________________
Image
Image
View user's profileSend private messageSend e-mailVisit poster's websiteMSN Messenger
zeromechanic
Administrator
Administrator


Joined: Oct 01, 2004
Posts: 1474
Location: Emmeloord

PostPosted: Tue 29 Jul 2008 8:06 Reply with quoteBack to top

idd alsje rechtstreeks in de database gaat invoeren, moet je natuurlijk wel de database tabelopgeven.
Ik ging er vanuit dat je dit in het install bestand deed aanpassen.

maar werkt het nu?

_________________
Te Lezen: Forum Regels | Te Gebruiken
View user's profileSend private messageVisit poster's website
DAB-Poseidon
Gevorderd
Gevorderd


Joined: Nov 07, 2006
Posts: 86
Location: Roermond

PostPosted: Tue 29 Jul 2008 13:34 Reply with quoteBack to top

zeromechanic wrote:
idd alsje rechtstreeks in de database gaat invoeren, moet je natuurlijk wel de database tabelopgeven.
Ik ging er vanuit dat je dit in het install bestand deed aanpassen.

maar werkt het nu?


ik heb hem veranderd maar ik weet niet of ik het goed heb gedaan want nu laat hij alleen het balkje zien van de voortgang.
Ik zet hem wel ff te download hier dat jullie er naar kunnen kijken ? Embarassed

http://www.deathcrime.x10hosting.com/nxp_online_step_4.rar

Ik heb botlist veranderd.. naar:

CREATE TABLE `nuke_nxp_botlist` (
`nxp_botlist_id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`nxp_botlist_agen` varchar( 255 ) NOT NULL ,
`nxp_botlist_name` varchar( 255 ) NOT NULL ,
`nxp_botlist_vers` int( 5 ) NOT NULL ,
`nxp_botlist_site` varchar( 255 ) NOT NULL ,
PRIMARY KEY ( `nxp_botlist_id` )
) TYPE = MYISAM

omdat hij zo is verzonden naar mijn database? Rolling Eyes

MVG, MAikel

_________________
Image
Image
View user's profileSend private messageSend e-mailVisit poster's websiteMSN Messenger
DAB-Poseidon
Gevorderd
Gevorderd


Joined: Nov 07, 2006
Posts: 86
Location: Roermond

PostPosted: Tue 29 Jul 2008 13:41 Reply with quoteBack to top

maar nu kan ik wel verder op mijn website met het block..? het block doet het en ik kan verder met het nxp admin gedeelte. Ik weet niet of nxp nu volledig is geinstaleerd?

MVG , MAikel

_________________
Image
Image
View user's profileSend private messageSend e-mailVisit poster's websiteMSN Messenger
zeromechanic
Administrator
Administrator


Joined: Oct 01, 2004
Posts: 1474
Location: Emmeloord

PostPosted: Wed 30 Jul 2008 7:10 Reply with quoteBack to top

gezien je screenshot in een van de eerdere berichten, was deze tabel de enige die ontbrak.
Deze heb je nu handmatig aangemaakt in de database, dus de installer hoef je niet meer te gebruiken

De NXP is dus volgens die gegevens volledig geinstalleerd.

groet

_________________
Te Lezen: Forum Regels | Te Gebruiken
View user's profileSend private messageVisit poster's website
DAB-Poseidon
Gevorderd
Gevorderd


Joined: Nov 07, 2006
Posts: 86
Location: Roermond

PostPosted: Wed 30 Jul 2008 13:38 Reply with quoteBack to top

zeromechanic wrote:
gezien je screenshot in een van de eerdere berichten, was deze tabel de enige die ontbrak.
Deze heb je nu handmatig aangemaakt in de database, dus de installer hoef je niet meer te gebruiken

De NXP is dus volgens die gegevens volledig geinstalleerd.

groet


Zo te zien werkt alles nu ja.. Very Happy Very Happy.
Dan wil ik jullie allemaal hartstikke bedanken voor jullie vele support en hopelijk dat jullie een kijkje nemen op mijn website en wat commentaar kunnen geven wat beter kan.. e.d.

Nog maar hartstikke bedankt! Wink

MVG, MAikel

_________________
Image
Image
View user's profileSend private messageSend e-mailVisit poster's websiteMSN Messenger
Display posts from previous:      
 Donaties   Adverteren 
Wilt u het forum steunen, dan kunt u nu eenvoudig doneren met PayPal.
Post new topicReply to topic
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Web site powered by PHP-Nuke

All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest © 2004-2008 by BlueLion.
SEO enhanced with the Sitemapper script
You can syndicate our news using the file backend.php or ultramode.txt
Powered by PHP Powered by MySQL Apache Webserver Valid robots.txt
PHP-Nuke Copyright © 2004 by Francisco Burzi. This is free software, and you may redistribute it under the GPL. PHP-Nuke comes with absolutely no warranty, for details, see the license.
Pagina rendering: 0.09 seconden


[Valid News RSS]

RSS Feeds:
[RSS 2.0 News Feed]
[RSS 2.0 Download Feed]
[RSS 2.0 Forum Feed]
[RSS 2.0 Link Feed]
:: fisubsilver shadow phpbb2 style by Daz :: PHP-Nuke theme by BlueLion ::