HansSchouten / Laravel-Pagebuilder

A drag and drop pagebuilder to manage pages in any Laravel project
https://www.phpagebuilder.com
MIT License
783 stars 182 forks source link

PHPageBuilder page not found. Check your URL: http://localhost/:8000/admin #69

Closed glenn13 closed 3 years ago

glenn13 commented 3 years ago

I used to follow this step:

Follow these steps to install Laravel Pagebuilder in your project:

composer require hansschouten/laravel-pagebuilder
php artisan vendor:publish --provider="HansSchouten\LaravelPageBuilder\ServiceProvider" --tag=config

Update the configuration in config/pagebuilder.php

php artisan migrate

Next, you need to create a theme:

php artisan pagebuilder:create-theme [name here]

.. or publish the demo theme:

php artisan pagebuilder:publish-demo

Now you are able to login via /admin with admin and changethispassword (the admin URL and credentials can be changed in the pagebuilder config file).

After the installation, when i try to run the url based on config/pagebuilder.php it returns

PHPageBuilder page not found. Check your URL: http://localhost/:8000/admin
codegeek1001 commented 3 years ago

Do you have a typo in your APP_URL env ? You have listed the URL as http://localhost/:8080 (notice the / before colon : sign).

glenn13 commented 3 years ago

it works now.. I just misconfigured the env file.. thanks