I developed an application using Laravel adminLTE. I can login that application using php artisan serve command. But I can't login without using php artisan serve command. Below is the screen shot.
How can I debug this situation ?
Related
I am a complete beginner using JHipster.
I would like to use it to connect a backend API node server to connect to a MySQL server at the backend and use a React front end that I already have.
When generating a JHipster project on Vs Code terminal, I selected the following for my server backend.
? Which type of application would you like to create? Monolithic application (recommended for simple projects)
? What is the base name of your application? myserver
? Do you want to make it reactive with Spring WebFlux? No
? What is your default Java package name? com.testing.myserver
? Which type of authentication would you like to use? JWT authentication (stateless, with a token)
? Which type of database would you like to use? SQL (H2, PostgreSQL, MySQL, MariaDB, Oracle, MSSQL)
? Which production database would you like to use? MySQL
? Which development database would you like to use? H2 with disk-based persistence
? Which cache do you want to use? (Spring cache abstraction) Hazelcast (distributed cache, for multiple nodes, supports rate-limiting for gateway applications)
? Do you want to use Hibernate 2nd level cache? Yes
? Would you like to use Maven or Gradle for building the backend? Maven
? Do you want to use the JHipster Registry to configure, monitor and scale your application? No
? Which other technologies would you like to use? API first development using OpenAPI-generator
? Which Framework would you like to use for the client? React
? Do you want to generate the admin UI? Yes
? Would you like to use a Bootswatch theme (https://bootswatch.com/)? Default JHipster
? Would you like to enable internationalization support? No
? Please choose the native language of the application English
I get the following error:
enter image description here
Error says that JHipster was unable to launch git command. So, you should install it and make sure it is found in your PATH when you run it from VS Code terminal.
I was doing some stuff on Laravel, and noticed that my projects done by Laravel can be executed, without running WAMP server. How does it working? I used to think, that to run PHP code, or to retrieve/write some Data into your DataBase you need to run your WAMP server. But now I don't run WAMP server and it still works fine.
Do you have any idea about this issue?
That is because Laravel runs on a built-in server. From the docs:
Typically, you may use a web server such as Apache or Nginx to serve your Laravel applications. If you are on PHP 5.4+ and would like to use PHP's built-in development server, you may use the serve Artisan command:
php artisan serve
By default the HTTP-server will listen to port 8000. However if that port is already in use or you wish to serve multiple applications this way, you might want to specify what port to use. Just add the --port argument:
php artisan serve --port=8080
About Artisan CLI.
Some technical details about the built-in server.
I hope it helps!
laravel has a build in server using
php artisan serve
for stoping it you should stop the cammand prompt ctrl+c
Now i want to setup an application yii2 to test link redirect and get response result. So i dont need a database connect to it. How to setup app run without connect to a database. Thanks.
Yii modules and components are loaded only when needed. You can simple write your own controller and model, which are not using database. Just don't inherit your model from ActiveRecord, use yii\base\Model. And Yii will not instantiate unnecessary database connection when handling your route, even if database section is presented in config.
I'm new to web development and I'm trying to go live with my website. Currently I can run MAMP mysql and then in the django app I can run 'python manage.py runserver' to run a virtual version on my system.
Currently I have uploaded (rsync) my django files to the server. How do I upload and run my mysql server on the web server? How do i dictate the domain? I know before that the domain was 127.0.0.1......
THanks
127.0.0.1 is localhost, so if your code is hosted on a remote server you can still access the db with that host. You need to first make sure MySQL is installed on the server. Once that has been taken care of use the MySQL terminal to create your db, its as easy as that.
Here is a useful page of MySQL commands:
http://www.pantz.org/software/mysql/mysqlcommands.html
I have made a login screen in eclipse for a blackberry device and would like to verify if these details are correct so that the user can log in by connecting to MySql - with the login details table in it.
I have added the connector/j to my project and have the apache and MySQL setup.
I need to know how to write the code to connect and verify the login details
Thanks
You'd be better off using a connection to a server-side script to do the connecting and login checks. A simple CGI script over HTTPS should do fine.