Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23
  1. #11
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,904
    Plugin Contributions
    13

    Default Re: Issue with EV SSL renewal

    Quote Originally Posted by Man from Mars View Post
    define('DIR_WS_CATALOG', '/catalog/');
    define('DIR_WS_HTTPS_CATALOG', '/catalog/');


    Can anyone advise me where I'm going wrong?

    Thanks
    your hosting company is correct. your SSL seems to be working fine.

    to change your home from this:

    https://www.anglingcentrewestbay.co.uk/catalog/

    to:

    https://www.anglingcentrewestbay.co.uk

    you need to change your configure.php file. change these lines:

    Code:
      define('DIR_WS_CATALOG', '/catalog/');
      define('DIR_WS_HTTPS_CATALOG', '/catalog/');
    to:

    Code:
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    good luck!
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  2. #12
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Issue with EV SSL renewal

    Quote Originally Posted by carlwhat View Post
    your hosting company is correct. your SSL seems to be working fine.

    to change your home from this:

    https://www.anglingcentrewestbay.co.uk/catalog/

    to:

    https://www.anglingcentrewestbay.co.uk

    you need to change your configure.php file. change these lines:

    Code:
      define('DIR_WS_CATALOG', '/catalog/');
      define('DIR_WS_HTTPS_CATALOG', '/catalog/');
    to:

    Code:
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    good luck!
    If that's the case, then the hosting company DID change things, because BEFORE the ssl cert update, it was working as /catalog, and not as / ... so they DID mangle things, without saying so.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #13
    Join Date
    Mar 2015
    Location
    Broadchurch
    Posts
    77
    Plugin Contributions
    0

    Default Re: Issue with EV SSL renewal

    Quote Originally Posted by carlwhat View Post
    your hosting company is correct. your SSL seems to be working fine.

    to change your home from this:

    https://www.anglingcentrewestbay.co.uk/catalog/

    to:

    https://www.anglingcentrewestbay.co.uk

    you need to change your configure.php file. change these lines:

    Code:
      define('DIR_WS_CATALOG', '/catalog/');
      define('DIR_WS_HTTPS_CATALOG', '/catalog/');
    to:

    Code:
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    good luck!
    I changed the catalog/includes/configure.php file as above and still had an error of 'you don't have permission..... Apache/2.4.23 (Unix) Server at www.anglingcentrewestbay.co.uk Port 80'

    Do I still need to add the .htaccess update as well (previous reply from MC12345678) or just the amendment to configure.php?

    Thank you everyone for your support, very much appreciated.

  4. #14
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,904
    Plugin Contributions
    13

    Default Re: Issue with EV SSL renewal

    #1 the hosting company may have screwed things up; that is really not for me to say. i'm just trying to help the OP solve their problem.
    #2 mc is very competent; i'm sure there is good advice in there, but IMHO it does not have to do with the '/catalog' problem you are now having. although it may be able to solve the problem; i am not nearly as competent in the black magic of .htaccess rules.
    #3 i disagree that the problem is a mis-configuration on document root for the SSL. both of these links go to the same place:

    http://www.anglingcentrewestbay.co.uk/catalog/
    https://www.anglingcentrewestbay.co.uk/catalog/

    i still think the problem can be solved with ZC configure.php files. how they got screwed up, i can not say.

    when you removed the 'catalog/' from the other code, it looks like you may need to add it to your document root variable:

    Code:
     define('DIR_FS_CATALOG', '/YOUR/CURRENT/ROOT/catalog/');
    you would need to do this on both files.

    good luck.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #15
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Issue with EV SSL renewal

    Not that I necessarily have access to improperly setup a site with an SSL, but I did notice something that seems odd... If the SSL were properly setup when trying to access the root of the domain (up a folder from the root of the store) via https, shouldn't the denied access response be provided over port 443 instead of port 80?
    Code:
    Forbidden
    
    You don't have permission to access / on this server.
    Apache/2.4.23 (Unix) Server at www.anglingcentrewestbay.co.uk Port 80
    Or is it the fact that it is reporting an attempt to access the root of the server (which really or likely is several folders into the system) that is the indication of this document-root issue? (I sometimes forget that the reported location is from the root of the server where other times a reported issue is from the current location...) If I'm right about the reported error being associated with the root of the server, then I now understand how the certificate setup was called to question (at fault at least in part).

    The fact that when the subdirectory is referenced that the site operates, to me states that internally the includes/configure.php file was setup well enough to present the first page (indicating to me that generically speaking the DIR_FS constants pointed to the right place(s) on the system to allow loading of files when accessed using DIR_FS_ related constants). The fact that one could navigate from that location also indicates to me that generally speaking the DIR_WS_ related constants were set right at least relative to the current location. So that further indicates to me that the configure.php files are/were correct for the current configuration. The problem as identified at the onset is getting the customer to the proper folder based on entering the domain name only (and of course ensuring that the web-facing side is https: and that the https: path includes the information necessary to satisfy the SSL certificate "validation".)

    The fact that it is/was desired to have the entire site SSL, and the rewrite in the htaccess to try to force to https on at least first page load or at any time a http: path is provided and that navigation from one page to another or an attempt to access the site using http: forced me as a webpage clicker to end up on a page with https indicates that at least the htaccess rule that was present was working to keep pages https. But... if you were to look at the source code of the page, there existed links to items in the store that had an http: link which can only be provided if 1) hard coded (discouraged because is less flexible) or 2) one or more of the includes/configure.php constants had http: in it... (that was one of the earlier changes recommended). By leaving that as http: and the htaccess forcing https, basically every link clicked on required rewriting and the page would still cause basic links to begin with http:.

    I may not fully understand the document-root aspect of the SSL, but it doesn't seem to me that the SSL configuration itself would modify how a visitor gets to the correct path in the store (I think those two things are separate, but it based on higher authority comment at least when trying to access the root of the store there is information provided/known to indicate such a problem). Now, I also hazard to guess that your public_html folder doesn't include any version of an index file, neither index.html nor index.php. That too could be why the unauthorized access message is presented...

    Regardless, I stand by my previous recommendations as a manually entered means to get the visitor to the sub-folder by https: and the domain name to include www. on first (and subsequent) page load and the other change of the includes/configure.php to have HTTP_SERVER include https: as part of the URI to then support staying on https: from page-to-page and not cause additional redirects. There may still be a problem with things such as the document-root of the certificate, there may have been some internal redirect to the folder that was removed/modified by the host, etc... I don't know how it was setup before. I do know that the host provided .htaccess rule is one rule that will change the visited page from http: to https:; however, that is all that it does. It does not redirect to the sub-folder, it doesn't ensure that www. is part of the domain name assuming that the certificate requires the www. prefix, etc... The "short" .htaccess rule I provided is expected to ensure all three conditions are met by either making the necessary modifications to the provided information or not doing anything if the expected information is already present such as when navigating the site once there. I chose the compact method to attempt to minimize processing for each page load and to keep things straight because if split out more, then would have to address each issue separately with the expectation that the end result would be as desired and future additions of htaccess rules (if any) wouldn't muck things up.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #16
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: Issue with EV SSL renewal

    Just my 2cents worth.

    If the document_root is correctly defined (cPanel and/or host setting) there is no need for any rewrites/redirects.

    I'll even go as far to say, if a rewrite is needed, then you are doing it all wrong.

    If the document_root is correctly set (for this site), the *only* place "catalog" would appear in the zencart configure files will be in the FS defines. If 'catalog' appears in any of the server defines, or the WS defines then you are doing it wrong.

    Sure, I will admit that a person *could* mess around using rewrites/redirects, and they could add/include folder paths in the Server/WS defines in the ZenCart config files to get a site 'functional' - but all this is really doing is compensating for an incorrect/invalid document_root.

    I prefer the KISS principle.

    1. Get the document_root correct
    2. Set the zencart *server* settings - Domain name only - no paths or subfolders.
    3. Set the zencart FS paths (The WS settings never need to be changed from their defaults)
    4. Remove the .htaccess file

    The site should then function correctly, both with and without SSL. If it doesn't, then investigate why not - BEFORE considering redirects/rewirite, or adding paths/folders to anything ofther than the FS defines.

    Then, and only then should one consider *optionally* adding rewrites/redirects to take care of ' *1st access* changes (www to non www, and/or http to https).

    I will never really understand why so many people make this so difficult for themselves

    Cheers
    RodG

  7. #17
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,904
    Plugin Contributions
    13

    Default Re: Issue with EV SSL renewal

    completely concur w rod.

  8. #18
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Issue with EV SSL renewal

    And unfortunately for some, there are those hosts that say: thou has no way as an end user to adjust the document root of the server as public_html is your document root, you have no access to a higher path/area, and if you decide to place the contents of your store in a sub-directory from public_html you will forever be forced to use some other process to ensure that customers arrive at that location as the "root" of your store. And while such individuals have the right to change to a host that would actually allow them to not have a web-facing sub-directory, there are those that will persist on with the domain hosted in sub-directory by way of redirect/continuous display of Web facing sub-directory.

    The thing is here. The OP had previously hosted the site with this sub-directory is the domain, continues to want that and the site is not supporting that arrangement and the host has not provided a solution that complies with that arrangement. So... from the OPs perspective the document root has always been public_html with the site provided from catalog as the first directory off of public_html...

    As DrByte said, it worked before the host made a change and it was working in such a way that catalog was displayed in the browser as a sub-directory off of the domain name. If you are stating/giving a solution that will alter the uri that has been in existence and used for the site, the effects of such modification both "good" and bad should be explained to the OP. Otherwise, as has been provided give a solution that restores the web-facing operation back to what it was.

    Like I said, I didn't see how the document root could be used to necessarily force a visitor onto the web-facing catalog directory by way of entering just the domain name. And no such solution was described as it isn't possible without some form of rewrite/redirect based on the above two posts.

    I personally agree that a sub-directory in the uri (DIR_WS_CATALOG) is generally unnecessary if not in some ways harmful, but that is associated with a new install not an existing one of a relatively new store. Making a change at that point in the operation is something that should be planned not just done because a couple of people made it sound cool. :)
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #19
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: Issue with EV SSL renewal

    Quote Originally Posted by mc12345678 View Post
    And unfortunately for some, there are those hosts that say: thou has no way as an end user to adjust the document root of the server as public_html is your document root, you have no access to a higher path/area,
    Agreed, but it is *very rare* that anyone would need a doc_root at a level *higher* than public_html - I've never found a need for this in over 20 years of hosting (exect on my own servers/VPS servers, where a higher level can be used to greatly enhance some forms of security), but basically, this is a moot point that doesn't need to even be mentioned, let alone discussed.

    Quote Originally Posted by mc12345678 View Post
    and if you decide to place the contents of your store in a sub-directory from public_html you will forever be forced to use some other process to ensure that customers arrive at that location as the "root" of your store.
    NOT SO! I've yet to find a host where this isn't possible - Not only is it possible, but in *many* situations it is actually *desired*.


    Quote Originally Posted by mc12345678 View Post
    The thing is here. The OP had previously hosted the site with this sub-directory is the domain,
    This is pretty standard practice.

    Quote Originally Posted by mc12345678 View Post
    continues to want that and the site is not supporting that arrangement and the host has not provided a solution that complies with that arrangement. So... from the OPs perspective the document root has always been public_html with the site provided from catalog as the first directory off of public_html...
    What can I say? The OP has simply never had the site correctly set up - Well, he *has*, but only if he ever uses a single domain/site for the given host.

    Quote Originally Posted by mc12345678 View Post
    As DrByte said, it worked before the host made a change and it was working in such a way that catalog was displayed in the browser as a sub-directory off of the domain name. If you are stating/giving a solution that will alter the uri that has been in existence and used for the site, the effects of such modification both "good" and bad should be explained to the OP. Otherwise, as has been provided give a solution that restores the web-facing operation back to what it was.
    It is not my point to discuss any of the possible workarounds. I have already acknowledged that they exist. Let's leave it at that.

    Quote Originally Posted by mc12345678 View Post
    Like I said, I didn't see how the document root could be used to necessarily force a visitor onto the web-facing catalog directory by way of entering just the domain name. And no such solution was described as it isn't possible without some form of rewrite/redirect based on the above two posts.
    You are correct, but this is still a 'workaround' of an iincorrect document_root.

    As it stands (for the OP) - his URL for his zencart site is always going to show /catalog/ - In some cases this is fine, if there are other files/software (eg, Wordpress) exists in the document root, and the zenstore is a subset of the wordpress site), but his zenstore *isn't* a subset of any other software - He has *nothing* in the document root (other than the .htaccess file to force a *needless* redirect to a folder, that *should* be the document root.

    Quote Originally Posted by mc12345678 View Post
    I personally agree that a sub-directory in the uri (DIR_WS_CATALOG) is generally unnecessary if not in some ways harmful, but that is associated with a new install not an existing one of a relatively new store. Making a change at that point in the operation is something that should be planned not just done because a couple of people made it sound cool. :)
    As I stated, I will never understand why people make it hard for themselves, and I strongly disagree with your statements that imply it can't be done *right*.

    Lets look at a couple of examples... assume a person has a single hosting account with two different zencart stores - Based on what you are saying (and with full acknowledgement that a folder *above* public_html can't be used, then what will the folder structure be?

    There are three possibilities:

    1)
    /public_html/zenstore#1/
    /public_html/zenstore#1/zenstore#2

    In this scenario. and based on the claim that doc_root can''t be changed, there will need to be a .htaccess redirect placed in public_html for zenstore#2 and zenstore#2 will need the WS defines for the folder/
    The URL for zenstore# look quites unprofessional - being in a folder of the domainname. IOW, a 'workaround' is needed.

    2)
    /public_html/zenstore#1/
    /public_html/zenstore#2/

    This is very similar to scenario one, but now *both* stores/domains need a 'workaround' and the folder showing in the URL - There is effectively no 'root' for either domain.

    3)
    Same as #2
    /public_html/zenstore#1/
    /public_html/zenstore#2/

    ... But *this* time, we have set the document_root for zenstore#1 to be /plublic_html/zenstore#1 and the document_root of zenstore#2 to be /public_html/zenstore#2

    In this scenario, we don't need any .htaccess redirects in /public_html/ - From the server perspective, this folder doesn't even exist. We also don't need to include zenstore#x in any of the zencart server defines, nor do we need to set any zencart WS defines to refer to any folders. THese will all simply be the default "/"

    The only place where zenstore#x will be defined in the zenconfig file, will be in the FS defines.

    It really couldn't get any simpler than that.

    Even with just a *single* store in a folder located off of the public_html/ folder - as is the OP's case (/catalog/ ) - The /catalog/ is superfluous and unprofessional if shown/used in the URL. It smacks of *amateurism*.

    And if *you* think that this *professional* scenario can't be achieved "due to ISP/host limitations, then please contact me via PM, because I have a *lot* to teach you about host configurations.

    FYI,
    http://www.radiosailingshop.com.au/
    http://girlbysea.com.au

    Are two *independent* zencart sites for a customer with a single hosting account with a file structure
    /public_html/radiosailing/
    /public_html/girlbysea/

    There are no redirects in place, no /folders/ in the zencart config files (other than the FS defines) - You can go to either site, and no 'folders' are shown in the URL (one would expect http/domainname1.com/radiosailing/ and http://domainname#2/girlbysea/ unless a rewrite were used. The 'magic' that makes this work, with no redirects, and no /folders/ shown is simply because the document_root for the radiosailing domain is set to /public_html/radiosailing/ and the document_root for girlbysea is set to /public_html/girlbysea/

    I have yet to find a host where this configuration isn't possible. I/we even have a policy these days that all sites we setup/host actually use a document_root one folder *deeper* than /public_html/ - It makes no difference to the webserver (which will always use the correct 'root' for any given domain for any given customer). but it makes a *huge* difference in regards to the file structure and ease of adding other domains for the same customer account.

    Hopefully, this all makes sense to you (I suspect it doesn't though), else you wouldn't be making statements that imply that this isn't possible with all hosts. It *is* possible, and where one icould have been difficult, the cPanel (that most hosts use these days) makes it trivial.

    BTW, I *hate* cPanel - It allows people without a clue the ability to set up their own 'hosting business'. (I'm not suggesting that you are one of these people) but without Cpanel (or should I say WHM) most hosting providers these days wouldn't even exist.

    Cheers
    RodG

  10. #20
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Issue with EV SSL renewal

    Quote Originally Posted by RodG View Post
    Agreed, but it is *very rare* that anyone would need a doc_root at a level *higher* than public_html - I've never found a need for this in over 20 years of hosting (exect on my own servers/VPS servers, where a higher level can be used to greatly enhance some forms of security), but basically, this is a moot point that doesn't need to even be mentioned, let alone discussed.



    NOT SO! I've yet to find a host where this isn't possible - Not only is it possible, but in *many* situations it is actually *desired*.




    This is pretty standard practice.



    What can I say? The OP has simply never had the site correctly set up - Well, he *has*, but only if he ever uses a single domain/site for the given host.



    It is not my point to discuss any of the possible workarounds. I have already acknowledged that they exist. Let's leave it at that.



    You are correct, but this is still a 'workaround' of an iincorrect document_root.

    As it stands (for the OP) - his URL for his zencart site is always going to show /catalog/ - In some cases this is fine, if there are other files/software (eg, Wordpress) exists in the document root, and the zenstore is a subset of the wordpress site), but his zenstore *isn't* a subset of any other software - He has *nothing* in the document root (other than the .htaccess file to force a *needless* redirect to a folder, that *should* be the document root.



    As I stated, I will never understand why people make it hard for themselves, and I strongly disagree with your statements that imply it can't be done *right*.

    Lets look at a couple of examples... assume a person has a single hosting account with two different zencart stores - Based on what you are saying (and with full acknowledgement that a folder *above* public_html can't be used, then what will the folder structure be?

    There are three possibilities:

    1)
    /public_html/zenstore#1/
    /public_html/zenstore#1/zenstore#2

    In this scenario. and based on the claim that doc_root can''t be changed, there will need to be a .htaccess redirect placed in public_html for zenstore#2 and zenstore#2 will need the WS defines for the folder/
    The URL for zenstore# look quites unprofessional - being in a folder of the domainname. IOW, a 'workaround' is needed.

    2)
    /public_html/zenstore#1/
    /public_html/zenstore#2/

    This is very similar to scenario one, but now *both* stores/domains need a 'workaround' and the folder showing in the URL - There is effectively no 'root' for either domain.

    3)
    Same as #2
    /public_html/zenstore#1/
    /public_html/zenstore#2/

    ... But *this* time, we have set the document_root for zenstore#1 to be /plublic_html/zenstore#1 and the document_root of zenstore#2 to be /public_html/zenstore#2

    In this scenario, we don't need any .htaccess redirects in /public_html/ - From the server perspective, this folder doesn't even exist. We also don't need to include zenstore#x in any of the zencart server defines, nor do we need to set any zencart WS defines to refer to any folders. THese will all simply be the default "/"

    The only place where zenstore#x will be defined in the zenconfig file, will be in the FS defines.

    It really couldn't get any simpler than that.

    Even with just a *single* store in a folder located off of the public_html/ folder - as is the OP's case (/catalog/ ) - The /catalog/ is superfluous and unprofessional if shown/used in the URL. It smacks of *amateurism*.

    And if *you* think that this *professional* scenario can't be achieved "due to ISP/host limitations, then please contact me via PM, because I have a *lot* to teach you about host configurations.

    FYI,
    http://www.radiosailingshop.com.au/
    http://girlbysea.com.au

    Are two *independent* zencart sites for a customer with a single hosting account with a file structure
    /public_html/radiosailing/
    /public_html/girlbysea/

    There are no redirects in place, no /folders/ in the zencart config files (other than the FS defines) - You can go to either site, and no 'folders' are shown in the URL (one would expect http/domainname1.com/radiosailing/ and http://domainname#2/girlbysea/ unless a rewrite were used. The 'magic' that makes this work, with no redirects, and no /folders/ shown is simply because the document_root for the radiosailing domain is set to /public_html/radiosailing/ and the document_root for girlbysea is set to /public_html/girlbysea/

    I have yet to find a host where this configuration isn't possible. I/we even have a policy these days that all sites we setup/host actually use a document_root one folder *deeper* than /public_html/ - It makes no difference to the webserver (which will always use the correct 'root' for any given domain for any given customer). but it makes a *huge* difference in regards to the file structure and ease of adding other domains for the same customer account.

    Hopefully, this all makes sense to you (I suspect it doesn't though), else you wouldn't be making statements that imply that this isn't possible with all hosts. It *is* possible, and where one icould have been difficult, the cPanel (that most hosts use these days) makes it trivial.

    BTW, I *hate* cPanel - It allows people without a clue the ability to set up their own 'hosting business'. (I'm not suggesting that you are one of these people) but without Cpanel (or should I say WHM) most hosting providers these days wouldn't even exist.

    Cheers
    RodG

    If I were to properly split through the above, this might be "easier" but, I'm lazy. :)

    I have not personally come across a server that can not permit assignment of a document root to anything other than public_html; however, in assisting other to *initially* setup their system I have been told that they would have to obtain a second domain in order to have any domain made accessible from deeper than the main public_html... I personally use one if not more levels deeper than public_html for my sites/test sites. That a site *can not* is really all/more about *will not* because it doesn't fit their business model or whatever other dumb @$$ reason that they have come up with to not make it amenable to the customer/store owner.

    My issue here is that in none of the examples provided did a change in document root resolve the uri to what it has been before the SSL was installed and there has been no discussion of the impact of a change of the web-facing uri with regards to search engines or ranking.. Somewhat comical to bring to the discussion is the "professionalism" of the uri that *tongue in cheek* supposedly makes no difference to customers because they don't pay attention to them anyways, and could be anything. (Little bit of a continuous discussion about unrelated topic of URI rewriters and the web site path that with great surprise has dwindled as of recent. ;) )

    Okay, but seriously, like I said, I agree that there is no business reason for a domain name that solely supports a single "subject" (store) should use a web-facing subdirectory as the base of the store. At the very least changing the document base for a store that has already been in operation to remove the web-facing sub-directory will break links that are/have been stored by visitors even those that only saved the store's home-page... And to prevent/correct that specific issue if one wished to maintain that level of reachability at least for a period of time would require a rewrite rule (again) which has also been suggested as unfavorable/unnecessary. Yes, of course could make the change and then let the chips fall where they may.. But that should be a conscious decision not just something willy nilly done.

    Further unfortunately, it seems that perhaps a similar rewrite/redirect previously existed, but wasn't known to exist and when touching the site the host modified something to accomplish what we all would suggest (for a new site or to plan for as a transition) which is to place the site/software at the root of the domain name regardless of how many sub-directories exist on the "back-end". Regardless they changed the operation and have falsely accused ZC as being the fault.

    OP, choose what you would like. Right now your what, at least 3 days without guests arriving at your store by typing in the domain name... How's traffic been? Reduced? Sales? Any change? Are you wanting operation as it was and setting aside time to address the other things that we're here talking about? I would suggest doing something, either move the document root, or move the store from the sub-directory to the document root, or redirect visitors to the sub-directory. Right now as you discovered, entering just the domain-name gives a 403 forbidden page which means off to the next site if/when provided.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v138a Possible Scripting Issue with SSL
    By CobraPlant in forum General Questions
    Replies: 8
    Last Post: 6 Jan 2012, 03:18 AM
  2. Issue with search after enabling SSL
    By matchlock in forum Basic Configuration
    Replies: 0
    Last Post: 24 Aug 2011, 05:34 AM
  3. SSL Issue with jQuery
    By contrive.it in forum General Questions
    Replies: 3
    Last Post: 23 Aug 2011, 07:13 AM
  4. SSL only partially encrypted after certificate renewal
    By styledata in forum Basic Configuration
    Replies: 7
    Last Post: 11 Aug 2010, 05:38 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg