Home  5  Books  5  GBEzine  5  News  5  HelpDesk  5  Register  5  GreenBuilding.co.uk
Not signed in (Sign In)

Categories



Green Building Bible, Fourth Edition
Green Building Bible, fourth edition (both books)
These two books are the perfect starting place to help you get to grips with one of the most vitally important aspects of our society - our homes and living environment.

PLEASE NOTE: A download link for Volume 1 will be sent to you by email and Volume 2 will be sent to you by post as a book.

Buy individually or both books together. Delivery is free!


powered by Surfing Waves




Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.

Welcome to new Forum Visitors
Join the forum now and benefit from discussions with thousands of other green building fans and discounts on Green Building Press publications: Apply now.




  1.  
    I get that message on the web address line for this site. The (i)nformation says don't enter personal details or passwords, which I don't, but is there anything else to be concerned about? Will e-mail Keith.
    • CommentAuthorEd Davies
    • CommentTimeAug 2nd 2020
     
    It's just because the site uses HTTP (un-encrypted) rather than HTTPS (encrypted). Ideally it'd use HTTPS, which with Let's Encrypt, is now a lot easier than it used to be but, even so, I can imagine Keith not being bothered.

    Just don't use the same password here as anywhere else, but everybody's using different passwords everywhere, aren't they?
  2.  
    Thanks Ed!
  3.  
    Posted By: Ed DaviesIt's just because the site uses HTTP (un-encrypted) rather than HTTPS (encrypted). Ideally it'd use HTTPS, which with Let's Encrypt, is now a lot easier than it used to be but, even so, I can imagine Keith not being bothered.

    Just don't use the same password here as anywhere else, but everybody's using different passwords everywhere, aren't they?


    Haha, you'd hope so. You'd have to be an idiot to use the same password for multiple sites.


    *quietly changes password*
    • CommentAuthorGBP-Keith
    • CommentTimeJun 13th 2021
     
    Hi guys. Can anyone suggest any code that I could add to the page or somewhere in the filesystem that will override the ‘not secure’ message that google displays. My brain is fried and cannot for the life of me think how to sort it.

    Thnks for any suggestions.
    •  
      CommentAuthordjh
    • CommentTimeJun 13th 2021 edited
     
    As Ed says, you need to run HTTPS, which also means you need a certificate. There's some explanation at https://letsencrypt.org/getting-started/

    I think for one or more of us to be able to help, we'd need to know a lot more about how the system is installed, who your ISP is etc etc.
    •  
      CommentAuthorDamonHD
    • CommentTimeJun 13th 2021
     
    Hi,

    The easiest thing may to be go behind a service such as Cloudflare's, which can be free, but then all access by users will be https.

    I *do not* agree with strong-arming people to use https for informational, non-political, non-controverisal sites like this, and continue to allow mine to be visited by http, but have enabled https c/o Cloudflare or Let's Encrypt.

    Rgds

    Damon
    • CommentAuthorMike1
    • CommentTimeJun 13th 2021 edited
     
    <blockquote>Can anyone suggest any code that I could add to the page or somewhere in the filesystem that will override the ‘not secure’ message that google displays..</blockquote>

    The problem is that your 'secure' https pages actually do in reality include non-secure resources from regular http URIs; as only part of the page content is secure the warning is generated. It should be fairly simple to correct that.

    For example the main page (https://www.greenbuildingforum.co.uk/newforum/) pulls through all these elements from insecure http pages:

    http://www.greenbuildingpress.co.uk/images/shining_star.jpg
    http://www.greenbuildingpress.co.uk/images/small/gbb_fourth_both_covers_170.jpg
    http://www.greenbuildingpress.co.uk/pagegraphics/spacer10x10.gif
    http://www.newbuilder.co.uk/pagegraphics/nav_buzz2.gif
    http://www.greenbuildingpress.co.uk/pagegraphics/top_curve_yellow.gif
    http://www.greenbuildingpress.co.uk/pagegraphics/top_curve_yellow2.gif

    If you move those resources to https locations, that should fix that problem. For example, literally move the image "shining_star.jpg" on the server
    from
    http://www.greenbuildingpress.co.uk/images/shining_star.jpg
    to
    https://www.greenbuildingforum.co.uk/images/shining_star.jpg
    and update the link accordingly in the bulletin board software

    Similarly, the secure main page is linking to and displaying content summaries from non https threads, such as this one you're reading now at
    http://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=16677&page=1
    which needs to be switched to
    https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=16677&page=1
    That page does already exist; you need to add code to the server to automatically deliver the https version (possibly in the .htaccess file, but it depends on your setup)

    That page also contains a link to the the insecure feed
    http://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=16677&page=1&Feed=RSS2
    which should be switched to
    https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=16677&page=1&Feed=RSS2
    which again already exists, but isn't being served, presumably due to the absence of the above mentioned server code.

    Making that server change should also take care of uploaded attachments, which can already be accessed by https links, but are currently being served as http. For example
    http://www.greenbuildingforum.co.uk/newforum/extensions/InlineImages/image.php?AttachmentID=7806
    https://www.greenbuildingforum.co.uk/newforum/extensions/InlineImages/image.php?AttachmentID=7806

    Standard links to regular http external pages - such as the link to http://www.greenbuilding.co.uk/ - shouldn't be a problem, though in that case I guess you may want to move to https://www.greenbuilding.co.uk/ anyway.

    The Let's Encrypt certificate you already have is fine, and you don't need Cloudflare.

    BTW, although I run a couple of https websites, I'm not an 'expert', so may have forgotten something...
    • CommentAuthorEd Davies
    • CommentTimeJun 13th 2021
     
    What Mike1 says.

    However, it can made a little less of a hassle if the forum software will allow you to use relative URLs. E.g., instead of referencing “https://www.greenbuildingforum.co.uk/images/shining_star.jpg” just reference “/images/shining_star.jpg”. People who access the referencing page using HTTP will then fetch the image via HTTP, people who access it via HTTPS will do so via HTTPS.

    Actually, greenbuildingpress.co.uk already serves HTTPS just fine (e.g., https://www.greenbuildingpress.co.uk/images/shining_star.jpg) so there's no need to copy the image to greenbuildingforum.co.uk. A relative URL without the scheme but with the authority [¹] “//www.greenbuildingpress.co.uk/images/shining_star.jpg” is slightly unusual but should work.

    In general, hunt down references to “http” (any mixture of case) and either get rid of them or replace them with “https”.

    [¹] the “domain” part.
    • CommentAuthorGBP-Keith
    • CommentTimeJun 14th 2021
     
    Oh wow thank you all for this. i’ll read through and digest over the next 24 hours and make some sort of logical reply and action plan to get this sorted. the reason I’ve been so tardy at fixing this is because, like Damon I think it is a bit heavy handed but sadly I think it is all beginning to have an effect on traffic to the sites so time to comply I think. i find that trying to Keep up with the ever-changing technology is a real drain on the psyche.
    •  
      CommentAuthordjh
    • CommentTimeJun 14th 2021 edited
     
    Posted By: GBP-Keithi find that trying to Keep up with the ever-changing technology is a real drain on the psyche.

    You and me both. :bigsmile:
    • CommentAuthorSimonD
    • CommentTimeJun 14th 2021
     
    GBP-Keith, If the website is administered through C-panel you can now simply force redirect all pages to https, including any sub-domains. It's usually a 5 minute job. Happy to assist if you need any further info.
    • CommentAuthorGBP-Keith
    • CommentTimeJun 15th 2021
     
    Thanks Simon. i’ll take a look at the cpanel And/or ask the hosts.
    • CommentAuthorGBP-Keith
    • CommentTimeJun 17th 2021
     
    Ah, mixed results so far. I managed (using Simon’s suggestion) to get rid of the not secure message but then I couldn't log in with the site then telling me the log In form was not secure and even though I accepted, it failed to log me in so I still need to do some more homework.

    Thanks for the feedback so far guys
    • CommentAuthorGBP-Keith
    • CommentTimeJun 17th 2021
     
    It looks like the system is now now allowing anyone to sign in. You can try adding comments to a discussion and adding your user name etc For each post for the time being.
    • CommentAuthorSimonD
    • CommentTimeJun 17th 2021
     
    I've just had a look over the page source. There are a couple of things you could look at that might be causing problems.

    The first is that in the sign in page, the form points to an absolute http url:

    form id="frmSignIn" method="post" action="http://www.greenbuildingforum.co.uk/newforum/people.php"><input type="hidden" name="ReturnUrl" value="http%3A%2F%2Fwww.greenbuildingforum.co.uk%2Fnewforum%2Fcomments.php%3FDiscussionID%3D16677" />

    I don't know whether the vanilla forum writes the urls dynamically as absolute, whether there's a mixture of static and dynamic code on the page that writes urls as absolute, or whether when you have created pages during the setup the systems sets the urls in this way. It may be worth checking if the configuration console for the forum has any options for writing urls, or alternatively check pages you've created for the forum to see if you can modify the urls there.

    I'm not familiar with the Vanilla forum but the current version is now quite old at version 1.0.3 (2015) so trying to get support for this version may be difficult. It's also unlikey to be compatible with current standards and less secure. For example, when I look at the page source I receive several warnings that PHPSESSID will soon be treated as a cross-site cookie which means if visitors set their browsers to block these it's going to break functions of the forum.

    You may well be able to sort this ssl problem but although probably a pita, it may be the time to seriously consider upgrading to the latest stable version of vanilla?
    • CommentAuthorMike1
    • CommentTimeJun 17th 2021 edited
     
    Unless you've wound back your changes, there are still various resources that are loading from http:

    http://www.greenbuildingpress.co.uk/images/shining_star.jpg
    http://www.greenbuildingpress.co.uk/images/small/gbb_fourth_both_covers_170.jpg
    http://www.greenbuildingforum.co.uk/newforum/uploads/AccountPictures/293cefbfdef5bd9949cddb41ea3e49d5.jpg
    etc.

    Like Simon, I'd also suggest updating to the latest Vanilla; older versions do have major security vulnerabilities. Another factor is that sooner or later Krystal are likely to stop providing the PHP version that Vanilla 1 requires; my hosts already have.

    Not sure how much headroom you have on your hosting package, but I'd really want to restore a backup of this forum to a test site on a temporary subdomain (eg https://testxyz.greenbuildingforum.co.uk) and upgrade that, making notes as you go, to verify everything works OK / resolve any outstanding issues, before upgrading for real (and then only with a backup, just in case).

    In fact, from a quick scan of Vanilla's documentation, it seems that they have a tool that can port Vanilla 1 data into a new installation of Vanilla 3, which should make life much easier.
    https://success.vanillaforums.com/kb/articles/149-supported-platforms
Add your comments

    Username Password
  • Format comments as
 
   
The Ecobuilding Buzz
Site Map    |   Home    |   View Cart    |   Pressroom   |   Business   |   Links   
Logout    

© Green Building Press