Re: [users@httpd] Location of Web Site Pages

2024-08-26 Thread Yehuda Katz
On Sun, Aug 25, 2024 at 8:09 PM Lawrence Taylor wrote: > Thanks Paul I have read the document, which explains all the ways you map > the URL to file system locations. What it does not say (from what I can > see) is how to check where this mapping is located. Can you help? > You have everything

Re: [users@httpd] Location of Web Site Pages

2024-08-25 Thread Lawrence Taylor
Thanks Paul I have read the document, which explains all the ways you map the URL to file system locations. What it does not say (from what I can see) is how to check where this mapping is located. Can you help? On Sat, Aug 24, 2024 at 2:32 PM Paul wrote: > On 2024-08-24 14:58, Lawrence Taylor

Re: [users@httpd] Location of Web Site Pages

2024-08-24 Thread Frank Gingras
On Sat, Aug 24, 2024 at 4:32 PM Paul wrote: ... I think it's about time that you move the matter to a web/html/js forum - this thread was not really pertinent to httpd, as far as the asked questions are concerned.

Re: [users@httpd] Location of Web Site Pages

2024-08-24 Thread Paul
On 2024-08-24 14:58, Lawrence Taylor wrote: The mixed content error I am getting now when I force HTTPS is A script with an insecure url of " http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"; was loaded on line: 129 of https://www.luxurybeach.com/. --

Re: [users@httpd] Location of Web Site Pages

2024-08-24 Thread Lawrence Taylor
The mixed content error I am getting now when I force HTTPS is A script with an insecure url of " http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"; was loaded on line: 129 of https://www.luxurybeach.com/. -- This URL will nee

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Lawrence Taylor
Thanks Yehuda This is above my expertise so will need to hire someone Thanks On Wed, Aug 21, 2024 at 6:27 PM Yehuda Katz wrote: > There is no way to know without actually looking at the code. Some PHP > applications have a templating engine, some just have includes of different > files in dif

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Yehuda Katz
There is no way to know without actually looking at the code. Some PHP applications have a templating engine, some just have includes of different files in different places. You can search the code for the name of the javascript file. There are definitely other files that are included from a non-se

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Stormy
On 2024-08-21 14:08, Yehuda Katz wrote: I see a lot of absolute links to http resources (and I see the name of the company that made the website). It does not appear to be any off-the-shelf application, it was probably something made specifically for your company. - Y On Wed, Aug 21, 2024 at 1:

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Yehuda Katz
I see a lot of absolute links to http resources (and I see the name of the company that made the website). It does not appear to be any off-the-shelf application, it was probably something made specifically for your company. - Y On Wed, Aug 21, 2024 at 1:57 PM Lawrence Taylor wrote: > When you

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Lawrence Taylor
When you view the source code on the landing page does that tell you anything?luxurybeach.comSent from my iPhoneOn 21 Aug 2024, at 11:51 a.m., Yehuda Katz wrote:There are probably no "html" files - the website is generated dynamically by the PHP application.It looks like the PHP application is li

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Yehuda Katz
There are probably no "html" files - the website is generated dynamically by the PHP application. It looks like the PHP application is linking to insecure URLs for javascript and stylesheets, so when you go to the page with HTTPS, your browser refuses to load those resources and that is why your pa

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Lawrence Taylor
Thanks but the html files still exist somewhere though correct?The purpose of all this is that I am trying to force HTTPS. But when I do the landing page is not rendered properly, and the other pages become error pages.Sent from my iPhoneOn 21 Aug 2024, at 11:32 a.m., Yehuda Katz wrote:Your .htac

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Yehuda Katz
Your .htaccess is doing three things: forwarding all secure traffic to your website to be not secure, forwarding some requests for specific files to different places, telling the system to use a ridiculously old version of PHP. You probably need a PHP developer to look at your application specific

Re: [users@httpd] Location of Web Site Pages

2024-08-21 Thread Lawrence Taylor
Hi Yehuda Here is my .htaccess file, does it show anything? RewriteCond %{SERVER_PORT} ^443$ RewriteRule (.*) http://www.luxurybeach.com [R=301,L] redirect 301 /pdf/127/Condo%20Las%20Pe�as%20Vallarta%20 http://www.luxurybeach.com/pdf/127/Condo%20Las%20Pe�as%20Vallarta.pdf redirect 301 /pdf/139/

Re: [users@httpd] Location of Web Site Pages

2024-08-20 Thread Yehuda Katz
This is a side issue, but I can see in your screenshots that you are running cPanel version 86. That version is 3+ years out of date and could have security vulnerabilities. You should not expose a server running software which has not been updated in such a long time on the Internet. - Y Sent fr

Re: [users@httpd] Location of Web Site Pages

2024-08-20 Thread Yehuda Katz
You have some kind of PHP application running your website. You can check your .htaccess file for RewriteRule or other directives that affect requests and direct them to the application. There isn't enough information in the screenshots to see whether it is a custom application or something off the

Re: [users@httpd] Location of Web Site Pages

2024-08-20 Thread Frank Gingras
On Tue, Aug 20, 2024 at 8:18 PM Lawrence Taylor wrote: > Yehuda > > I attach the images of the directories in CPanel for the web site user. > These directories do not have html files. > > What do you suggest now? > > Regards > > Lawrence > > > > On Tue, Aug 20, 2024 at 2:36 PM Lawrence Taylor >

Re: [users@httpd] Location of Web Site Pages

2024-08-20 Thread Lawrence Taylor
Thanks Yahuda I will try that!Sent from my iPhoneOn 20 Aug 2024, at 2:28 p.m., Yehuda Katz wrote:Based on the links you posted, it looks like your server is running cPanel. cPanel stores each website it hosts in its own user directory.You need to figure out which user your website is running as,

Re: [users@httpd] Location of Web Site Pages

2024-08-20 Thread Yehuda Katz
On Tue, Aug 20, 2024 at 4:25 PM Marc wrote: > what about doing a > > find / -iname '*cse.cgi*' -ls > If anyone comes across this in the future: cse is ConfigServer Explorer, a cPanel plugin that provides a filesystem browser. It has nothing to do with HTTPD or with where the files of the website

Re: [users@httpd] Location of Web Site Pages

2024-08-20 Thread Yehuda Katz
Based on the links you posted, it looks like your server is running cPanel. cPanel stores each website it hosts in its own user directory. You need to figure out which user your website is running as, then look at the public_html directory in the user account's home directory. If a single cPanel ac

RE: [users@httpd] Location of Web Site Pages

2024-08-20 Thread Marc
> I have been trying to find the location of the actual html pages that you > see on my website so I can edit them. But in my document root I only have > > 400.shtml > iew&p=/var/www/html&f=400.shtml#new> 229 28-Oct-2

[users@httpd] Location of Web Site Pages

2024-08-20 Thread Lawrence Taylor
Hi I have been trying to find the location of the actual html pages that you see on my website so I can edit them. But in my document root I only have 400.shtml 229 28-Oct-2021 07:25:02 r