• Re: Any Apache Experts?

    From Robert Heller@[email protected] to comp.os.linux.advocacy,comp.os.linux.misc on Fri Mar 6 01:47:03 2026
    From Newsgroup: comp.os.linux.advocacy

    At Thu, 05 Mar 2026 21:57:15 +0000 Farley Flud <[email protected]> wrote:

    On Thu, 5 Mar 2026 21:04:53 -0000 (UTC), Robert Heller wrote:


    The Help staff of your web hosting service are idiots.


    I could get better help if I were to pay for the premium service
    but this problem is not critical.



    The permissions on the relevant directories are 755 as they should be.
    The permissions on the files are 644 as they should be.

    What about owner and group?


    The owner and group of every file on the website, and not just the .cs files, are "root."

    FWIW, you can use the following wget commands to access the .cs files and
    the .cs.txt files. Both files are in the same directory with the same permissions:

    wget http://lapiet.info/mathphys/diffgeo/diffgeo1/geomview/monkey_Saddle-parabola-curve.cs

    wget http://lapiet.info/mathphys/diffgeo/diffgeo1/geomview/monkey_Saddle-parabola-curve.cs.txt

    The first command will report 403 and the second will download the file
    with no problem.

    The files are identical except for the file name extensions.
    OK, there is something "weird" going on. Do you have the site config files? (The file with <VirtualHost *:443>
    ServerName lapiet.info
    ..
    </VirtualHost>
    Partitularly, the <Directory ...> ... </Directory> lines. There is some fishy with the various options and settings there,



    Then you should be adding a line like:

    AddType text/tcl cs

    to .htaccess


    I've tried:

    AddType application/x-tcl cs

    AddType text/x-script.tcl cs
    AddType text/x-tcl cs
    *OR*
    AddType text/plain cs

    Neither work.


    I suspect that the Apache server at the web host is not configured
    properly,

    Likely. Do you have access to the site config file?


    --
    Robert Heller -- Cell: 413-658-7953 GV: 978-633-5364
    Deepwoods Software -- Custom Software Services
    http://www.deepsoft.com/ -- Linux Administration Services
    [email protected] -- Webhosting Services
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From The Natural Philosopher@[email protected] to comp.os.linux.advocacy,comp.os.linux.misc on Fri Mar 6 11:16:21 2026
    From Newsgroup: comp.os.linux.advocacy

    On 05/03/2026 21:57, Farley Flud wrote:
    wgethttp://lapiet.info/mathphys/diffgeo/diffgeo1/geomview/monkey_Saddle-parabola-curve.cs

    wgethttp://lapiet.info/mathphys/diffgeo/diffgeo1/geomview/monkey_Saddle-parabola-curve.cs.txt

    The first command will report 403 and the second will download the file
    with no problem.

    Given its you, I simply do not believe you
    --
    A lie can travel halfway around the world while the truth is putting on
    its shoes.

    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From fregas@[email protected] to comp.os.linux.advocacy on Fri Mar 6 14:11:07 2026
    From Newsgroup: comp.os.linux.advocacy

    On 2026-03-05, Farley Flud <[email protected]> wrote:
    My personal website, hosted on a Linux server using Apache,
    contains some files with a "cs" extension:

    file.cs

    When visitors attempt to access those files they receive
    a 403 error:

    ERROR 403: Forbidden.


    The solution should be to add a "cs" MIME type to the
    Apache .htaccess file in the root directory:

    AddType application/octet-stream cs

    But when I do this the 403 error still occurs.

    As temporary workaround I have added the "txt" extension
    to each "cs" file:

    file.cs.txt

    This allows regular access but I would rather not do this
    as these files are not actually human-readable.

    Is there a way to instruct Apache to permit access to these
    files?


    Typically .cs files are csharp files O i assume you're doing some kind
    of programming or wanting to show programming files, but not sure.

    What is it you're actually trying to accomplish? Simply display source
    code in your website?
    --
    --
    fregas baratis <[email protected]>
    "not all who wander are lost" - J.R.R. Tolkien
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy,comp.os.linux.misc on Fri Mar 6 16:21:57 2026
    From Newsgroup: comp.os.linux.advocacy

    On Fri, 6 Mar 2026 01:47:03 -0000 (UTC), Robert Heller wrote:


    OK, there is something "weird" going on.


    That is likely. But I think that it is worth pursuing
    beyond the advice that I have received so far.

    This particular "cs" extension is the only one that gives
    me problems. I have, for example, files with a "wxmx"
    extension that has no official MIME type, yet visitors
    can download the wxmx files without problem.


    Do you have the site config files?
    (The file with <VirtualHost *:443>
    ServerName lapiet.info
    ..
    </VirtualHost>

    Partitularly, the <Directory ...> ... </Directory> lines. There is some fishy
    with the various options and settings there,


    No, I do not.

    The website is actually on "shared hosting." I do not have an
    independent IP address.

    The host is: www.aspnix.com



    AddType text/x-tcl cs
    *OR*
    AddType text/plain cs


    I've tried both. Still no joy.

    I'll just have to keep the workaround of renaming the files
    with a "txt" extension appended.

    Everything else is fine and has been for several years.

    But I put up a new page with these "cs" files and a recent
    visitor informed me of the problem with access.

    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy,comp.os.linux.misc on Fri Mar 6 16:30:45 2026
    From Newsgroup: comp.os.linux.advocacy

    On Fri, 6 Mar 2026 14:11:07 -0000 (UTC), fregas wrote:


    Typically .cs files are csharp files O i assume you're doing some kind
    of programming or wanting to show programming files, but not sure.

    What is it you're actually trying to accomplish? Simply display source
    code in your website?


    These cs files are for the visitor to download to his machine and then
    load into his local software so as to duplicate the results that are
    shown on the website.

    But I have given up trying to solve this.

    Thanks to all for the advice.

    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy,comp.os.linux.misc on Fri Mar 6 16:33:59 2026
    From Newsgroup: comp.os.linux.advocacy

    On Fri, 6 Mar 2026 11:16:21 +0000, The Natural Philosopher wrote:


    Given its you, I simply do not believe you


    Do not place blame on others for your obviously sheltered
    and limited upbringing.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Mike Scott@[email protected] to comp.os.linux.advocacy on Fri Mar 6 16:48:18 2026
    From Newsgroup: comp.os.linux.advocacy

    On 06/03/2026 16:21, Farley Flud wrote:
    This particular "cs" extension is the only one that gives
    me problems. I have, for example, files with a "wxmx"
    extension that has no official MIME type, yet visitors
    can download the wxmx files without problem.

    I'm no expert, just muddling through and grateful when things work. But
    I *do* know that apache has comprehensive url remapping. Might a .cs url
    be remapped to something else that isn't an existing file?
    --
    Mike Scott
    Harlow, England
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Fri Mar 6 17:17:56 2026
    From Newsgroup: comp.os.linux.advocacy

    On Fri, 6 Mar 2026 16:48:18 +0000, Mike Scott wrote:


    I'm no expert, just muddling through and grateful when things work. But
    I *do* know that apache has comprehensive url remapping. Might a .cs url
    be remapped to something else that isn't an existing file?


    Let me first state that my background in network programming is very
    limited. That is why I have posted this issue here.

    But a public website contains files that are supposed to be accessible
    to the public and that means ANY file regardless of its file extension.

    Somehow, an extension of "cs" is causing the this Apache server to refuse
    to allow access to the file.

    However, this is not a critical issue and since no easy fix seems possible
    I am willing to consider it closed.

    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From DFS@[email protected] to comp.os.linux.advocacy on Fri Mar 6 13:11:13 2026
    From Newsgroup: comp.os.linux.advocacy

    On 3/5/2026 8:57 AM, Farley Flud wrote:

    My personal website, hosted on a Linux server using Apache,
    contains some files with a "cs" extension:

    file.cs
    ...

    The .cs files are Tcl scripts that are modified to be used with
    a certain program. They are basically text files that contain Tcl
    commands.


    Have you tried using the standard extensions of tcl/tk files?

    .tcl: Standard Tcl script file.
    .tk: Tcl script that uses the Tk toolkit for graphical user interfaces.
    .itcl: File containing object-oriented Tcl code using [incr Tcl].
    .tm: A file indicating a Tcl Module, part of the Tcl Module facility.
    .in: Sometimes used for configuration scripts.



    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Joel W. Crump@[email protected] to comp.os.linux.advocacy on Fri Mar 6 14:38:19 2026
    From Newsgroup: comp.os.linux.advocacy

    On 3/5/2026 8:57 AM, Farley Flud wrote:

    My personal website, hosted on a Linux server using Apache,
    contains some files with a "cs" extension:

    file.cs

    When visitors attempt to access those files they receive
    a 403 error:

    ERROR 403: Forbidden.


    The solution should be to add a "cs" MIME type to the
    Apache .htaccess file in the root directory:

    AddType application/octet-stream cs

    But when I do this the 403 error still occurs.

    As temporary workaround I have added the "txt" extension
    to each "cs" file:

    file.cs.txt

    This allows regular access but I would rather not do this
    as these files are not actually human-readable.

    Is there a way to instruct Apache to permit access to these
    files?


    You answered your own question.
    --
    Joel W. Crump
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From =?UTF-8?Q?St=C3=A9phane?= CARPENTIER@[email protected] to comp.os.linux.advocacy on Fri Mar 6 21:18:00 2026
    From Newsgroup: comp.os.linux.advocacy

    Le 05-03-2026, Farley Flud <[email protected]> a écrit :

    It can't be a permissions problem because I can just rename the files
    to add the "txt" extension without altering any permissions and then
    the files are accessible.

    Well, you should learn the basics to be able to understand that
    permission issues aren't limited to read/write/execute on the file
    system.
    --
    Si vous avez du temps à perdre :
    https://scarpet42.gitlab.io
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From =?UTF-8?Q?St=C3=A9phane?= CARPENTIER@[email protected] to comp.os.linux.advocacy,comp.os.linux.misc on Fri Mar 6 21:23:30 2026
    From Newsgroup: comp.os.linux.advocacy

    Le 06-03-2026, Farley Flud <[email protected]> a écrit :

    But I have given up trying to solve this.

    What a surprise. Maybe your website has been pawned by a script kiddie.
    Who knows?

    Thanks to all for the advice.

    And in the next message you insult all people who tried to help you.
    It's the exact reason why I won't help you again.
    --
    Si vous avez du temps à perdre :
    https://scarpet42.gitlab.io
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From =?UTF-8?Q?St=C3=A9phane?= CARPENTIER@[email protected] to comp.os.linux.advocacy on Fri Mar 6 21:38:36 2026
    From Newsgroup: comp.os.linux.advocacy

    Le 06-03-2026, Farley Flud <[email protected]> a écrit :

    Let me first state that my background in network programming is very
    limited.

    It's not network programming. But, well the meaning is too technical for
    you to understand. Let say that your background is very limited in
    computer in a broad way.

    That is why I have posted this issue here.

    You won't be able to understand the help others can give you. So I'm
    having fun reading how you are clutching at straws. But you are nasty
    because others are losing their time trying to help you.

    However, this is not a critical issue and since no easy fix seems possible

    You are the issue.

    I am willing to consider it closed.

    Good boy. Once again, you lost against your computer. Once again you
    refused a good opportunity to learn something.
    --
    Si vous avez du temps à perdre :
    https://scarpet42.gitlab.io
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From vallor@[email protected] to comp.os.linux.advocacy,comp.os.linux.misc on Fri Mar 6 22:34:53 2026
    From Newsgroup: comp.os.linux.advocacy

    At Fri, 06 Mar 2026 16:30:45 +0000, Farley Flud <[email protected]> wrote:

    On Fri, 6 Mar 2026 14:11:07 -0000 (UTC), fregas wrote:


    Typically .cs files are csharp files O i assume you're doing some kind
    of programming or wanting to show programming files, but not sure.

    What is it you're actually trying to accomplish? Simply display source code in your website?


    These cs files are for the visitor to download to his machine and then
    load into his local software so as to duplicate the results that are
    shown on the website.

    But I have given up trying to solve this.

    Thanks to all for the advice.

    I admire your patience -- you waited a whole 9 minutes for the
    answer...

    Anyway, it's part of the default Apache 2 configuration to treate
    .cs files as a different language.

    https://httpd.apache.org/docs/2.4/mod/mod_mime.html#addlanguage

    # egrep "\.cs$" etc/apache2/*/*.conf etc/apache2/mods-available/mime.conf:AddLanguage cs .cz .cs etc/apache2/mods-enabled/mime.conf:AddLanguage cs .cz .cs

    ...and there was nothing keeping you from looking up the docs
    for this.

    Anyway, tell your provider to remove that line from mods-available, and
    it will work right.

    Or better yet, get a vps on Digital Ocean, and assume control
    of the whole server. A tiny server is $6/mo.
    --
    -v System76 Thelio Mega v1.1 x86_64 Mem: 258G
    OS: Linux 7.0.0-rc2 D: Mint 22.3 DE: Xfce 4.18 (X11)
    NVIDIA GeForce RTX 3090Ti (24G) (580.126.18)
    "Useless Invention: Camcorder with braile-encoded buttons."
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Fri Mar 6 22:48:47 2026
    From Newsgroup: comp.os.linux.advocacy

    On Fri, 06 Mar 2026 22:34:53 +0000, vallor wrote:


    Anyway, it's part of the default Apache 2 configuration to treate
    .cs files as a different language.


    So why should that generate a "permission denied" error. Any file should
    just be delivered when requested.


    Anyway, tell your provider to remove that line from mods-available, and
    it will work right.


    YOU tell them.

    Their response to me was as follows:

    "That is normal. You would need to add a Mime Type in cPanel for cs to
    the appropriate file type."

    It's their server and I am not going to be a pest.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From vallor@[email protected] to comp.os.linux.advocacy on Sat Mar 7 02:54:02 2026
    From Newsgroup: comp.os.linux.advocacy

    At Fri, 06 Mar 2026 22:48:47 +0000, Farley Flud <[email protected]>
    wrote:

    On Fri, 06 Mar 2026 22:34:53 +0000, vallor wrote:


    Anyway, it's part of the default Apache 2 configuration to treate
    .cs files as a different language.


    So why should that generate a "permission denied" error. Any file
    should just be delivered when requested.


    No, because it's trying to retrieve from a different part of the
    server, that part set aside for .cs files. But that's not configured,
    so instead of telling them "file not found" (and disclosing the
    non-existence of the directory", it gives you a generic "forbidden".

    But I'm sure you knew all that. That's what I like about you:
    your attention to detail.

    More anon...

    Anyway, tell your provider to remove that line from mods-available,
    and it will work right.


    YOU tell them.

    Their response to me was as follows:

    "That is normal. You would need to add a Mime Type in cPanel for cs to
    the appropriate file type."

    It's their server and I am not going to be a pest.

    Is it "a pest" to get your web site working they way you want it?

    Also: you cut off my suggestion that you get your own web server,
    and stop using a hosting service. Or are you not a he-man Linux user?

    Besides, someone gave you the fix (a line for .htaccess) yesterday,
    which you completely ignored.

    In the future, maybe read the docs? Nobody will want to help you
    after the way you constantly abuse them.

    Finally, a question: Why would you refer to Apache server configuration
    as "network programming"? Were you just not thinking when you posted that? Senior moment, perhaps?
    --
    -v System76 Thelio Mega v1.1 x86_64 Mem: 258G
    OS: Linux 7.0.0-rc2 D: Mint 22.3 DE: Xfce 4.18 (X11)
    NVIDIA GeForce RTX 3090Ti (24G) (580.126.18)
    "Funny off-topic messages are always on-topic."
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Marc Haber@[email protected] to comp.os.linux.advocacy on Sat Mar 7 06:24:02 2026
    From Newsgroup: comp.os.linux.advocacy

    On Fri, 6 Mar 2026 14:11:07 -0000 (UTC), fregas wrote:
    Typically .cs files are csharp files O i assume you're doing some kind
    of programming or wanting to show programming files, but not sure.

    It is a rather common default setting (typically in security.conf inside
    the apache configuration directory) in distributions and/or web hosting platforms to not deliver .cs files. Same for .php files to prevent actual delivery of web app source code instead of executing them in case of a misconfigured (php or asp.net in those two examples) handler.

    I would consider not disabling that security measure but renaming the
    files and tell the users to rename them back.

    Greetings
    Marc

    P.S.: Only a clueless newbie or a troll would ask such a question
    on .advocacy. Since know that the OP is not the former, this leaves just
    one alternative.
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Lawrence =?iso-8859-13?q?D=FFOliveiro?=@[email protected] to comp.os.linux.advocacy on Sat Mar 7 07:13:35 2026
    From Newsgroup: comp.os.linux.advocacy

    On Sat, 7 Mar 2026 06:24:02 -0000 (UTC), Marc Haber wrote:

    P.S.: Only a clueless newbie or a troll would ask such a question on .advocacy. Since know that the OP is not the former, this leaves
    just one alternative.

    “¿Por que no los dos?”
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From =?UTF-8?Q?St=C3=A9phane?= CARPENTIER@[email protected] to comp.os.linux.advocacy on Sat Mar 7 09:59:00 2026
    From Newsgroup: comp.os.linux.advocacy

    Le 07-03-2026, Marc Haber <[email protected]> a écrit :

    P.S.: Only a clueless newbie or a troll would ask such a question
    on .advocacy. Since know that the OP is not the former, this leaves just
    one alternative.

    Well he is a well known clueless newbie and a well known troll at the
    same time. It looks like he is using Linux from a long time but he never learned anything about it. Which makes him the eternal clueless newbie.
    Each time he sounds like he knows something, it can be explained by a
    copy/past resulting from happy find on the web.

    You can either ignore him or have fun with him. But trying to have a
    serious discussion with him will only result in a waste of your time.
    Now, you do what you want, I wouldn't dare to tell you what you have to
    do. It's only an information. He as many pseudos but they are easy to
    spot.
    --
    Si vous avez du temps à perdre :
    https://scarpet42.gitlab.io
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From The Natural Philosopher@[email protected] to comp.os.linux.advocacy on Sat Mar 7 12:16:27 2026
    From Newsgroup: comp.os.linux.advocacy

    On 06/03/2026 16:33, Farley Flud wrote:
    On Fri, 6 Mar 2026 11:16:21 +0000, The Natural Philosopher wrote:


    Given its you, I simply do not believe you


    Do not place blame on others for your obviously sheltered
    and limited upbringing.




    ROFLMAO!
    --
    “The fundamental cause of the trouble in the modern world today is that
    the stupid are cocksure while the intelligent are full of doubt."

    - Bertrand Russell


    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Sat Mar 7 13:30:35 2026
    From Newsgroup: comp.os.linux.advocacy

    On Sat, 07 Mar 2026 02:54:02 +0000, vallor wrote:


    So why should that generate a "permission denied" error. Any file
    should just be delivered when requested.


    No, because it's trying to retrieve from a different part of the
    server, that part set aside for .cs files. But that's not configured,
    so instead of telling them "file not found" (and disclosing the
    non-existence of the directory", it gives you a generic "forbidden".


    If that is indeed what is happening then it should be possible override
    the behavior locally through the .htaccess file. That's the purpose of
    the .htaccess file.

    I sure as hell don't have access to the main Apache config file and
    the administrators who do sure as hell aren't going to modify it on
    my command.



    It's their server and I am not going to be a pest.

    Is it "a pest" to get your web site working they way you want it?


    The arrangement is basically self-service. One does not enter a self-service establishment and expect the clerks, who have other responsibilities, to
    wait on him. "Self service" means that if you want it then you find it,
    you bag it, you pay for it, and you leave -- and if you should fall down
    in the process then you pick yourself up.



    Also: you cut off my suggestion that you get your own web server,
    and stop using a hosting service. Or are you not a he-man Linux user?


    Ha, ha, ha, ha, ha, ha, ha!

    Just to start, I'd need to obtain my own IP address, both IPv4 and IPv6,
    as well as a direct line to the "backbones."

    Then, a single server is not enough, there has to be a second backup
    server located elsewhere to ensure uninterrupted access.

    Already I am WAY over budget.

    Furthermore, the administration thereof would severely cut into my time
    for content creation and it is the content that is the goal.

    Boy are you dumb! Ha, ha, ha, ha!



    Finally, a question: Why would you refer to Apache server configuration
    as "network programming"?


    Ha, ha, ha, ha! Does Apache grow on a tree?

    The "network" is not just the wires between client and server but it also includes the client and server.

    Boy are you dumb! Ha, ha, ha, ha!
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Sat Mar 7 14:39:00 2026
    From Newsgroup: comp.os.linux.advocacy

    On Sat, 7 Mar 2026 12:16:27 +0000, The Natural Philosopher wrote:


    ROFLMAO!


    The language of the fuddy-duddy.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Sat Mar 7 16:57:07 2026
    From Newsgroup: comp.os.linux.advocacy

    On 07 Mar 2026 09:59:00 GMT, Stéphane CARPENTIER wrote:


    Well he is a well known clueless newbie and a well known troll ...


    Listen up, mother fucker.

    I don't need a "review" from an incompetent, distro-lackey, clown
    like you.

    Is that clear?

    It had better be crystal clear, you disgusting piece of digital
    detritus.

    Remember: The Nazis conquered France in mere DAYS because the
    French army was commanded by pathetic idiots like YOU.

    YOU continue the tradition of French stupidity.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Sat Mar 7 17:04:24 2026
    From Newsgroup: comp.os.linux.advocacy

    On Sat, 7 Mar 2026 06:24:02 -0000 (UTC), Marc Haber wrote:


    P.S.: Only a clueless newbie or a troll would ask such a question
    on .advocacy. Since know that the OP is not the former, this leaves just
    one alternative.


    Only an incompetent ASSHOLE would ever bother to respond to what
    he stupidly believes is a "troll."

    Your brain more than obviously lacks the intrinsic chaos of true
    intelligence.

    Your stupid brain cannot even comprehend the excruciating insult
    embodied within the previous statement.

    You will forever seek safety among your own stupid kind.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From vallor@[email protected] to comp.os.linux.advocacy on Sat Mar 7 17:17:59 2026
    From Newsgroup: comp.os.linux.advocacy

    At Sat, 07 Mar 2026 13:30:35 +0000, Farley Flud <[email protected]>
    wrote:

    On Sat, 07 Mar 2026 02:54:02 +0000, vallor wrote:


    So why should that generate a "permission denied" error. Any file
    should just be delivered when requested.


    No, because it's trying to retrieve from a different part of the
    server, that part set aside for .cs files. But that's not
    configured, so instead of telling them "file not found" (and
    disclosing the non-existence of the directory", it gives you a
    generic "forbidden".


    If that is indeed what is happening then it should be possible
    override the behavior locally through the .htaccess file. That's the
    purpose of the .htaccess file.

    And someone told you yesterday what to put in your .htaccess
    file.

    I sure as hell don't have access to the main Apache config file and
    the administrators who do sure as hell aren't going to modify it on
    my command.

    So you read the documentation for the Apache server and set things
    right... in your .htaccess.

    It's their server and I am not going to be a pest.

    Is it "a pest" to get your web site working they way you want it?


    The arrangement is basically self-service.

    Except, you can't be bothered to rtfm, so you are at the
    worst disadvantage for such a service.


    One does not enter a
    self-service establishment and expect the clerks, who have other responsibilities, to wait on him. "Self service" means that if you
    want it then you find it, you bag it, you pay for it, and you leave
    -- and if you should fall down in the process then you pick yourself
    up.

    So be sure and let everybody know when the anvil hits.



    Also: you cut off my suggestion that you get your own web server,
    and stop using a hosting service. Or are you not a he-man Linux
    user?


    Ha, ha, ha, ha, ha, ha, ha!

    Just to start, I'd need to obtain my own IP address, both IPv4 and
    IPv6, as well as a direct line to the "backbones."

    Digital Ocean takes care of all that, and you can have your
    very own Linux server for ~$6/mo.

    Then, a single server is not enough, there has to be a second backup
    server located elsewhere to ensure uninterrupted access.

    That would make it $12/mo. Too rich for your blood!


    Already I am WAY over budget.

    ...or way under-qualified.

    Furthermore, the administration thereof would severely cut into my
    time for content creation and it is the content that is the goal.

    You're in luck: there's a web provider principle in colm that _told_
    you what to put in .htaccess.

    Boy are you dumb! Ha, ha, ha, ha!

    Not as dumb as someone who can't set up basic Apache.

    Finally, a question: Why would you refer to Apache server
    configuration as "network programming"?


    Ha, ha, ha, ha! Does Apache grow on a tree?

    Nice attempt at deflection.


    The "network" is not just the wires between client and server but it
    also includes the client and server.

    Boy are you dumb! Ha, ha, ha, ha!

    Yet I configure and deploy my own Apache servers. Maybe not so
    dumb after all.

    And configuring Apache isn't "network programming", it's "application configuration".

    In the future, don't ask for help, and then ignore the people
    who give you the right answer.
    --
    -v ASUS TUF DASH F15 x86_64 Mem: 15.9G
    OS: Linux 6.14.0-37-generic D: Mint 22.2 DE: Xfce 4.18 (X11)
    NVIDIA GeForce RTX 3060 Mobile (6G) 580.126.09
    "Press Ctrl-Alt-Del to continue..."
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Lionel Tiberius Jackson Jr.@[email protected] to comp.os.linux.advocacy on Sat Mar 7 12:50:25 2026
    From Newsgroup: comp.os.linux.advocacy

    In article <189a9df1c0bced16$1956$2090784$802601b3
    @news.usenetexpress.com>, [email protected] says...

    On Sat, 7 Mar 2026 06:24:02 -0000 (UTC), Marc Haber wrote:


    P.S.: Only a clueless newbie or a troll would ask such a question
    on .advocacy. Since know that the OP is not the former, this leaves just one alternative.


    Only an incompetent ASSHOLE would ever bother to respond to what
    he stupidly believes is a "troll."

    Your brain more than obviously lacks the intrinsic chaos of true intelligence.

    Your stupid brain cannot even comprehend the excruciating insult
    embodied within the previous statement.

    You will forever seek safety among your own stupid kind.
    My boy you need to calm down. Once you are fully relaxed,
    languid and calm you need to find a woman. My boy, you
    need to get laid because the semen has backed up all the
    way from your balls to your brain and the millions of
    sperm are eating at your brain. In time you will become a
    vegetable.
    Might I suggest Tinder? Make sure to choose an ugly woman
    because they screw better than the worn out Barbie Dolls.
    --
    LTJ
    Lionel Tiberius Jackson
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Sat Mar 7 18:46:35 2026
    From Newsgroup: comp.os.linux.advocacy

    On Sat, 7 Mar 2026 12:50:25 -0500, Lionel Tiberius Jackson Jr. wrote:


    My boy, you
    need to get laid because the semen has backed up all the
    way from your balls to your brain


    *YOU* need to get a lot more fiber in your diet because your turds,
    already stinking to high heaven from your Western cuisine, are backed
    up all the way to your brain causing you to emit loads of total
    bullshit.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From =?UTF-8?Q?St=C3=A9phane?= CARPENTIER@[email protected] to comp.os.linux.advocacy on Sat Mar 7 20:11:19 2026
    From Newsgroup: comp.os.linux.advocacy

    Le 07-03-2026, Farley Flud <[email protected]> a écrit :
    On Sat, 07 Mar 2026 02:54:02 +0000, vallor wrote:

    I sure as hell don't have access to the main Apache config file and
    the administrators who do sure as hell aren't going to modify it on
    my command.

    They are wise.

    Also: you cut off my suggestion that you get your own web server,
    and stop using a hosting service. Or are you not a he-man Linux user?

    Pretending to be is not enough to be.

    Just to start, I'd need to obtain my own IP address, both IPv4 and IPv6,

    If that's difficult, for you, I understand why you have troubles using
    Linux.

    as well as a direct line to the "backbones."

    What's that?

    Then, a single server is not enough, there has to be a second backup
    server located elsewhere to ensure uninterrupted access.

    For your website, no one would notice a few hours of interruption each
    year.

    Already I am WAY over budget.

    That costs nothing. Your computer is already working, you don't need
    another one. If you had a tens of the skills you pretend to have you
    could get a well paid job and you wouldn't notice few dollars a year.

    Furthermore, the administration thereof would severely cut into my time
    for content creation and it is the content that is the goal.

    Of course, you would have to learn the basics, it would be impossible
    for you.

    Boy are you dumb!

    Yes, he believed you have some knowledge in computers. He's here from
    some time, he should have known better.

    Finally, a question: Why would you refer to Apache server configuration
    as "network programming"?

    Because he knows nothing. He's using words which sound impressive to
    impress himself.

    Does Apache grow on a tree?

    Well unrelated answer to prouve you knows nothing.

    The "network" is not just the wires between client and server but it also includes the client and server.

    Clearly, I don't know if anyone can be fooled by that, but you just
    proved, once again, that you have no basic understanding of what you are saying.

    It's not surprising you couldn't run your own server if you wanted to.

    Boy are you dumb!

    Of course, he's dumb to imagine you have technical knowledge.
    --
    Si vous avez du temps à perdre :
    https://scarpet42.gitlab.io
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Sat Mar 7 21:37:32 2026
    From Newsgroup: comp.os.linux.advocacy

    On Sat, 07 Mar 2026 17:17:59 +0000, vallor wrote:


    If that is indeed what is happening then it should be possible
    override the behavior locally through the .htaccess file. That's the
    purpose of the .htaccess file.

    And someone told you yesterday what to put in your .htaccess
    file.


    Yes, they gave me suggestions. But nothing works. Nothing.

    I have closed this case. I will no longer pursue it. I've got
    better things to do than to constantly explore blind alleys.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Farley Flud@[email protected] to comp.os.linux.advocacy on Sat Mar 7 22:15:45 2026
    From Newsgroup: comp.os.linux.advocacy

    On 07 Mar 2026 20:11:19 GMT, Stéphane CARPENTIER wrote:


    They are wise.


    But you are assuredly not.

    Why do you pollute this group with your ridiculous attacks on my
    glorious person? Why?

    This group is for GNU/Linux advocacy. What advocacy have you brought
    here lately? What?

    I will advise you to stick to the topic of GNU/Linux advocacy or else
    move your incompetent ass out of here.
    --
    Gentoo/LFS: Is there any-fucking-thing else?
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From DFS@[email protected] to comp.os.linux.advocacy on Sun Mar 8 10:51:39 2026
    From Newsgroup: comp.os.linux.advocacy

    On 3/7/2026 5:15 PM, Lameass Larry Piet (aka Farley Flud) wrote:


    This group is for GNU/Linux advocacy.


    Your last new post/subject was about hurricanes.

    Before that it was a thread about an HTML editor.

    Before that it was a thread about a webserver.

    Before that it was a thread about gambling.

    Before that it was a thread about Microsoft.

    Before that it was a thread about Vulkan.

    Before that it was a thread about a video downloader.

    Before that it was asking Joel for dirty pics.


    None of them were about the GNU/Linux operating system.


    You've been repeating "This group is for GNU/Linux advocacy." for years,
    while also using cola for your off-topic diatribes the whole time.


    I guess you'll never get tired of being a rude, bossy schmuck.

    --- Synchronet 3.21d-Linux NewsLink 1.2