Laravel不断加载,什么也没发生

时间:2018-07-14 17:22:45

标签: mysql laravel apache xampp

在终端中输入php artisan serve后,laravel开发服务器启动:http://127.0.0.1:8000

但是当我在浏览器中重新加载时,它会继续加载并且不会显示任何错误

这再次发生在我所有的项目中。

我不知道发生了什么

7 个答案:

答案 0 :(得分:0)

尝试http://localhost:8000

您缺少端口号0。 如果这样不起作用,请尝试运行“ ping localhost:8000”并将结果发回。

答案 1 :(得分:0)

您可以更改laravel端口: php artisan serve --port = 8080

答案 2 :(得分:0)

我有相同的Problime,我解决了它的写法:php -S 0.0.0.0:8000,它将显示防火墙上的allow并单击note example #6

答案 3 :(得分:0)

我遇到了同样的问题,我用php artisan serve解决了这个问题,然后用from bs4 import BeautifulSoup from selenium import webdriver import time os.environ["PATH"] += os.pathsep + r'/home/pierre/PycharmProjects/scraping/venv' browser = webdriver.Firefox() browser.get('http://karresults.nic.in/indexPUC_2019.asp') reg = browser.find_element_by_id('reg') reg.send_keys('738286') sub = browser.find_element_by_class_name('btn-default') sub.click() time.sleep(3) soup = BeautifulSoup(browser.page_source, 'lxml') results = [] for record in soup.find_all('tr'): for data in record.find_all('td'): results = results + [data.text.replace(u'\xa0', u'').strip()] with open('myfile.csv', 'w') as f: for item in results: f.write(item + ',') 重新启动了服务器

答案 4 :(得分:0)

我通过运行此命令而不是php artisan serve解决了这个问题。

php -S localhost:8000 -t public/

然后尝试在浏览器localhost:8000中再次运行

希望它能帮助您,祝您编程愉快:)

答案 5 :(得分:0)

也许是您的问题,该文件在运行该命令的项目中崩溃了

php artisan config:cache // clear config cache
php artisan config:clear // clear config cache
php artisan cache:clear // clear cache
php artisan optimize  // To reoptimize the class loader
php artisan route:cache // clear route cache
php artisan view:clear // clear view cache

或者可以使用此命令更改其他端口为其他程序保留的端口8000

php artisan serve --port=1000
//then type http://127.0.0.1:1000/ on your browser.

答案 6 :(得分:0)

我遇到了同样的问题,后来才发现我的病毒防护软件是我花了将近一天的时间的原因。如果上述解决方案都不适合您,请禁用您的病毒防护程序