Panel working locally but not when uploaded to a web server

I have built a website locally and been working with panel and set up a CMS that works. When I uploaded it to my webserver and the website displays fine, however, I get a white screen when I go to /panel. I get these errors in console.

panel:1 GET http://goldenerwesten.eu/Alex/PIK/panel 404 (Not Found)
panel:25 Error parsing a meta element's content: ';' is not a valid key-value pair separator. Please use ',' instead.
panel:30 [Violation] Avoid using document.write(). https://developers.google.com/web/updates/2016/08/removing-document-write
(anonymous) @ panel:30
panel:30 [Violation] Parser was blocked due to document.write(<script>)
(anonymous) @ panel:30
panel:30 A parser-blocking, cross site (i.e. different eTLD+1) script, http://sedoparking.com/frmpark/goldenerwesten.eu/IONOSParkingDE/park.js, is invoked via document.write. The network request for this script MAY be blocked by the browser in this or a future page load due to poor network connectivity. If blocked in this page load, it will be confirmed in a subsequent console message. See https://www.chromestatus.com/feature/5718547946799104 for more details.
(anonymous) @ panel:30
panel:30 [Violation] Parser was blocked due to document.write(<script>)
(anonymous) @ panel:30
panel:30 A parser-blocking, cross site (i.e. different eTLD+1) script, http://sedoparking.com/frmpark/goldenerwesten.eu/IONOSParkingDE/park.js, is invoked via document.write. The network request for this script MAY be blocked by the browser in this or a future page load due to poor network connectivity. If blocked in this page load, it will be confirmed in a subsequent console message. See https://www.chromestatus.com/feature/5718547946799104 for more details.
(anonymous) @ panel:30
panel:30 GET http://sedoparking.com/frmpark/goldenerwesten.eu/IONOSParkingDE/park.js net::ERR_BLOCKED_BY_CLIENT
(anonymous) @ panel:30

Looks like rewriting is not enabled and/or the .htaccess file is missing.

Can you please go into more detail about rewriting being enabled please? .htaccess is in there this is the file:

# Kirby .htaccess
# revision 2020-06-15

# rewrite rules
<IfModule mod_rewrite.c>

# enable awesome urls. i.e.:
# http://yourdomain.com/about-us/team
RewriteEngine on

# make sure to set the RewriteBase correctly
# if you are running the site in a subfolder;
# otherwise links or the entire site will break.
#
# If your homepage is http://yourdomain.com/mysite,
# set the RewriteBase to:
#
# RewriteBase /mysite

# In some environments it's necessary to
# set the RewriteBase to:
#
# RewriteBase /

# block files and folders beginning with a dot, such as .git
# except for the .well-known folder, which is used for Let's Encrypt and security.txt
RewriteRule (^|/)\.(?!well-known\/) index.php [L]

# block all files in the content folder from being accessed directly
RewriteRule ^content/(.*) index.php [L]

# block all files in the site folder from being accessed directly
RewriteRule ^site/(.*) index.php [L]

# block direct access to Kirby and the Panel sources
RewriteRule ^kirby/(.*) index.php [L]

# make site links work
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]

</IfModule>

# pass the Authorization header to PHP
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1

# compress text file responses
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE application/json
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
</IfModule>

Hi, I will be honest I have never worked with an .htaccess file before. I guess I haven’t formatted it correctly. What do I change to create it correctly?

Is your server an Apache Webserver? If yes, you use the .htaccess provided by Kirby as is.

This .htaccess file makes use of Apache’s mod_rewrite module. So for the rewrite rules in the file to work, this module must be enabled on your Apache server. It usually is, but if in doubt, contact your hosting provider (or consult their documentation).

You are obviously using Kirby in a subfolder on your server. Make sure that other .htaccess files in other projects do not interfere.

I thought you had asked for a refund for your license?

Hi with regards to the refund, I had to use my licence key for the local server for some reason. I need to get it transferred to the live web server once I have resolved this htaccess problem. To clarify the htaccess file above this is correct nothing needs to be changed and it should be in the root folder next to index.php?