Szka Posted July 27, 2016 Share Posted July 27, 2016 Hello guys, I'm starting a website but before the installation I get this error: So, when I check the line I see this $connect = new mysqli($config['sqlHost'], $config['sqlUser'], $config['sqlPassword'], $config['sqlDatabase']); Don't know what to write there because if I change it, it appears a message of the website saying: Notice: Undefined index: ...... Hope someone could help me because is really annoying!! Thanks a lot Quote Link to comment https://forums.phpfreaks.com/topic/301650-problem-with-this-line/ Share on other sites More sharing options...
requinix Posted July 27, 2016 Share Posted July 27, 2016 Looks like you haven't set up the configuration stuff yet. I don't know where $config is coming from, but the code expects it to include database information. What's in there needs to be whatever your MySQL connection details are - which should not be for the root user. Quote Link to comment https://forums.phpfreaks.com/topic/301650-problem-with-this-line/#findComment-1535106 Share on other sites More sharing options...
Szka Posted July 27, 2016 Author Share Posted July 27, 2016 (edited) Thanks bro! I already fixed this! I'm having a problem with this line now CREATE TABLE IF NOT EXISTS `znote_guild_wars` ( `id` int(11) NOT NULL AUTO_INCREMENT, `limit` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), FOREIGN KEY (`id`), REFERENCES `guild_wars` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; #1005 - Can't create table `realserver`.`znote_guild_wars` (errno: 150 "Foreign key constraint is incorrectly formed") Know anything about it? Thank you! Edited July 27, 2016 by Szka Quote Link to comment https://forums.phpfreaks.com/topic/301650-problem-with-this-line/#findComment-1535107 Share on other sites More sharing options...
requinix Posted July 27, 2016 Share Posted July 27, 2016 "Foreign key constraint is incorrectly formed" I feel like I've been snippy lately? Maybe I should step away from the forums for a while. Quote Link to comment https://forums.phpfreaks.com/topic/301650-problem-with-this-line/#findComment-1535110 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.