I had a working site with a couple of models, textures and pictures. My Chromebook space was low so I bought a SD-card and copied my localhost folder to that as a backup. Next time i reloaded the server from VS-code with the php-server extenssion i always use. The server responded with a 404 error, I then removed my backupp-folder - thinking maybe that disturbed as a doubble refernce. My server now loads properly but the references to the textures, pictures and modeles no longer work, responding with 404. The referenses between scripts and imports still work, but after the renaming pictures and so forth and restarting
everything, the models, pictures and textures still don't load - it seems permanently cashed some way - Anyone that knows how to fix it?
Images can't any longer be found on local server
21 Views Asked by William Knutsson At
1
There are 1 best solutions below
Related Questions in VISUAL-STUDIO-CODE
- Is there a way to prevent vscode from forwarding ssh agent to remote dev container?
- flutter Null check error: did not show file and line number
- vscode, debug angular, first time, doesn't debug, 2nd time stops at main.js then it's ok
- trouble with creating a project for Pymakr in vscode
- Compiling c++ code by VS Code is always blocked by clang-tidy error 'Error running 'clang-tidy'
- Disable typescript in VS Code
- couldn't sign in visual studio code
- I can't add text to "Message" in VS Code when committing to Git
- Cannot type single backtick in VSCode
- WebScraping doesnt work, even without error
- Visual Studio Code keeps discovering python interpreters forever and vscode-server on remote is busy 100%
- vscode uses different cocoapods version when running a task
- Live server extension in VS Code works in background but do not pop the web browser
- How to recover deleted files from create vite react project
- Autocomplete not working for apache spark in java vscode
Related Questions in PATH
- How to write a clickable link in VS Code terminal that points to a multiline range?
- Can't run Python's mapscript because of a missing DLL
- How change path to my new generated webp image in index.html?
- Correct way to compare file paths when one is canonical and other absolute
- make Error 2, The system cannot find the file specified
- Tkinter treeview displaying and selecting rows question
- Running clang64.exe or mingw64.exe incorrectly sets PATH
- Python project deployment on Ubuntu 18 server
- FileNotFoundError while trying to load dataset from drive
- Powershell Receive-File issue
- BlendMode does not work as expected with a path and circle in Jetpack Compose
- return all paths in a nested dictionary that also contains a list in python
- How to show and change Image inside a Flask Route?
- What is vue router :matchRest(.*)* and when should I use it?
- Cassandra Installation Issue on Windows 11- 64bit
Related Questions in GOOGLE-CHROME-OS
- excludeRoute SDK API introduced in API 33. Is it supported for the Android VPN app on ChromeOS?
- installing 'xiaomi notes.apk' through adb on chromebook getting error
- Is there a way to force add kiosk apps via the command line (vt2) on a chromebook?
- Offline PWA as a ChromOS Kiosk Application
- Autofill password on Chrome OS login screen
- How to disable isVolumeFixed=true on Chrome OS?
- Is it possible to programmatically reboot chromeos devices via google admin devices?
- How to work with files in the ChromeOS My Files app?
- Using On-device Dictation/SODA in a self-built ChromiumOS/ChromeOS installation
- How to get ChromOS to stop asking what client cert to use?
- Why is chrome.fileBrowserHandler API undefined when reading onExecute?
- MAUI app opens Chrome browser outside application on Chromebook, but works on Android - How to fix?
- How can I access all the characters on a Chromebook keyboard?
- ChromeOS Flex on MacBookPro 16" late 2019 with no mouse cursor
- Chrome Verified Access API always fails with PERMISSION_DENIED (The caller does not have permission")
Related Questions in LOCALSERVER
- Browser doesn't find images from HTML when running on local host
- UDP socket in C - recvfrom() doesn't seem to read data from socket as intended
- Phones can't connect to local server
- There is a problem connecting my Android application to MySQL
- Rewriting paths during S3 bucket to local syncing through AWS Command Line Interface
- Joomla Error: Failed to start application: Failed to start the session
- How to play articulate html file from localserver in flutter?
- How to Expose local server to the web
- ctrl+c in VSCode
- Images can't any longer be found on local server
- Is it impossible to connect MSSQL localdb from published asp net core mvc 6.0 project?
- Several unsuccessful login attempts from several stations
- WebGL and problems with local server + VScode
- Vtiger CRM extensions and add-ons
- I am trying to get the ip address of a locally hosted server in the network in react native
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It's solved.The problem was that I once opened the VS-code from the SD card in files - just to try if the card worked for executions. Then I wanted to access the original localhost folder in VS code again. So I opened the localhost folder the same way through files. My referenses of /localhost/pictures/... then was reffering outside the scope I had accessable in VS code. By removing the folder localhost from the raltive path to /pictures/... the models, textures and pictures could render again.