Amazon hosting cant install .Ca-bundle - amazon-web-services

Iv been using chrome as my main broswer for a while but have deciced to start using firefox to my surprise to see that my domain has an ssl issue.
I narrowed down the problem to my Amazon ec2 not having the .ca-bundle installed from when i set up my ssl.
thankfully i still have the email where i got my domain info and i have the .ca-bundle
How ever im not sure where to upload this to.
iv looked around on amazons faq page and its very confusing.
If anyone has some advice. let me know.

I managed to retrace my steps.
In my case i had to access my directory
/opt/bitnami/apache2/conf/
place the file www_example_com.ca-bundle in this directory
then goto
/opt/bitnami/apache2/conf/bitnami
Sudo nano bitnami.conf
And add the following line underneath my already set ssl and keys
SSLCertificateChainFile "/opt/bitnami/apache2/conf/www_example_com.ca-bundle"
I hope this helps anyone in the future.

Related

.Owl Carousel issue after Migrating Word press from localhost to AWS EC2

I'm new to all things Website building/customising, complete beginner learning on the go (literally YouTube and google are a very good friend of mine at them moment)
I have just finished migration from the Wamp localhost to Bitnami WordPress (AWS EC2) using the All-in-one Migration plugin, I am using the Electro (child) theme, however my carousel sections are not working with AWS version of the site, upon inspecting the elements of both the localhost and the AWS site it appears a "segment" is missing I have taken screenshot and highlighted the segment that doesn't appear on the AWS site,
If somebody on here could advise me on the best way to solve this I would be so grateful, as I am trying to google the answers but I haven't exactly found the answer (probably due to my website knowledge)
Thank you in advance
Ashley
Localhost site with the missing line

AWS Lightsail terminal blocked

I installed WordPress on AWS Lightsail following aws’ video tutorial. Generated a static IP and watched the WP site running on the browser. To log into WP I have the user and have to retrieve the password using the terminal. To launch it I clicked the “Connect with SSH” button and a terminal pop-out. Unfortunately the terminal is blocked/freezed and I can’t write any command nor click into it. Restarted the instance and tried 4 browsers (IE, Chrome, Firefox, Safari) and nothing works.
I completely deleted the instance and created a new one but have the same problem.
Anyone know what’s happening and how to make the terminal work? Is there other way to get the wP password I need? Thanks.
The browser terminal interface can be problematic. It is better to use an SSH client (such as PuTTY). You will need the private key to do this (see instructions if you don't have this). The official bitnami instructions can be found here
https://docs.bitnami.com/aws/how-to/get-started-wordpress-aws-marketplace-intermediate/
If you don't have the WordPress password, these can be found in the initial installation logs, or in /home/bitnami/bitnami_credientials. Refer to Step 4 of the instructions
https://docs.bitnami.com/aws/get-started-marketplace/
Hope this helps.

Amazon AWS Service Error

I am currently trying to set up a Virtual Machine and a Database Server for my website to launch off of. I decided to go with Amazon's AWS.
I have beeing working through This Tutorial and am at Part 3 now.
I got to the point where I started the Apache Web Server and went to my local DNS name in my browser, and successfully saw the Test Page.
I proceeded forward with Downloading "Drupal" and got to the section where it says "Configure Drupal". I am now trying to load my local DNS name in my browser again, only to get a 500 Server Error.
I'm not sure what could've went wrong, I only entered the commands in the tutorial for the whole section on "Install Drupal".
Thank you
EDIT: Also, what exactly does Drupal do? And do I need to use it?
Drupal is a CMS system, and you don't have to use it. It is only being used to provide an example for a website. Instead of installing Drupal, you can install your own site on the server if you prefer or even something like Wordpress if you're more familiar with that.
However, if you do want to follow the example your best bet for discovering the problem is to look into what the exact error is. You should be able to find more information about that in the log files located in /var/log/httpd. The error log in there should show you more details about what failed.

How to put a website online

As i have installed WAMP developer Pro recently and i have solved everything that it needed but the main problem is coming which is most important , i am unable to put my website online as i have made a url from WAMP developer and i have putted my all website file in it it is working fine in my as i type www.radharamnji.com it comes but other can not see it so please tell me how i can make it online so everyone can see it.
here is a pic of WAMP developer
If You Have A Website and domain You Have To Upload All Of Your Files To Host Public_html Folder.
If You Want to change your computer to a server you have to buy a valid IP and set dns settings and ...
If You Upload Your Files On The Internet YOu Have Too Change Your Adrress to Relative.
For Example Change The Adrress Of Picture From (http:/localhost/img/img1.jpg) To (img/img1.jpg).
The WAMP you are using has a guide for this located on its site's /howto section: "Enabling Online and Internet Access of Websites...".
Chances are:
Your Windows Firewall (and also anti-virus s/w such as McAfee) are blocking incoming port 80 and 443 TCP connections, and the httpd.exe process.
Your Router does not have any port-forwarding set up for WAN:80 to LAN:80.

Mezzanine filebrowser deploy

I have installed mezzanine and I have tried to use the admin interface to upload some pictures to media library. I didn't have any problem on dev server (localhost) but on the deployment server I get the following:
NetworkError: 500 INTERNAL SERVER ERROR - http://mydomain/asset_proxy/?u=http://mydomain/static/filebrowser/uploadify/uploadify.swf
I've tried to find a solution on the internet without any success. All the topics related to this problem are ambiguous and didn't help me at all.
It seems there might be a security issue when the server tries to load the flash object (uploadify.swf) but I don't really get it.
I'd be very happy to understand where the problem comes from as much as how to fix it.
Thanks a lot!
If anyone runs into this problem in the future, it looks like the webserver does not automatically have permissions to write to the media directory in your mezzanine project.
You can simply do something like:
chmod -R 777 /YOUR_PROJECT/static/media
That should clear up your issue.