-
Posts
24,534 -
Joined
-
Last visited
-
Days Won
867
Everything posted by Krydos
-
Can't do much of anything to help you without more information. There is obviously no DNS record for example.com nor did you state your username. Also, you won't be able to add an alias or addon domain without setting the name server (at least temporarily) to ns1.heliohost.org and ns2.heliohost.org. Yes, and addon domain pointed at the subdirectory public_html/wp would be a great way to do it. I hadn't really thought about it recently, but you're right. I've added it to the todo list.
-
Yes, Tommy has free comodo ssl certificates that are automatically installed and renewed for you for all domains on your account.
-
Yes. You can also create your new account with the other email address and then just change your email address in cpanel. Whichever is easier for you.
-
Would you mind turning off cloudflare on that domain so we can see what is going on with it?
-
[Solved] Error In Postgres Configuration Johnny Server, Again
Krydos replied to ddanniel's topic in Escalated Requests
Oh, didn't know I was supposed to view source to see the error. I just expected it to display on the page. The problem is there is no user named deauvece. Your username is ddanniel. -
[Solved] Unable To Accsess Tommy Servers/cpanel
Krydos replied to ziad87's topic in Customer Service
Cool, and don't worry about bothering us. That's what we're here for. In fact, I feel really bad about you getting blocked over and over. -
On 2017-06-29 you were suspended at about 12 hours through the day. In that 12 hours you still managed to get 107% more load than the second highest load account, and you were fourth highest memory usage. You must have some insanely load intensive plugins. Unsuspended. I checked the logs, and in the last 7 days 2017-06-25 to 2017-07-02 you have only used 75mb of bandwidth. That's a ridiculous amount of load for barely any traffic.
-
[Solved] Unable To Accsess Tommy Servers/cpanel
Krydos replied to ziad87's topic in Customer Service
Did you find them? It looks like they might have been: public_html/fud/ public_html/roundcube/ public_html/ -
[Solved] Unable To Accsess Tommy Servers/cpanel
Krydos replied to ziad87's topic in Customer Service
Failed web page login. Maybe remove your .htpasswd file. That's what is causing it. -
[Solved] Unable To Accsess Tommy Servers/cpanel
Krydos replied to ziad87's topic in Customer Service
Our log said too many "failed web page login". Unblocked. -
Don't worry about it. I'm glad everything is working for you now.
-
So, it looks like you originally created agpid.com as an addon domain. That likely broke because you're on Johnny and he has a lot of high load. I was fixing the addon domain for you when I noticed that your post says you want it as a main domain. The reason you couldn't add it as a main domain is because you have to fully remove any addon or parked domains before you can make them your main domain. So I started removing agpid.com from your addon domains so I could change your main domain for you, and now I see that you have recreated agpid.com as an addon domain again. We're just going to leave it as an addon domain at this point because we're going around in circles... Ok, it's working now http://agpid.com/
-
Can you post the transaction ID, and the email address to want the invitation resent to. You can PM me the email address if you don't want to post it publicly. Just let me know in this thread that you sent me a PM because I never check them otherwise.
-
[Solved] Error In Postgres Configuration Johnny Server, Again
Krydos replied to ddanniel's topic in Escalated Requests
I don't see an error on that page. Did the issue resolve itself? -
Unarchived. Your domain should start working in a few hours.
-
[Solved] Website Doesn't Work With Cloudflare Dns
Krydos replied to maicol07's topic in Customer Service
It's working for me. What isn't working for you? -
Have you enabled remote mysql connections in cpanel? You didn't state your server or username or domain or anything so here are links for both Johnny and Tommy. Click the one that your account is located on. https://johnny.heliohost.org:2083/frontend/paper_lantern/sql/managehost.html https://tommy.heliohost.org:2083/frontend/paper_lantern/sql/managehost.html
-
No problem. I volunteer my time to HelioHost because I find it fun, and I especially like challenges that I've never done before. You're the first to try to do this in the seven years I've been volunteering.
-
I created the two users for you, and their passwords and .p12 files are in the same place as the first certificate. I tested all the certificates to make sure they work with this page which you might find useful: https://cezih-net.heliohost.org/auth.php
-
I ran this all on Ubuntu. It should be similar on all distros though. Maybe some different paths. I ran all the following commands as root. Edit your openssl configuration: # vim /etc/ssl/openssl.cnf (scroll down to) [ ca ] default_ca = CA_default # The default ca section [ CA_default ] dir = /etc/ssl/private # Where everything is kept certs = $dir/certs # Where the issued certs are kept crl_dir = $dir/crl # Where the issued crl are kept database = $dir/index.txt # database index file. #unique_subject = no # Set to 'no' to allow creation of # several ctificates with same subject. new_certs_dir = $dir # default place for new certs. certificate = $dir/ca.crt # The CA certificate serial = $dir/serial # The current serial number crlnumber = $dir/crlnumber # the current crl number # must be commented out to leave a V1 CRL crl = $dir/crl.pem # The current CRL private_key = $dir/ca.key # The private key RANDFILE = $dir/private/.rand # private random number file x509_extensions = usr_cert # The extentions to add to the cert # Comment out the following two lines for the "traditional" # (and highly broken) format. name_opt = ca_default # Subject Name options cert_opt = ca_default # Certificate field options # Extension copying option: use with caution. # copy_extensions = copy # Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs # so this is commented out by default to leave a V1 CRL. # crlnumber must also be commented out to leave a V1 CRL. # crl_extensions = crl_ext default_days = 365 # how long to certify for default_crl_days= 30 # how long before next CRL default_md = md5 # use public key default MD preserve = no # keep passed DN ordering # A few difference way of specifying how similar the request should look # For type CA, the listed attributes must be the same, and the optional # and supplied fields are just that :-) policy = policy_match # For the CA policy [ policy_match ] countryName = match stateOrProvinceName = match organizationName = match organizationalUnitName = match commonName = supplied emailAddress = optional Create your ca script: # echo '#!/bin/bash' > ca # chmod 700 ca # vim ca #!/bin/bash echo 11 > /etc/ssl/private/crlnumber echo 1111 > /etc/ssl/private/serial openssl genrsa -out /etc/ssl/private/ca.key openssl req -new -key /etc/ssl/private/ca.key -out /etc/ssl/private/ca.csr openssl x509 -req -days 3650 -in /etc/ssl/private/ca.csr -signkey /etc/ssl/private/ca.key -out /etc/ssl/private/ca.crt touch /etc/ssl/private/index.txt openssl ca -gencrl -out /etc/ssl/private/ca.crl -crldays 7 cp /etc/ssl/private/ca.crt . Create your user script: # echo '#!/bin/bash' > user # chmod 700 user # vim user #!/bin/bash if [ ${#1} -eq 0 ]; then echo "Usage: ./user <username>" exit fi base="/etc/ssl/private" mkdir -p $base/users/$1/ openssl genrsa -des3 -out $base/users/$1/$1.key 1024 openssl req -new -key $base/users/$1/$1.key -out $base/users/$1/$1.csr openssl ca -in $base/users/$1/$1.csr -cert $base/ca.crt -keyfile $base/ca.key -out $base/users/$1/$1.crt openssl pkcs12 -export -clcerts -in $base/users/$1/$1.crt -inkey $base/users/$1/$1.key -out $base/users/$1/$1.p12 cp /etc/ssl/private/users/$1/$1.p12 . Run ./ca first and fill in the questions to create your ca.crt file. If everything works this file will be copied to where you're running the ca script from. This file gets uploaded to /home/cezihred/ssl/ca.crt Next run ./user and fill in the questions to create your user.p12 file. If everything works this file will be copied to where you're running the user script from. This user.p12 file gets installed in your client browser. If you mess up somehow, or want to start over entirely I wrote this script to clean things up and start over from scratch. WARNING: This deletes your CA and all of your users: # echo '#!/bin/bash' > reset # chmod 700 reset # vim reset cd /etc/ssl/private rm -rf users rm -f * Like I said, it's pretty complicated so I really don't mind generating the certificates for you if you need.
-
Um, sure. It's a bit complicated so I don't mind generating your certificates for you.
-
Ok, I sent you the .p12 file and the password to use it. Download the .p12 file to your computer. If you use chrome open settings >> manage certificates >> import navigate to the .p12 file and open it. It will ask for the password that I sent you. Once that's installed got to http://cezih-net.heliohost.org/ and it should pop up the dialog box asking which certificate to use to authenticate. Then from there you can use php $_SERVER variables, etc to build a secure system.
-
Each account must have a unique email address. Since the address associated with the paypal donation is already in use where would you like the invitation sent? To your friends email? You can PM me the email address if you want. Just make sure you let me know in this thread that you sent it otherwise I'll never remember to check it.