Jump to content

sagnik

Members
  • Posts

    477
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by sagnik

  1. And one more thing, when I'm trying to add the domain in cPanel, I'm getting the following error:

    There was an error when the system attempted to create the alias. Park::park failed: (XID ukhkns) Sorry, the domain is already pointed to an IP address that does not appear to use DNS servers associated with this server. Please transfer the domain to this servers nameservers or have your administrator add one of its nameservers to /etc/ips.remotedns and make the proper A entries on that remote nameserver.

  2. Okay, I got it, But the problem is, I need two domains if I can't setup eu.org domains then where I can get a new domain, and I don't want to spend money (as the websites will be under testing). I can't even register domains on Freenom because my account is flagged when I forgot to renew a domain and now the domain is declared as "FRAUD". I can use any type of domains whether it's a TLD/ccTLD/gTLD/2nd-level/3rd-level.

  3. Nothing much to explain. Here is the logs showing when setting DNS records in nic.eu.org:

    ---- Servers and domain names check

     

    Warning: ignoring IP 65.19.143.3 for NS1.HELIOHOST.ORG (not in SGTEST.IN.EU.ORG)

    Warning: ignoring IP 64.62.211.133 for NS2.HELIOHOST.ORG (not in SGTEST.IN.EU.ORG)

    Getting IP for NS1.HELIOHOST.ORG: 65.19.143.3

    Getting IP for NS1.HELIOHOST.ORG: 2001:470:1:1ee::1002

    Getting IP for NS2.HELIOHOST.ORG: 64.62.211.133

    Getting IP for NS2.HELIOHOST.ORG: 2001:470:1:1ee::2

     

    ---- Checking SOA records for SGTEST.IN.EU.ORG

     

    SOA from NS1.HELIOHOST.ORG at 65.19.143.3: Error: Answer not authoritative (145.350 ms)

    SOA from NS1.HELIOHOST.ORG at 2001:470:1:1ee::1002: Error: Timeout (20002.261 ms)

    SOA from NS2.HELIOHOST.ORG at 64.62.211.133: Error: Answer not authoritative (149.082 ms)

    SOA from NS2.HELIOHOST.ORG at 2001:470:1:1ee::2: Error: Timeout (20001.727 ms)

     

    ---- Checking NS records for SGTEST.IN.EU.ORG

     

    NS from NS1.HELIOHOST.ORG at 65.19.143.3: Error: Answer not authoritative (148.990 ms)

    NS from NS1.HELIOHOST.ORG at 2001:470:1:1ee::1002: Error: Timeout (20000.864 ms)

    NS from NS2.HELIOHOST.ORG at 64.62.211.133: Error: Answer not authoritative (142.665 ms)

    NS from NS2.HELIOHOST.ORG at 2001:470:1:1ee::2: Error: Timeout (20096.117 ms)

     

     

    8 errors(s)

    2 warning(s)

  4. Hello, everyone! I'm going to start a new project which will be a programming language. The structure of the language will be like PHP & Java. It will be built using any one or more than one of the following languages. It will be an open-source application and run either via Console or Apache Module (later via IDE or Runner Application like Java). Anyone who wants to work with me and has knowledge in the following languages can contact me or comment below to discuss how to start and progress. The application will be built using C/C++ (and obviously the Apache Module). We'll start from a simple language by writing a simple Lexer, Tokenizer & Parser for the interpreter then we'll continue to improve the language constantly. If anyone wants to join me can give a reply to this post or send an email at sagnikganguly2012[at]rediffmail[dot]com along with his/her GitHub Username after that he/she can start contributing to the following repository:

    https://github.com/SGNetworksIndia/SGSP.

  5. Hello Admins, I request you to change the document root of my main domain as I've too many addon-domains it will be better to keep them organized. So kindly give a response telling that if it's possible or not. Because I don't know how the websites are hosted in heliohost but if the websites are configured as VirtualHosts then it might be possible. I know that there are some rules for every request, I don't know if my request complies with the rules of heliohost as I've not seen such a rule there, it's also possible that I might be the first one here who's requesting to change the document root of the main domain.

  6. I understood what you've said. But the task I've been assigned by an IT company for whom I have given an interview for "Full-stack Web Developer" at first round of the telephonic interview. Now the HR Manager wants me to develop the app for my 2nd round of interview. They have allowed me to use any third-party libraries. But I'm not comfortable with any third-party libraries, that's why I've asked for without any framework or libraries.

  7. Hi, I wat to build a scalable web app for login/register API in PHP without using any third-party frameworks or libraries as well as the API URLs for the app will be as follows:

    Signup URL: /user/signup

    Signin URL: /user/signin

    Profile URL: /user/profile

    Update profile URL: /user/profile/update

     

    After login/register the app should generate and return the access token which is required to access profile. How can I do it?

  8. I have the following class:

    SGNBEResponseCode class:

    <?php
    namespace SGNBackend\SGNBEResponseCodes;
    
    class SGNBEResponseCode {
    	public function __construct(){
    		print_r(__CLASS__);
    		return __CLASS__;
    	}
    }
    ?>
    
    <?php
    namespace SGNBackend\SGNBEResponseCodes;
    
    class Common extends SGNBEResponseCode {
    	public const UNKNOWN_ERROR = -1;
    	public const INVALID_REQUEST = 0;
    	public const REQ_FAILED = 100;
    	public const DB_QUERY_ERROR = 101;
    	public const DB_COUNT_ERROR = 102;
    	public const DB_FETCH_ERROR = 103;
    	public const EMPTY_PARAM_VALUE = 104;
    	public const INVALID_PARAM_VALUE = 105;
    	public const REQ_DONE = 106;
    
    	public function __construct(){
    		print_r(__CLASS__);
    		return __CLASS__;
    	}
    }
    ?>
    
    Here SGNBEResponse class:

    <?php
    namespace SGNBackend;
    
    class SGNBEResponse{
    	const response = array("error"=>true, "code"=>-1, "name"=>"UNKNOWN_ERROR", "message"=>"An unknown error has occurred");
    
    	public static function generateErrorFromCode(SGNBEResponseCode $code, string $args = null){
    		$c = debug_backtrace();
    		print_r($c);
    		//return "test";
    	}
    }
    ?>
    
    And I'm trying to access the constants like this:

    <?php
    $sgnbe = new \SGNBackend\SGNBEResponse();
    print_r(\SGNBackend\SGNBEResponse::generateErrorFromCode(\SGNBackend\SGNBEResponseCodes\Common::INVALID_REQUEST));
    ?>
    
    And when I access the constants an instance of the class along with the name of the constant and value should be returned instead of the value of the constants. Can I do it? If yes then how?
  9. Why the following error has occurred in PHP 7.1? As far as I know, the 'Object' is used as a reserved keyword from PHP 7.2. I'm using PHP 7.1.1 in my local server and it works fine without any errors then why not in Heliohost? And I've switched from PHP 7.3 to PHP 7.1 using MultiPHP Manager in cPanel.

    Fatal error: Cannot use 'Object' as class name as it is reserved in /home/sgn/public_html/careers4you/config/classes/Careers4You/Helpers/Object.php on line 31
  10. Hi, I've just signed up for Tommy Account using the invitation link I have received in my e-mail inbox. But after signing up, when I've tried to login it says that "Invalid Login". So what is happening when I'm trying to login using valid credentials? Is there any problem with Tommy again?

  11. Hello! I got some questions:

     

    1) Does this host support auto_prepend_file in .htaccess ?

    2) I saw something about a monthly "verification" in CPanel. Is there any way (in a free way) to increase the time (ex. 3mo) or use an auto verification via a minimal access (ex. 1-3 users monthly on the website)?

    2.1) If you don't login to verify it, it will auto-delete forever or it will be recoverable?

    2.2) Does it have an email warning before the last days?

     

    Thanks!

    1.) In heliohost you are allowed to change only a few php.ini configurations. And the "auto_prepend_file" & "auto_append_file" php.ini directive is definitely not supported.

    2.) There are no ways to prevent account inactivity. But as @flazepe said, "You can donate at least $10 and get it to increase to 2 months and $15 for 3 months and so on. If you donate 5$, you'll also get to increase your storage to 2 GB."

    2.1.) If you don't log in at least once in a month your account will be suspended and you can renew your account from "https://www.heliohost.org/renew/".

    2.2.) Yes you'll get a notice before 15 days your account gets suspended.

     

    If you have any queries, let us know.

×
×
  • Create New...