Jump to content

Void Mysterious

Resident
  • Posts

    9
  • Joined

  • Last visited

Posts posted by Void Mysterious

  1. Hello,

    So from what i see, when i right click a subfolder in my "Objects" folder i used to get the option to create lets say a script or notecard, now i no longer see that option in the popup menu, the only way i found to create a new item is from the button at the top of the inventory and this creates the item in some other folder, either the notecard folder or script folder, etc. Why is this menu gone? when did this change happened? Or is it some bug?

    Even if i want to create a notecard like stated here 

    That option is gone.

    Thanks.

    • Thanks 1
  2. On 4/13/2020 at 11:58 AM, Oz Linden said:

    What you did was create a redirect. There's a much simpler way to do that; see the documentation for the RedirectSSL directive.

    If your request was a GET (you didn't say), your request might have worked (your redirect did not include any query string), but it won't work for any other method; see the wiki:

    It's also possible that the redirect you created was not to a valid url; impossible to say without specific detail or a complete log.

    Thanks for the reply.

    I kind of figured it out.

    When using the URL https://www.example.com (Not the real domain) it fails, however if i use https://example.com it works fine, so i guess its some configuration issue on the webserver.

    • Like 1
  3. On 4/9/2020 at 11:52 AM, Oz Linden said:

    Not sure I understand what you're saying there ... it is not true that if the server responds to http that it will always respond to https. Have you looked at the server logs to see that it is getting the request and thinks it's responding?

    Let me try to explain with a bit more of detail.

    If i set my webserver to accept only HTTPS by changing the virtualhost using:

    RewriteEngine on
    RewriteCond %{SERVER_NAME} =(DOMAIN REMOVED) [OR]
    RewriteCond %{SERVER_NAME} =(DOMAIN REMOVED)
    RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

    then the lsl scripts fails with error 499.

    From the logs i see this

    With the virtuahost modification

    image.thumb.png.6b8308746ff8af8512a0715e7469b186.png

    Without the virtualhost modification

    image.thumb.png.37966ac5f1908752152b9b70fb9b0f26.png

  4. 15 hours ago, Oz Linden said:

    That usually means that the remote server is not reachable (not responding). Check to see whether the server is receiving your request.

    Hello Oz,

    Yes, the server is reachable, when i force all traffic to use HTTPS it fails, if i allow HTTP it works fine.

    Thank you.

×
×
  • Create New...