Code Monkey home page Code Monkey logo

Comments (13)

MacKentoch avatar MacKentoch commented on May 30, 2024

Hi @ksngits,

Thank you for contribution.

Despite these are errors, this is normal since this react-director-admin-template is not finished at this time.

I'm currently focusing on another repository (fixing) so I don't have time to finish it.

I keep this issue open as a reminder.

from react-director-admin-template.

ksngits avatar ksngits commented on May 30, 2024

Also lacks responsiveness.

from react-director-admin-template.

MacKentoch avatar MacKentoch commented on May 30, 2024

#1 fixed

#2 work in progress. I plan to use react-bootstrap-table since a complete table I already used in production application.

from react-director-admin-template.

nadesan avatar nadesan commented on May 30, 2024

How i can include login page and authentication for admin template. Please guide me

from react-director-admin-template.

MacKentoch avatar MacKentoch commented on May 30, 2024

@nadesan With react-router 4 it is even easier than before.

Just add a route in your Root component:

class Root extends Component {
  render() {
    return (
      <Provider store={store}>
        <div>
          <Router history={syncedHistory}>
            <ScrollTop>
              <Switch>
                <Route exact path="/login" component={Login} />
                <App />
                <Route component={PageNotFound} />
              </Switch>
            </ScrollTop>
          </Router>
        </div>
      </Provider>
    );
  }
}

I will soon (very soon) push this example (working example) in this template.

from react-director-admin-template.

MacKentoch avatar MacKentoch commented on May 30, 2024

@nadesan see it in action:

  • go preview
  • click on top navbar user menu (John Doe)
  • then click logout

Then login in is a fake login so just enter anything to login.

from react-director-admin-template.

nadesan avatar nadesan commented on May 30, 2024

from react-director-admin-template.

nadesan avatar nadesan commented on May 30, 2024

from react-director-admin-template.

nadesan avatar nadesan commented on May 30, 2024

Am running for a prod build (PORT 30) and in server. My dev build working fine but when i run with production its not working.Anyone please let me know how to solve this.

from react-director-admin-template.

nadesan avatar nadesan commented on May 30, 2024

Am trying to upload the code in ubuntu server. but its showing error in operating system. Please check the attached image.

image

from react-director-admin-template.

MacKentoch avatar MacKentoch commented on May 30, 2024

Hi @nadesan

Please use at least NodeJS 6.x since dependencies are often no more the same from 4.x.
There are less issues when dealing with 6.x and 8.x.

  • upgrade NodeJS to 6.x (NOTE: better use nvm to deal with multiple NodeJS version if you still need 4.x)

  • then delete and reinstall node modules:

    rm -rf node_modules
    npm install

from react-director-admin-template.

nadesan avatar nadesan commented on May 30, 2024

image
Issue still not fixed in my ubuntu server. Please let me know the whats the issue.

Have installed latest version of Node and npm.

from react-director-admin-template.

MacKentoch avatar MacKentoch commented on May 30, 2024

@nadesan

For theses errors I suspect there are file name related:

  • macOS is not case sensitive (so imports are resolve even if you forgot an upper case for example)
  • linux/unix is case sensitive so it won't work

I will fix it since it crashes CI too (running on a linux)

from react-director-admin-template.

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.