-
Posts
483 -
Joined
-
Last visited
-
Days Won
1
Everything posted by sagnik
-
Yeah, sure. How can I make the payment? As my debit card is India only, there is no chance to make payment through it.
-
I'll try to link my bank account and see if it works. And if I wait until 5:30am, can I signup for Tommy? I don't want to signup for any other server.
-
Is there any other methods to pay except PayPal, I've already checked PayPal and it doesn't support Rupay card.
-
Well I've a Rupay Debit Card. Is it supported to make the transaction using "https://heliohost.org/tommy"?
-
I want to create an account on Tommy. I want to know how much I need to donate to get an invitation from HelioHost. I'm asking this question because, I've never done any transactions online before. So I don't want to make a large transaction. And I'm from India, if I donate USD 1$, I've to pay R.s 64.67₹ + bank charges.
-
Ok, I'll go with Tommy. Thanks.
-
Ok. But previously I was in Johnny, it had a problem with add-on domains so I've switched to Ricky. Is the problem still exists in Johnny?
-
Hi, I had an account on Ricky which was deleted due to server crash. But when I've wanted to re-create the account on Ricky, I've came to know that, signup will reopen after 18 hours that means 05:00am(GMT +05:30 or IST) in India in that time it's impossible for me to wake up to create an account. So I request you, please create my account manually with username: "sgn", password: "12345678" on the server "Ricky". (If it's possible)
-
Ok thanks for your great help. Well, yeah I want to force redirect to https if user visit http but not now I've not created htaccess yet. I'm waiting for https to work properly then I'll create a htaccess to force redirect to https.
-
Oh, thanks. Now my website is working fine. And I've uninstalled the certificate and installed cPanel issued auto SSL but the certificate still not updated with the new SSL.
-
I understand. But why Chrome is showing that, the certificate has issued to "wn.sgnetworks.cu.cc" as it should show "whatsnew.cf", because I've put "whatsnew.cf" in the "common name" and "whatsnew.cf, *.whatsnew.cf" in the "subject alternative name with DNS.1, DNS.2 (FQDNS)". And why "whatsnew.cf" showing "Account Queued"?
-
I've just installed my own CA signed certificate for domain "whatsnew.cf, *.whatsnew.cf". But getting the following error and chrome is saying that the certificate is issued to "wn.sgnetworks.cu.cc" and is self-signed, even I've signed the certificate with my own CA and issued for "whatsnew.cf": Here is the screenshot of the certificate installation page: I need help setting up ssl properly without the error above.
-
Ok.. Thank you very much, sir!
-
It describes about moving files/folders/databases. I'm asking about moving the added domains. Do I need to remove the domains first then delete my account to re-add the domains after my account had moved?
-
I don't have any medium to transfer money but it will be soon. After I get a medium such as online banking, PayPal or something else I'll make a donation. But till then, I need to transfer all the domains to Ricky.
-
Ok thanks for your help. And one more thing, if I delete my account "sgn", can I use the same username "sgn" and do I able to add/register the same domains?
-
Ok thanks. I've removed the alias domain. And going to try to add an addon domain. Sir, I want to switch to "Ricky". How can I do this?
-
Hello! Recently, I've two problems. First, I've added an addon domain "netmate.cf" in my account "sgn", it was added successfully and working fine but when tried to install a SSL on the domain got "You don't control the domain". Second, I have wanted to add another addon domain "whatsnew.cf", but got some error (I didn't remember) and the domain was not listed in the addon domains section, but DNS was set set perfectly so the domain is working but maybe as it was not listed in the addon domains section so I'm getting "You don't control the domain" when tried to install a SSL on the domain. I've tried both cPanel free SSL and also my own CA signed SSL. In both the cases I've encountered the same error. I'm using "Johnny" server with username "sgn".
-
I want to display a progress bar when sending data to php and php inserts the data to database. Here is the code, I'm using: step2_ajax.php: <?php $uid=$nm->getUserUID(); if(!empty($_SESSION['sessid'])){ if($_POST['action'] == 'post_validate'){ function makeProgress(){ $progress=0; $max=100; $p=rand(0,10); for($i=$p;$i<=$max;$i++){ if(isset($_SESSION['progress'])){ session_start(); } $progress++; $_SESSION['progress']=$progress; session_write_close(); sleep(1); } } makeProgress(); $fnt=preg_match('/^[a-zA-Z]*[a-zA-Z][a-zA-Z\.]*[a-zA-Z\.]$/i',$_POST['fname']); $lnt=preg_match('/^[a-zA-Z]*[a-zA-Z][a-zA-Z\.]*[a-zA-Z\.]$/i',$_POST['lname']); //$dt=preg_match('/^[0-9]*[0-9][0-9]*[0-9]$/i',$_POST['dob']); $dt=preg_match('/^([0-9]{2})-([0-9]{2})-([0-9]{4})$/',$_POST['dob']); $sa = array("Male","Female","Not Specified"); $sex = in_array($_POST['sex'],$sa); $d1=$_POST['declaration1']; $d2=$_POST['declaration2']; $d3=$_POST['declaration3']; $uid=$nm->getUserUID(); $usr=$nm->getUserField('username'); $bc = get_browser(null,true); $ip = $_SERVER['REMOTE_ADDR']; $device = $bc['device_name']; $login_cookie = sha1($usr).'-'.sha1($ip).'-'.sha1($device); if($fnt && $lnt && $dt && $sex && $d1==1 && $d2==1 && $d3==1){ if($_POST['sex']==$sa[0]){ $dp=file_get_contents("{$global}images/avatars/man.png"); $dp_mime="image/png"; } elseif($_POST['sex']==$sa[1]){ $dp=file_get_contents("{$global}images/avatars/woman.png"); $dp_mime="image/png"; } elseif($_POST['sex']==$sa[3]){ $dp=file_get_contents("{$global}images/avatars/bisexual.png"); $dp_mime="image/png"; } $fn=db_real_escape_string($_POST['fname'],$con); $ln=db_real_escape_string($_POST['lname'],$con); $sex=db_real_escape_string($_POST['sex'],$con); $dob=db_real_escape_string($_POST['dob'],$con); $q0a=db_query("SELECT id,uid,login_cookie FROM users WHERE uid_md5='".sha1($uid)."' AND status='1'",$con); if($q0a && db_num_rows($q0a)==1){ $r0a=db_fetch_array($q0a); $id=$r0a['id']; $s1a="INSERT INTO profiles_personal(`user_id`,`uid`,`dp`,`dp_mime`,`fname`,`lname`,`sex`,`dob`) VALUES('$id','$uid','$dp','$dp_mime','$fn','$ln','$sex','$dob')"; $s1b="UPDATE users SET status='2' WHERE uid_md5='".sha1($uid)."'"; $q1a=db_query($s1a,$con); $q1b=db_query($s1b,$con); if($q1a && $q1b){ echo 'done'; } else { echo 'failure: '.mysqli_error($q1a); } } else { echo "Sorry for the inconvenience... But maybe your account is suspended by Netmate team or you have already completed this step. Please check your account status <a href='/members/manage?do=check_status&sessid=".$_SESSION['sessid']."&refid=2'>here</a>"; } } else { echo '\n\n Some of the informations you have provided might be invalid'; } } } else { echo 'Your session was expired please login again'; } ?> step2.form.php <script> $(document).ready(function(){ $("#submit").click(function(e){ e.preventDefault(); getProgress(); var f=$("#fn").val(); var l=$("#ln").val(); var s=$("input:radio:checked").val(); var dd=$("#date").val(); var dm=$("#month").val(); var dy=$("#year").val(); var a1=$("#a1").prop('checked'); var a2=$("#a2").prop('checked'); var a3=$("#a3").prop('checked'); $(this).after("<span id='wait'></span>"); var sub=$("#submit"); var sw = $(this).next("span"); sw.css({'left':'-4.3%','top':'12px','width':'100%'}); sw.addClass('wait-icon-place'); sub.val(''); sub.attr('disabled',true); sw.show(); if(f.length>=2 && f.length<=48 && l.length>=2 && l.length<=48 && (s=='Male' || s=='Female' || s=='Not Specified') && dd.length==2 && dm.length==2 && dy.length==4 && a1==true && a2==true && a3==true){ var d=dd+'-'+dm+'-'+dy; var url="/includes/registration/step3_ajax.php"; $.post(url,{sessid: '<?=$_SESSION['sessid'];?>', action: 'post_validate', fname: f, lname: l, sex: s, dob: d, declaration1: '1', declaration2: '1', declaration3: '1'}, function(d){ if(d=='done'){ sw.hide(); sub.val('Next'); sub.removeAttr('disabled'); window.location.replace("/?sessid=<?=$_SESSION['sessid'];?>&refid=2"); } else { sw.hide(); sub.val('Next'); sub.removeAttr('disabled'); //alert("Something went wrong... Please try again!!! DEBUG: \n\n" + d); notify('warning',d,'topCenter',true,'relax'); } }); } else { $(this).next('span').hide(); $(this).val('Next'); $(this).removeAttr('disabled'); notify('error',"Something went wrong!!! Please try again.\nDEBUG: "+d.length,'topCenter',true,'relax'); } }); }); function getProgress(){ console.log('getProgress'); $.ajax({ url: "<?=$public_ajax;?>async/get_progress.php", type: "GET", contentType: false, processData: false, async: false, success: function(data){ $(".progress").css('width', data+'%'); $(".progress").text(data+'%'); if(data!=='100'){ setTimeout('getProgress()',1000); } } }); } </script> I'm getting max execution time exceeds in step2_ajax.php because of the for loop. I want to display the progress as php inserts the data to mysql.
-
Thanks for your help. And it's not worked. I think, I need to change the NS records of a domain and then I have to change the MX record from yandex. But, thanks again.
-
Thanks to all. Yeah, the domain is working. And one more question, I'm setting up my domain with Yandex.Com (Email Hosting), after verifying domain ownership I'm advised to set the MX record for subdomain: "@", priority: 10, destination: mx.yandex.net. So, my question is, from where I've to change the MX record, from Yandex.com or HelioHost? If from HelioHost, then where I've to put the subdomain "@" as HelioHost doesn't allow to change host for MX records.
-
Thanks, and the added domain s are working fine. How can I register and transfer my account to Ricky?
-
Sir, I've tried to add the domain but got the following error: Can you explain me what does the above message means? Tried again. And now I've got this error: According to the error, the domain already registered/added but I couldn't add the domain as it gave an error as I said in the previous reply.