Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

jenya's avatar
Level 2

Telescope links don't work

Hello Laracasts. I use Laravel 5.8.16,PHP 7.3.5, Apache 2.4 on Windows 7 x64, ans MS SQL Server 2012 as DB, also I have laravel telescope package installed.

If I go to /telescope url I can see Telescope main page with all links (requests, events and so on).

If I click Requests link, for example, scanning begins and there are no requests shown. But in DB there are greate amount of different records such as events queries, so on - so package works.

Then I visit telescope/models url - error shown:

The requested URL /telescope/models was not found on this server.

route:list artisan command shows only name for:

| | GET|HEAD| telescope/{view?} |telescope|Laravel\Telescope\Http\Controllers\HomeController@index

Please help

PS. I execute clear artisan commands, reset webserver, browser and so on - no result..

0 likes
5 replies
Punksolid's avatar

Hi @jenya There are endpoints to view telescope resources, however you are trying to visit

telescope/models and that one is a POST endpoint.

There is no GET endpoint for telescope/models

1 like
jenya's avatar
Level 2

Thank you for a answer! telescope/models - I take this url as example. All urls are unavailable: telescope/requests,telescope/queries and others.

BUT package write rows in telescope_entries_tags table, does it mean that it works normaly and I just have a problem with Apache settings or with frontend (in theory)?

rajusutra's avatar

Hi Please check if the .htaccess URL rewriting is working fine or not. I think it may be your file permission issue. Please revert me if you found any solution other than this.

1 like
jenya's avatar
Level 2

@RAJUSUTRA - Thank you for your answer. I allow all rules for whole document root in my Apache config, and I have same result: package looks like working, but all links are unavailiable in dashboard.

I access to my laravel app sever_ip/appname/public/pagename/. if I visit Telescope dashboard main page sever_ip/appname/public/telescope/ - dashboard main page loaded, When I visit any link from dashboard it redirect me to sever_ip/telescope/request for example and there is 404 page.

So, I go to sever_ip/appname/public/telescope/request instead - now page loaded but if I click monitoring button or play/pause buttom nothing happens and error in firefox console Error: Request failed with status code 404 in app.js line ....... (using php artisan serve command I got the same result)

I look at telescope dashboard main page layout and found that buttons has some Vue.js functionality, so I think Telescope can not found it's app.js file, but I don't to how to fix it.. I add <script>"{{asset('/vendor/telescope/app.js') }}"</script> sting in my telescope layout file, clear view cache and the same result

lysetisafi's avatar

@jenya DID you get any solution for it ? coz i havde same issue in my project

Please or to participate in this conversation.