Code Monkey home page Code Monkey logo

Comments (12)

mattish91 avatar mattish91 commented on July 22, 2024

Did you try both automatic and manual install?

Did you ever try to import the SQL manually to the database trough EG. phpMyAdmin? And try manually after that?

from php-login.

therecluse26 avatar therecluse26 commented on July 22, 2024

from php-login.

 avatar commented on July 22, 2024

I know this might sound like a silly question, but did you enter all of the database information during the configuration step?

On May 18, 2019 at 5:29 PM, <Mattias Magnusson @.***)> wrote: Did you try both automatic and manual install? Did you ever try to import the SQL manually to the database trough EG. phpMyAdmin? And try manually after that? — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub (#231?email_source=notifications&email_token=AB63QAQYMXIQBDBU2W3HLLTPWBYMXA5CNFSM4HNYZOX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVWWKCQ#issuecomment-493708554), or mute the thread (https://github.com/notifications/unsubscribe-auth/AB63QAWUMXLTE3EMCWPA4FDPWBYMXANCNFSM4HNYZOXQ).

Did you try both automatic and manual install?

Did you ever try to import the SQL manually to the database trough EG. phpMyAdmin? And try manually after that?

I know this might sound like a silly question, but did you enter all of the database information during the configuration step?

On May 18, 2019 at 5:29 PM, <Mattias Magnusson @.***)> wrote: Did you try both automatic and manual install? Did you ever try to import the SQL manually to the database trough EG. phpMyAdmin? And try manually after that? — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub (#231?email_source=notifications&email_token=AB63QAQYMXIQBDBU2W3HLLTPWBYMXA5CNFSM4HNYZOX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVWWKCQ#issuecomment-493708554), or mute the thread (https://github.com/notifications/unsubscribe-auth/AB63QAWUMXLTE3EMCWPA4FDPWBYMXANCNFSM4HNYZOXQ).

https://i.imgur.com/JmlziD4.png I reinstalled the files and this is what comes up on automated.

https://i.imgur.com/kYLI9PL.png - the automated install infomation

https://i.imgur.com/vOCtJ44.png - phpmyadmin

when i try manual when it comes to password it says it needs to be filled out even the as i use xampp their isnt a password.

from php-login.

 avatar commented on July 22, 2024

I know this might sound like a silly question, but did you enter all of the database information during the configuration step?

On May 18, 2019 at 5:29 PM, <Mattias Magnusson @.***)> wrote: Did you try both automatic and manual install? Did you ever try to import the SQL manually to the database trough EG. phpMyAdmin? And try manually after that? — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub (#231?email_source=notifications&email_token=AB63QAQYMXIQBDBU2W3HLLTPWBYMXA5CNFSM4HNYZOX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVWWKCQ#issuecomment-493708554), or mute the thread (https://github.com/notifications/unsubscribe-auth/AB63QAWUMXLTE3EMCWPA4FDPWBYMXANCNFSM4HNYZOXQ).

ignore that i managed to fix it, however upon installation it redirects me to a page that says this https://i.imgur.com/h5aOoPH.png

from php-login.

therecluse26 avatar therecluse26 commented on July 22, 2024

from php-login.

 avatar commented on July 22, 2024

I have installed composer to my understanding (going to my cmd redirecting to D:\Desktop\452\PHP-Login-master\login\misc then putting composer install into the cmd then yh) is that it if so I have done that and it still doesn't work

from php-login.

 avatar commented on July 22, 2024

Do I need to goto login/index.php or can i just go from index.php without going to login.

from php-login.

falconapps avatar falconapps commented on July 22, 2024

I have a similar failure on Ubuntu 18.04 and 16.04, both auto and manual. I can say that the SQL fails (at least the first time) at:

mysql> CREATE TABLE `member_info` (
    ->   `userid` char(23) NOT NULL,
    ->   `firstname` varchar(45) NOT NULL,
    ->   `lastname` varchar(55) DEFAULT NULL,
    ->   `phone` varchar(20) DEFAULT NULL,
    ->   `address1` varchar(45) DEFAULT NULL,
    ->   `address2` varchar(45) DEFAULT NULL,
    ->   `city` varchar(45) DEFAULT NULL,
    ->   `state` varchar(30) DEFAULT NULL,
    ->   `country` varchar(45) DEFAULT NULL,
    ->   `bio` varchar(20000) DEFAULT NULL,
    ->   `userimage` varchar(255) DEFAULT NULL,
    ->   UNIQUE KEY `userid_UNIQUE` (`userid`),
    ->   KEY `fk_userid_idx` (`userid`),
    ->   CONSTRAINT `fk_userid` FOREIGN KEY (`userid`) REFERENCES `members` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
    -> ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ERROR 1022 (23000): Can't write; duplicate key in table 'member_info'
mysql> 

Any idea?

from php-login.

therecluse26 avatar therecluse26 commented on July 22, 2024

@falconapps is there already data in that table? That error would happen if you have an existing table with duplicate values in the userid field.

from php-login.

falconapps avatar falconapps commented on July 22, 2024

I was trying the manual after a botched auto install. I've rolled out a fresh Ubuntu 16.04 and tried manual only - seems okay, although with some strange errors in the SQL which seemed like tab/space/whitespace. Anyway, sorted and all good - thanks!

from php-login.

therecluse26 avatar therecluse26 commented on July 22, 2024

from php-login.

falconapps avatar falconapps commented on July 22, 2024

I think so. I've scripted most of this so I'll try again with Ubuntu 18.04 today - auto and if that fails manual - I have the feeling I'll have to tweak the SQL again, maybe. If so I'll come back with details.
I'm wanting to upgrade from an older version of PHP-Login, and really want to upgrade PHP-Login to Bootstrap 4 as the rest of my older site is Bootstrap 4 - am I biting off more than I can chew?

from php-login.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.