All Activity
- Past hour
-
Done
- Today
-
[Solved] Add 3 new domain to my hosting accoount.
MoneyBroz replied to abhisrv2's topic in Customer Service
Added -
[Solved] Add 3 new domain to my hosting accoount.
abhisrv2 replied to abhisrv2's topic in Customer Service
yes sure -
-
[Solved] Request to Add Domain 518.group and www.518.group
MoneyBroz replied to iamxiae's topic in Customer Service
Read the post that you quoted -
https://heliohost.org/dashboard/upgrade/
-
[Solved] Request to Add Domain 518.group and www.518.group
iamxiae replied to iamxiae's topic in Customer Service
Hi MoneyBroz, I've uploaded multiple files (index.php, messages.txt, luxury1.jpg, etc.) to the /518.group/ directory. However, only index.html loads successfully — all other files return a Not Found from the server. Could you please check if the virtual host configuration for 518.group is restricting access to non-index.html files? Thanks! -
[Solved] Add 3 new domain to my hosting accoount.
MoneyBroz replied to abhisrv2's topic in Customer Service
Added. it can take up to 2 hours for them to start working This domain is already taken, would you like to use dev.heliohost.us instead? -
[Solved] Request to Add Domain 518.group and www.518.group
iamxiae replied to iamxiae's topic in Customer Service
Thanks a lot! Everything looks good now. -
[Solved] Request to Add Domain 518.group and www.518.group
MoneyBroz replied to iamxiae's topic in Customer Service
Domain added. it can take up to 2 hours to start working. -
Rakkun joined the community
-
Yes, Krydos will see this. The forum has some built-in routing, and the thread subject line now has [Krydos] in it so he'll know this is a request that needs his attention. 🙂 Next is that he'll update you in this thread when he has a chance.
-
coraca joined the community
-
This problem looks exactly the same as I got. I have tried the fix, created the file and placed the two lines. But while trying to solve it earlier with AI, I have messed up so badly that this fix not working, and may be now the problem is more complex. SSLs not installing.
-
Hi Team, I want to add 3 more new domain to my hosting account, but it required admin access. Can you please add below 3 more new domains with your subdomain. List of domain:- techintrick.helioho.st engineerslife.helioho.st dev.helioho.st Note : - Please create seperate directory for above domain. Thanks & Regards, Abhishek
-
iamxiae changed their profile photo
-
Hi HelioHost Support Team, My username is iamxiae. I would like to request the addition of the following domains to my account: 518.group www.518.group Please let me know if you need any further information from my side. I understand that I can host up to ten domains on my account, and I’d prefer to add these as additional domains rather than changing the main domain. I do not intend to change the NS records; instead, I plan to use A records or CNAME via Cloudflare to point the domain to my HelioHost account once it’s added. Thank you for your assistance!
-
What's next? Will Krydos see this?
-
abhisrv2 joined the community
-
snailprincessch joined the community
-
I’m trying to disable directory listing using .htaccess
wolstech replied to urbanshed's topic in Customer Service
We usually just suggest putting a blank index.html file in the folder to hide the listings when this happens. The Options directive is...weird...on Plesk sometimes. Also, I did notice that your website makes a distinction between /projects/ and /projects (without the trailing slash). I would suggest renaming the projects folder to something not used by the website to avoid visitors accidentally getting the wrong one. -
Someone else had it happen yesterday on their VPS. Apparently pretty common. Try the fix that Krydos described here: https://helionet.org/index/topic/65043-krydos-misdirected-all-the-websites/#findComment-292011
-
Krydos can assist you with this.
-
Please go ahead. I'm noticing it's $7 for windows 2019. So please how do pay the balance of $3?
-
msbsurfi started following VPS Server malfunction
-
Hello there, Username: dmcrac Server: vps112.heliohost.us My original goal was simply to enable a persistent object cache for my WordPress site dmcrac.org . The WordPress Site Health tool recommended APCu. I followed standard procedures to install it for my PHP version. I also believe I may have installed php-memcached. But after making all kind of changes I visited my sites and there was no problem detected. It was yesterday night when I did this. But today morning, when I tried to visit my sites (wordpress and non wordpress), I have found the following error in all of my sites hosted in the VPS: I don't know how did it happen. Yesterday I installed APCu and enabled all type of caching with the plugin "W3 Total Cache". So today I spent several hours trying to fix it and used AI models to determine problems and solving them. After some hours now I find all my sites are totally inaccessible with a connection refused message. Yesterday I created a hestia backup. So is it possible to reinstall the OS and hestia and retore the backup. I am not sure about the integrity of that backup file. But the information currently existing in the file manager and databases and mail data is much more important. Can you please look into the issue? Is it possible to restore everything without reinstalling, losing even a part of data will be a great loss for me and my club. And also there is an active research conference event running. Regards, MD Shifat Bin Siddique
-
Please be aware with Windows server we only provide the trial version, and if you want to use it beyond the trial you will need to purchase your own license. Also, windows server will not work on the $4 mercury VPS because of insufficient resources. You're going to have to buy a larger VPS to run windows. The bare minimum that would be recommended is 2 CPUs and 2GB of memory, and I would recommend 4GB as 2 is not enough for windows to really function. Do you still want to proceed with the rebuild?
-
I've submitted a ticket earlier but didn't know I needed to VPS147.
-
I'm not familiar with the Ubuntu OS, please I'd prefer windows 2022. User id: bydaulton
-
Issue with custom database wrapper class
alkastraverse replied to sagnik's topic in Website Management and Coding
I believe the issue is caused by `$this->results[$queryKey]` being overwritten when you run a new query inside `getCategory()`. So when you call `$this->fpdb->query(...)` in `getCategory()`, it updates the `$this->results` map and the current query key, which breaks the loop in `getProperties()` because `fetch_object()` now references the subquery instead of the original result set. To fix this, you can store the result of the main query in a temporary variable before entering the loop, like this: function getProperties() { $s = "SELECT * FROM properties"; $result_set = $this->fpdb->query($s, return_result: true); // store raw result $result = []; while ($r = mysqli_fetch_object($result_set, Property::class)) { $r->category = $this->getCategory($r->cid); $result[] = $r; } return $result; } This way, even if `getCategory()` runs a subquery internally, it won't interfere with the loop iterating over your original `$result_set`.