leranjun
Members-
Posts
22 -
Joined
-
Last visited
-
Days Won
1
Everything posted by leranjun
-
Oh, I see there was a problem with having two accounts that I forgot to reply to. My sincerest apologies. Please delete the account leran and keep leranjun only.
-
Hi, I associated my domain with Heliohost a few months ago and created a subdomain. Now I wish to change the CNAME record of the subdomain; however, the control panel is currently under maintenance. Is there any other way to change it? Thanks in advance.
-
The MX record for mail.slaw.uwcsea.ml. Thanks in advance!
-
OK, so I was trying to set up SES one day, and I tried to add an MX record for the "mail" subdomain. However, it prompted that I do not have access to the domain, so I added a new "mail" subdomain to my website. I removed the subdomain shortly after I added the MX record, and everything worked fine. However, when I tried to delete that record today, it kept saying "No specific error was returned with the failed API call". I thought I might have to add the subdomain again, but I couldn't as there is an existing DNS record. Any ideas on how to remove that entry?
-
Hi, I've added an SSL certificate for one of my sites, but according to the records it is still linked to a cPanel certificate, which led to a common name mismatch. The site URL is https://portal.iexploresg.ga. Thanks in advance.
-
So I ran an audit using Lighthouse on my website the other day, and it showed me this: Is there any way to "fix" this? By forcing HTTP/2 or something?
-
[Solved] Change email address for the account
leranjun replied to leranjun's topic in Customer Service
Awesome, thanks a lot! -
[Solved] Change email address for the account
leranjun replied to leranjun's topic in Customer Service
Alright, it's working. What else should I do? Do I need to change anything on cPanel? -
[Solved] Change email address for the account
leranjun replied to leranjun's topic in Customer Service
I'd like to change to *************@****.***. Thank you very much! -
Hi, I searched in the forum and realised that I need to contact the admins to change my current email address for my account. How am I supposed to do that?
-
[Solved] PHP Not Supported in Subdirectories?
leranjun replied to leranjun's topic in Escalated Requests
Wait… I think it is not a PHP problem… So basically, in my subdirectory "beta" I tried to connect to a MySQL database using mysqli, and it showed me the 500 error. Now I copied the files from the subdirectory to the main folder, it showed me the error when I tried to visit the main page. I think there's something wrong with handling SQL. -
[Solved] PHP Not Supported in Subdirectories?
leranjun replied to leranjun's topic in Escalated Requests
https://cistea.ga/beta -
[Solved] PHP Not Supported in Subdirectories?
leranjun replied to leranjun's topic in Escalated Requests
The thing is, there was no .htaccess by default in the main directory. I just created it for SSL certificate. This problem was there even before I create that file. -
[Solved] PHP Not Supported in Subdirectories?
leranjun replied to leranjun's topic in Escalated Requests
No, there is only .htaccess file in the main folder, not the subdirectory. -
[Solved] PHP Not Supported in Subdirectories?
leranjun replied to leranjun's topic in Escalated Requests
Sorry for the confusion… The folder is 755, and the files are 644. -
[Solved] PHP Not Supported in Subdirectories?
leranjun replied to leranjun's topic in Escalated Requests
Yes, everything is 755. I can view the image file and the html file, but not PHP. -
Hi, When I tried to open a PHP file in a subdirectory of my main website, the website encountered a 500 error (screenshot attached below). Is PHP not supported in subdirectories?
-
I have the least idea why, but it seems to be working now. Thanks for the help anyway!
-
Well I'm just using test for security purposes. The actual database is tea.
-
Aha, sorry for the confusion. I'm just saying thank you for politeness Anyway, I don't think that is the problem. Is there any chance that there are other parts that might have gone wrong?
-
Yes, the user has access to all the commands. Thank you!
-
Hi, I have been trying to connect to my MySQL database added through cPanel with PHP. It turned out that the connection was successful, but it cannot execute any commands. I tried to execute the command in my local IDE (I am using PhpStorm), and it succeeded. I used the same configuration with mysqli, but it doesn't work. In connect.php: <?php $dbServername = "ricky.heliohost.org:3306"; $dbUsername = "username"; $dbPassword = "password"; $dbName = "test"; $conn = new mysqli($dbServername, $dbUsername, $dbPassword, $dbName); if ($conn->connect_error) { die("Connection Error: " . $conn->connect_error); } echo "Connection successful"; $stmt = $conn->prepare("SELECT * FROM test"); $stmt->execute(); The output is just "Connection successful"; it does not execute the SELECT statement. Can anyone please help me? Thank you very much!