-
Posts
17,994 -
Joined
-
Last visited
-
Days Won
676
Everything posted by wolstech
-
If you used the force HTTPS option in cPanel to do it, I believe it adds it in the Apache config for your domain. Krydos would need to remove it manually... Escalating.
-
Peoples that are on Heliohost more than 10 years
wolstech replied to sylvain's topic in Other Discussion
There aren’t many of us that are still around. Me and Krydos have both been here 10+. We have a single normal user who has been here since 2007 (Lana), though she doesn’t really post on the forums. -
Every organization using Google Workspace will have include:_spf.google.com in their SPF. That's the standard SPF record recommended by Google for Google Workspace setup. GArena is a legitimate gaming platform. They own that domain, and they probably use Google Workspace internally. GArena doesn't offer public email service, so the odds they're actually sending these emails is low. What doesn't make sense is why the DKIM passed... One of the downsides to using Google (or any major cloud email provider) for email on your own domain is what you're seeing here. A spammer can use Google to send spam with a fake From header for any other domain using Google email, and the spam will pass an SPF check. SPF lost a lot of its effectiveness when massive cloud email services became common...it's more effective when domains have their own mail server.
-
Unsuspended. With cPanel no longer functional though, you'll need to maintain your site using FTP until our migration to Plesk is complete. For more information, please see the News section.
-
What is the speed of your internet connection?
wolstech replied to surfcss's topic in Technology and the Internet
14 years later? Talk about digging up the dead... -
Email is not available during the migration. If you need access to past messages, they can be retrieved via FTP, they're found in your ~/mail folder. There should be folders in there for each mailbox, with the "cur" folder representing your inbox and "new" folder containing unread mail. The files with the really long random names are individual messages. Download them and rename so they have an .eml extension. They're not perfectly compliant .eml files, but a program like Outlook should open them properly as emails.
-
No such thing exists.
-
That htaccess has nothing to do with ssl, that code sets the PHP version. There can be more than one .htaccess though, check the one in public html, whatever folder your domain points to, as well as in your home folder. If you generate new certificates with a free service like zerossl and upload them to your home folder (not public_html), Krydos can manually install them instead. I didn't mention this earlier because I didn't think K would want the extra hassle, but he ended up offering this himself for another user.
-
It is indeed the date. The certificate is expired because autossl no longer works without cpanel. There is no way for a user to install a new cert at this time, so the best solution would be to remove any forced SSL redirect you may have and allow plain HTTP until plesk is up and running. If you have such a redirect in your .htaccess file, you can edit the file via SFTP to remove it.
-
He was trying to install Drupal. That said, I do development as a hobby, database and related code design really vary by program. I usually do a separate INSERT per record when bulk inserting because a foreach or while loop is usually involved and it's much easier than doing string concatenation to build one, however if you're using something like prepared statements, I believe it assembles a single statement and executes it. I can say though that if the number of records to be inserted is massive, a single query with multiple VALUES statements is faster in my experience. I used to be against using constraints in my older code, but now use them quite heavily in my modern apps. Not only does it make for a cleaner DB, it also simplifies code, and eliminates the need to code in tedious things like update/delete code for multiple tables (the ability to CASCADE or SET NULL on a constraint means you can just run a single UPDATE or DELETE on the parent record and let the database server worry about updating/removing other lines that reference it, the desired action of course depends on what you're doing).
-
I don't believe anybody has gotten an invite or account for Plesk yet. We've been focused on data center maintenance lately since that had to be done while Ashoat was in the area.
-
Users are currently not able to set up new websites due to the Plesk migration. You'll need to wait until the migration is completed for your server. We have no ETA as to when this work will be completed, though I can say Tommy will be the first server completed..
-
I specifically said when I unsuspended it that: See Jenova's post for that information.
-
They're included in your account backup: https://heliohost.org/backup/ If you made a bunch of changes and need something more recent, you can upload PhpMyAdmin to your account via FTP, log into that, and export the databases from there.
-
@SeekierActually it is possible. The control panel won't work, but since it's not archived and already exists, the account can be unsuspended so the site is up at least. We can suspend and unsuspend still, we just can't unarchive, delete, or create. The username is munny, the other two accounts don't exist. Unsuspended.
-
You will need a VPS for this. The shared hosting does not support custom server processes/daemons nor do we allow custom inbound ports on shared servers, so the “listen for connections” part is impossible.
-
We have a substantial number of shared hosting users who are donors but bought a VPS due to the server not working, so there's a decent overlap between "large shared host donor" and "VPS user" at the moment. Many of those will likely go back to shared hosting when it's available again, both because of the cost and because a VPS involves a good amount of work to configure and maintain.
-
When we say "soon", we mean "we're working on it with no specific timeline." "Soon" has historically been anywhere from "tomorrow" to "end of next year" for us, though this one I'd imagine is actually sooner rather than later since I can see the build log and he's pretty far along on putting together the basics.
-
It's not even available yet, and when the beta is available, users cannot request it (though you can opt out if offered it). The users who are selected are based on total money a user has donated over the past year.
-
[Solved!!!!] can you help me ( Your account is suspended )
wolstech replied to nemo1's topic in Suspended and Queued Accounts
We are not able to make changes to accounts like this at this time. You'll need to wait until Plesk is available to modify your site. -
Krydos is the one who handles VPS issues. Escalating.
-
Try importing them into a mail client as a .eml file. Those files might not be perfectly .eml compliant, but they should meet IMF (RFC5322) which is the standard that mail servers use to pass mail to each other. That standard is a superset of .eml (it's the "parent" of .eml, the .eml format itself has additional rules beyond the standard though), so it might work well enough to read them.