Hello guys, i am facing some problems in hosting my site. I am having problem in enabling ssl certificate.Today i shall explain everything.I am searching for this problem for 2 months.I am unable to find a perfect solution.
First i won a vps from Post4VPS giveaway and i hosted a wordpress site on it.I used letsencrypt for a ssl certificate.It was working well.After a month on the next giveaway i won a vps9 and i transferred my website from previous host to new one.I tried enabling ssl certificate but it shows " error too many redirects " i searched google and found different solutions i tried all of those but nothing works.I waited one month and applied for vps1 again and got my previous vps with same ip.I re-transferred my website and enabled ssl.it was showing too many redirects.I updated all urls with the help of a wordpress tool ( wp-cli ).After updating i checked site was working well.I thought that i found the problem and i should withdraw my vps1 request and use older vps9.After withdrawing app i tried same method on vps9 and tried same method but still it was showing " error too many redirects ".I searched google and found some methods.I tried all of those methods but nothing worked.I thought that may be the problem is in host.This month i re-applied for vps1 and found a vps1 but with different ip address.I transferred my website on new vps and tried enabling ssl but still it is showing error.I tried all of the methods one by one but nothing works.After thinking a lot i thought that it may be a problem in my backup.I re-installed vps OS and installed a new wordpress site and enabled letsencrypt ssl but still showing the same error.It was my last effort.
So now i am asking here if someone know the solution.
Host OS : Ubuntu 18.0 ( Apache2, PHP7.0, MySQL Server, PhpmyAdmin ) also i have tried Debian
SSL Provider : LetsEncrypt
I am using CloudFlare for pointing domain with VPS.
First i won a vps from Post4VPS giveaway and i hosted a wordpress site on it.I used letsencrypt for a ssl certificate.It was working well.After a month on the next giveaway i won a vps9 and i transferred my website from previous host to new one.I tried enabling ssl certificate but it shows " error too many redirects " i searched google and found different solutions i tried all of those but nothing works.I waited one month and applied for vps1 again and got my previous vps with same ip.I re-transferred my website and enabled ssl.it was showing too many redirects.I updated all urls with the help of a wordpress tool ( wp-cli ).After updating i checked site was working well.I thought that i found the problem and i should withdraw my vps1 request and use older vps9.After withdrawing app i tried same method on vps9 and tried same method but still it was showing " error too many redirects ".I searched google and found some methods.I tried all of those methods but nothing worked.I thought that may be the problem is in host.This month i re-applied for vps1 and found a vps1 but with different ip address.I transferred my website on new vps and tried enabling ssl but still it is showing error.I tried all of the methods one by one but nothing works.After thinking a lot i thought that it may be a problem in my backup.I re-installed vps OS and installed a new wordpress site and enabled letsencrypt ssl but still showing the same error.It was my last effort.
So now i am asking here if someone know the solution.
Host OS : Ubuntu 18.0 ( Apache2, PHP7.0, MySQL Server, PhpmyAdmin ) also i have tried Debian
SSL Provider : LetsEncrypt
I am using CloudFlare for pointing domain with VPS.
hi all iam back with new resource
usage of this script just take m4 weapon for short distance vehicles or players aim then press fire to drop rpgs!
for long distance use sniper weapon aim then fire!
below is the video hope you like it !
usage of this script just take m4 weapon for short distance vehicles or players aim then press fire to drop rpgs!
for long distance use sniper weapon aim then fire!
below is the video hope you like it !
Hello everyone
I switched to Manjaro Linux as my main OS on my desktop computer. A few days passed so far and I haven't had any real issues. Today however one of my favorite online podcasts has been released. Their offline release is always split up into multiple files with extensions like .001, .002 and so on (depending on the size). That's where the first problem arised.
Before switching to Linux I have been using Windows and always had 7Zip installed. Here is where 7Zip played a big role. The 7Zip archive manager handles .001 and etc. files very well. So I could always use it to simply "extract" the full file (extract in quotes as 7Zip probably just joins them instead of really extracting them). Tried the same on Linux now but it seems the graphical archive manager doesn't support this. In fact it didn't even recognize the extensions. Only the first file ending with .001 was recognized by my video player MPV. What good is it if you can play only one half of the file? Nothing, indeed.
So I did some research and by nature Linux comes with a very handy and small tool called "cat". Most of us have heard about it already and have used it during a lot of tasks. And once again this handy tool has come to help. You can easily join split files with extensions like .001 to .XXX (undefined amount of parts) with a single cat command in the terminal.
How to join split files with cat:
0. Open up a terminal if you're using a graphical environment.
1. Navigate to the place where the split files are stored using the cd command (e.g. cd /home/username/Downloads).
2. Execute the following command:
Example:
Alternatives are:
Example:
Or
Example:
For the second method it just really depends on how many parts the file has. So you have to include all parts into the command.
3. Now wait a little while. Depending on the overall file size it just takes time to join the size (also pretty much depends on the power of your computer and storage speed).
4. Success
. You have the joined file in the same directory where the split files are. You can check the file and if everything is complete you can delete the split files.
I'm aware that this is a very simple guide and probably quite unnecessary but this is one of the things that you might run into when switching main OSs. Just documenting it for the future. And in my humble opinion this is quite cool because you don't even need any additional software or anything else. cat is installed in 100% of all Linux distributions (no matter whether server or desktop version).
That's it folks.
I switched to Manjaro Linux as my main OS on my desktop computer. A few days passed so far and I haven't had any real issues. Today however one of my favorite online podcasts has been released. Their offline release is always split up into multiple files with extensions like .001, .002 and so on (depending on the size). That's where the first problem arised.
Before switching to Linux I have been using Windows and always had 7Zip installed. Here is where 7Zip played a big role. The 7Zip archive manager handles .001 and etc. files very well. So I could always use it to simply "extract" the full file (extract in quotes as 7Zip probably just joins them instead of really extracting them). Tried the same on Linux now but it seems the graphical archive manager doesn't support this. In fact it didn't even recognize the extensions. Only the first file ending with .001 was recognized by my video player MPV. What good is it if you can play only one half of the file? Nothing, indeed.
So I did some research and by nature Linux comes with a very handy and small tool called "cat". Most of us have heard about it already and have used it during a lot of tasks. And once again this handy tool has come to help. You can easily join split files with extensions like .001 to .XXX (undefined amount of parts) with a single cat command in the terminal.
How to join split files with cat:
0. Open up a terminal if you're using a graphical environment.
1. Navigate to the place where the split files are stored using the cd command (e.g. cd /home/username/Downloads).
2. Execute the following command:
Code:
cat filename.ext.* > filename.extExample:
Code:
cat online-podcast-recording.mkv.* > online-podcast-recording.mkvAlternatives are:
Code:
cat filename.ext.001 filename.ext.002 filename.ext.XXX > filename.extExample:
Code:
cat online-podcast-recording.mkv.001 online-podcast-recording.mkv.002 > online-podcast-recording.mkvOr
Code:
cat filename.ext.[0-9][0-9][0-9] > filename.extExample:
Code:
cat online-podcast-recording.mkv.[0-9][0-9][0-9] > online-podcast-recording.mkvFor the second method it just really depends on how many parts the file has. So you have to include all parts into the command.
3. Now wait a little while. Depending on the overall file size it just takes time to join the size (also pretty much depends on the power of your computer and storage speed).
4. Success
. You have the joined file in the same directory where the split files are. You can check the file and if everything is complete you can delete the split files.I'm aware that this is a very simple guide and probably quite unnecessary but this is one of the things that you might run into when switching main OSs. Just documenting it for the future. And in my humble opinion this is quite cool because you don't even need any additional software or anything else. cat is installed in 100% of all Linux distributions (no matter whether server or desktop version).
That's it folks.
I've been eyeing Contabo for a long time, and finally did the deed today. I put in an order for a Contabo VPS. I probably can't afford it, but when I was in the UAE I got a prepaid debit card which I use with PayPal for online purchases, and it was winking at me today.
Here are the specs for Contabo. Note that the 5.5 US$/month is when one takes it for a year. Otherwise it's around 6 US$/month. Still VERY CHEAP for the specs one gets. Gigarocket is using a Contabo server, so I've come to really like Contabo through them. Speed at Gigarocket has been fantastic, as well as reliable performance. So hope I'll be getting the same.
Here are some important links for checking Contabo out:
Contabo VPS Plans
Contabo FAQs
Contabo TOS
Here are the specs for the order I put in:
Source: https://contabo.com/?show=vps
Here are the specs for Contabo. Note that the 5.5 US$/month is when one takes it for a year. Otherwise it's around 6 US$/month. Still VERY CHEAP for the specs one gets. Gigarocket is using a Contabo server, so I've come to really like Contabo through them. Speed at Gigarocket has been fantastic, as well as reliable performance. So hope I'll be getting the same.
Here are some important links for checking Contabo out:
Contabo VPS Plans
Contabo FAQs
Contabo TOS
Here are the specs for the order I put in:
Quote:VPS S SSD
CPU: four cores
Intel® Xeon® E5-2620v3, E5-2630v4 or 4114 processor
8 GB RAM (guaranteed)
200 SSD GB disk space
Unlimited traffic
200 Mbit/s port
DDoS protection
Panel
VNC access
1 IP address included
/64 IPv6 network included
1 snapshot included
Source: https://contabo.com/?show=vps
GHIDRA is like a competitor to IDA Pro, that software you always keep reading about on blogs from security researchers. But it was developed for internal use by NSA.
We first came to know about it through the vault 7 leak at wikileaks.
Now NSA has just released it to the opensource community.
Whether you decide to stay away from it for the fear of backdoor or not is for you to figure out. But I hope you are aware that SELinux, which is a part of android and Linux was actually developed by them. That they probably have their paws in every pie.
here are the links.
https://ghidra-sre.org/
https://github.com/NationalSecurityAgency/ghidra
Enjoy !!
We first came to know about it through the vault 7 leak at wikileaks.
Now NSA has just released it to the opensource community.
Whether you decide to stay away from it for the fear of backdoor or not is for you to figure out. But I hope you are aware that SELinux, which is a part of android and Linux was actually developed by them. That they probably have their paws in every pie.
here are the links.
https://ghidra-sre.org/
https://github.com/NationalSecurityAgency/ghidra
Enjoy !!
Posted by: Manal - 03-09-2019, 02:37 PM - Forum: Cheap Providers
- No Replies
![[Image: AYK8bOD.png]](https://i.imgur.com/AYK8bOD.png)
Shadow Hosting | Affordable DDoS Protected Web Hosting Service | European Server - https://shadownethost.com
Welcome to Shadow Hosting! We're known for providing best DDoS protected servers in Europe(as of now). We provide web hosting in Germany, France & UK. However, we've recently added a location to our list as we're expanding more! Apart from free & paid web hosting, Shadow Hosting now provides web hosting in Luxembourg too!
Luxembourg is a country located in Europe, sandwiched between Belgium, France, and Germany. With Luxembourg, you can easily reach your European or nearby continent with our server with lower latency. But don't worry! We're fast for countries outside of Europe too.
About us -
Shadow Hosting, a child company of Shadow Network. Shadow Network is a multi-sector based IT company. We provide web development, cyber security intelligence, web hosting, and many more similar service. Shadow Hosting is known in the game server SA:MP market for best web hosting and DDoS protected VPS Hosting provider. Extending from the gaming sector, we've decided to start letting commercial sectors into our highly professional space.
Why Us? -
Payment - Unlike other hosting services, we don't charge you unless you authorize us to do so! For example, if you have linked your card into our system, we would not charge you unless you authorize us to do so that you can pay the invoice. If you want things to be automated, you can link your PayPal with our system so that you're charged at the end of every month.
Protected Network - Yes, protected network! Our highly optimized and protected DDoS mitigation mechanism from our data center partner FranTech & our own personal mitigation filter wouldn't ever let you go down. As mentioned above, we're known to provide the best DDoS protected network in San Andreas Multiplayer game server hosting. It isn't limited to game, but you get them all for your website/server for any purpose.
Active Support - Do you have any query? We can get it resolved! Yes, you can open up a live chat conversation from our homepage to get all your doubts cleared in no time! Incase we're offline, you can get it resolved by opening a pre-sales/technical support ticket with any priority you'd like to contact us through.
And a lot more!
Pricing -
(As of now, we ONLY have one plan. However, you can upgrade your resources by ordering extras/add-ons while checking out.)
Plan - Starter - $2/mo
1 GB Dedicated Space
100 GB Bandwidth
Unlimited Sub Domains
Unlimited Email Accounts
Unlimited FTP Accounts
Up to 25 MB/sec I/O Usage
Payments -
We currently accept card payment from PayPal portal(you don't have to signup except to supply your billing details to PayPal) and also direct PayPal payment options. For cryptocurrency, we accept bitcoin. However, to authorize crypto payments, you have to open a ticket to get your payment confirmed. This usually takes 6-12 hours on business working days(Monday to Saturday).
Reviews -
Still not satisfied with description? Checkout the experience from our customers :-
Quote: Wrote:"I have been using their web hosting since past two months. It only went down for a day. Yes, a day is way too much for a blog website. But the best part they did is, they compensated me with the same. And since the last downtime, they shifted their server twice with only 2 minutes downtime which doesn't affect me at all. Great web hosting, recommended. Also their pricings are the best!
Less" - Muhammad Yahya Mansuri(Ordbros.com)
Quote: Wrote:"Actually i am new at webdevelopment side and i need cheap hosting for client. As earlier i found this hosting and when i visite first time his site i am shoked becasue its very cheap rate and the owner of this hosting provider is very good person. Thank you for making such this types of things." - Hariom Panchal(Shree Balaji Industries of India).
And many more reviews of Shadow Hosting can be found on HostAdvice.com.
VPS Hosting thread
Contact Us -
Email - [email protected]
Phone Number - +918291064208 (India only).
Pre-Sales Ticket Support - https://shadownethost.com/billing/contact.php
Live Chat - https://tawk.to/chat/5b73ef56f31d0f771d83cee2/default
Facebook - https://www.facebook.com/shadownetworksinternational
Twitter - https://twitter.com/shadowhostint
Contact Us -
Email - [email protected]
Phone Number - +918291064208 (India only).
Pre-Sales Ticket Support - https://shadownethost.com/billing/contact.php
Live Chat - https://tawk.to/chat/5b73ef56f31d0f771d83cee2/default
Facebook - https://www.facebook.com/shadownetworksinternational
Twitter - https://twitter.com/shadowhostint
This is probably old news to many of you. Like 3 days old. But it might still be relevant to some. Google Chrome needs to be updated to at least version 72.0.3626.121, like right now !
There is a serious zero day vulnerability that's being exploited actively in the wild. It is marked as CVE-2019-5786. It involves bug in FileReader.
If you use auto update, then reopen chrome while online. Else you might open about page in chrome for the version auto check to kick in. You may also manually download a netinstall or full offline install version.
To read more,
https://www.forbes.com/sites/daveywinder...49bd312002
https://mobile.twitter.com/justinschuh/s...6661267456
There is a serious zero day vulnerability that's being exploited actively in the wild. It is marked as CVE-2019-5786. It involves bug in FileReader.
If you use auto update, then reopen chrome while online. Else you might open about page in chrome for the version auto check to kick in. You may also manually download a netinstall or full offline install version.
To read more,
https://www.forbes.com/sites/daveywinder...49bd312002
https://mobile.twitter.com/justinschuh/s...6661267456
Is any one familiar with Barracuda Central? I don't have a mail server on my new VPS 15 but appears that one must have been on the IP that has been given for my VPS.
I've applied for the IP to be removed from their black list, but wonder how serious it is to be blacklisted by them?
http://barracudacentral.org/rbl/removal-request
I've applied for the IP to be removed from their black list, but wonder how serious it is to be blacklisted by them?
http://barracudacentral.org/rbl/removal-request
Hello Experts, I am having problem in installing mysql-server and phpmyadmin.I have install mysql-server on Ubuntu with command ( apt-get install mysql-server ) with root.Installation was done without asking for a password ( as it was before ).Then i installed phpmyadmin and entered password.Now whenever i try to login with that passowrd it shows "
mysqli_real_connect(): (HY000/1698): Access denied for user 'root'@'localhost' "
https://i.imgur.com/Va60JVh.jpg
I searched at google and found a information that mysql server is not working with root user anymore so i have created another user and re-installed the phpmyadmin and mysql server but still shows same error if i login with root username and if i login with the new user it shows.
https://i.imgur.com/l7VjmXt.jpg
https://i.imgur.com/Va60JVh.jpg
I searched at google and found a information that mysql server is not working with root user anymore so i have created another user and re-installed the phpmyadmin and mysql server but still shows same error if i login with root username and if i login with the new user it shows.
https://i.imgur.com/l7VjmXt.jpg
| Welcome, Guest |
|
You have to register before you can post on our site. |
| Search Forums |
|
(Advanced Search) |
| Forum Statistics |
|
» Members: 2,271 » Latest member: orzpainter » Forum threads: 3,100 » Forum posts: 34,783 Full Statistics |
| Online Users |
|
There are currently 115 online users. » 0 Member(s) | 110 Guest(s) Applebot, Bing, Google, Yandex, UptimeRobot |
| Latest Threads |
|
⚡ EnjoyVPS.Com : 35+ Glob...
Forum: Others Last Post: RIYAD 01-06-2026, 01:21 AM » Replies: 0 » Views: 662 |
|
Get LLHOST Netherlands Fe...
Forum: Others Last Post: LLHOST 09-29-2025, 03:02 AM » Replies: 0 » Views: 1,016 |
|
Super Fast LLHOST Netherl...
Forum: Value VPS Providers Last Post: LLHOST 09-16-2025, 05:01 AM » Replies: 0 » Views: 731 |
|
Get LLHOST Netherlands Fe...
Forum: Cheap Providers Last Post: LLHOST 09-08-2025, 01:33 PM » Replies: 0 » Views: 873 |
|
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers Last Post: DewlanceHosting 08-16-2025, 03:12 AM » Replies: 0 » Views: 978 |
|
Buy DemoTiger Videos on c...
Forum: Others Last Post: DewlanceHosting 08-16-2025, 03:10 AM » Replies: 8 » Views: 6,600 |
|
Budget Dedicated Servers ...
Forum: Others Last Post: HostNamaste 08-13-2025, 04:54 AM » Replies: 2 » Views: 2,016 |
|
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers Last Post: bestadvisor 07-13-2025, 09:36 AM » Replies: 0 » Views: 1,471 |
|
[Promo] 30% Discount – VP...
Forum: Cheap Providers Last Post: LLHOST 07-11-2025, 12:56 PM » Replies: 0 » Views: 1,035 |
|
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers Last Post: RIYAD 07-02-2025, 03:02 AM » Replies: 0 » Views: 2,316 |