Recent content by ScotWatson

  1. S

    Trailing slashes

    Thank you, I just tried out your code and it does remove the 301 redirect, excellent! You said in your first response that "DirectorySlash Off" turns off the redirect behavior, but in the second response you said that "DirectorySlash Off" is ignored by LiteSpeed, yet the code worked. Why...
  2. S

    Trailing slashes

    Most of the time, but not always. For example, the authorization endpoint of OAuth2 returns HTML, and the token endpoint in OAuth2 requires a request of content type of "application/x-www-form-urlencoded". I have just changed the test/index.php file to: <?php // Handles...
  3. S

    Trailing slashes

    The message is "Page layout may be unexpected due to Quirks Mode". This is because it was not legal HTML. I just changed the code in test/index.php to: <?php // Handles https://www.scotwatson.x10.mx/test/ echo "<!DOCTYPE html>"; echo "<html>"; echo " <head>"; echo " <meta...
  4. S

    Trailing slashes

    Also, my .htaccess file, which is at the public_html folder, contains the following: Options -Indexes Header set Access-Control-Allow-Origin "*" Header set Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS" Header set Access-Control-Allow-Headers "*, Authorization"
  5. S

    Trailing slashes

    I have just added a file to illustrate the issue. It is called index.php and is stored in a folder called test under the public_html folder. The file contains the following code: <?php // Handles https://www.scotwatson.x10.mx/test/ echo "Testing..."; ?> To see the issue, open the browser, open...
  6. S

    Trailing slashes

    I am working on an API and I have come across the issue of trailing slashes. So far, I have been storing the php code for each endpoint into a file called index.php in a folder with the name of the endpoint. When I try with the trailing slash, I get the response generated by the php code. When I...
  7. S

    SSL Certificate Renewal

    Certificate ACME in use. Auto Renewal in -30 Days. Certificate Hosts scotwatson.x10.mx, www.scotwatson.x10.mx Certificate Expiry Jun 13 20:47:19 2024 GMT The certificate claim to auto-renew, but has not done so. Does auto-renewal not work? Do I need to do something to make it renew?
  8. S

    CORS

    Thank you for the reference. However, I still need a little help: - It says to add a line to the .conf or .htaccess file. Where do I find these files? - It gives terminal commands. How do I open the terminal for this server? - It says module mod_headers is required. How do I ensure that...
  9. S

    CORS

    I am experimenting with using PHP as an API. However, I am getting CORS errors. How do I configure my domain to accept CORS?
  10. S

    Auto-Generated Content

    Please elaborate.
  11. S

    Auto-Generated Content

    This is a testing ground for me at the moment. My first thought initially is an API, but I may try other things at a later time. I just want to make sure I do not accidently get myself banned by doing something that happens to be against the ToS.
  12. S

    Auto-Generated Content

    The Terms of Service prohibit "Auto-Generated Content", but any PHP script will automatically generate content and PHP scripts are allowed. The ToS gives a short list of examples, but it is not clear what criteria this examples are pointing to. Could someone clarify what is meant by this?
  13. S

    Server-side Scripting

    Thank you. I created a database and it logged me in automatically. A note for others: I was making this harder than necessary. All that is needed to run a PHP script is to upload a .php file to the public_html folder. phpMyAdmin is only necessary for managing MySQL databases.
  14. S

    Server-side Scripting

    I want to start into server-side scripting. On this platform, it appears PHP is the language of choice. I believe this means I have to log into the phpMyAdmin site, but I do not know what Username and Password it is looking for.
  15. S

    Adding SSL Certificate

    I just tried it again now and it worked. I have no idea what changed. Domain is scotwatson.x10.mx & www.scotwatson.x10.mx
Top