-
Posts
24,162 -
Joined
-
Last visited
-
Days Won
849
Everything posted by Krydos
-
You can change permissions of files by right clicking the file on the server and going to File permissions. You can change the permissions of a directory the same way, but it also has an option to recursively change all the permissions within the directory too. Do your files upload by default in 644 now?
-
[Solved] Python Module Install Request On Tommy
Krydos replied to tarun7si2's topic in Escalated Requests
Does it work now? -
Open FilezillaClick File >> Site ManagerClick New SiteType "Tommy SFTP" and press enterIn Host field type "tommy.heliohost.org"In Port field type "1342"In Protocol dropdown select "SFTP - SSH File Transfer Protocol"In Logon Type dropdown select "Normal"In User field type your cPanel usernameIn Password field type your cPanel passwordClick ConnectApprove the remote server key, and check the box to not ask you about this server again.
-
Resent to the new address.
-
Source: http://www.helionet.org/index/topic/27235-manual-backup-results/ There is nothing left to recover. We've already gotten everything that it's possible to get.
-
You can download your backup from https://www.heliohost.org/backup/ and create a new account at https://www.heliohost.org/signup/ using the same username, and domain as before. Then restore your backup.
-
The invitation goes to the paypal contact email address, but you can post the transaction ID or put in the donation comment your email address to send it to instead.
-
You seriously think that we seriously shut down serious Stevie after seriously like six years of seriously good uptime? In all seriousness though, the reason we asked for money for the first time ever in the 12 years we've been providing free hosting is because we're having so much bad luck lately. Trust me, no one who has created an account on Tommy is complaining. Seriously though, when both Stevie and Johnny crashed I thought that maybe Heliohost was done for, but all of our amazing users who have received exceptional free hosting for years stepped up and we have received more donations than I ever expected we would. People are being way more supportive than I expected too. I wouldn't have been the least bit surprised if a lot more people had acted the way that you are, but you're actually the first who has said anything like this.
-
Deployed. http://tsandler.heliohost.org/app
-
Resent. If you still don't get it let us know and we can try sending it to another email address or something.
-
There you go http://rassware.heliohost.org/test.jsp
-
Perl And Cgi Problems, Moving From Stevie To Tommy
Krydos replied to IFeelStupid's topic in Questions
Try removing everything from the honey directory, and see if it works? -
You're probably talking about an addon domain. Create the addon domain, and select the subdirectory to park the domain on. While the system is creating your addon domain it will automatically create a subdomain too.
-
See http://www.helionet.org/index/topic/27029-tommy-ftps-buggy/
-
[Solved] Account - Education.heliohost.org
Krydos replied to wal's topic in Suspended and Queued Accounts
To clarify on this point a bit. You can submit your email address at https://heliohost.org/signup/ at any time. You can click the link in your email at any time. You can select the features you're interested in using at any time. Then you get to the server selection page. If all of the servers are full you can't get past this point. There is a refresh button on this page that you can hit over and over as midnight UTC approaches. As soon as Tommy accounts are available you will be able to go to the next step. As soon as you make it to the next step you're good to take as long as you need. You don't have to complete the entire account creation in six seconds. You just have six seconds from when accounts become available to refresh the page and click next. Hopefully signups are open for a little more than 6 seconds tonight though. We keep raising the daily signup limit, but there are a lot of people trying to create accounts right now. Let us know if you have any other questions. You can donate at https://heliohost.org/donate Once your donation goes through (which can take up to 24 hours for foreign currency conversion to USD transactions) you will receive a special invitation email. The link in this email allows you to skip the midnight utc madness and just create an account whenever you want at your leisure. Whichever email address you use to send the donation is where the Tommy invitation will be sent to. -
Sorry, it looks like this one slipped through the cracks. I checked your backup and it's 136mb so you should have most if not all of your data. I have manually emailed your backup link. Let us know if you still don't receive it. If the only issue is your domain you can just change it using http://www.heliohost.org/classic/support/scripts/domain Your current domain is hugginglovetranslations.org which you're right about it not working. Have you purchased that domain yet? When I go to buy it it is listed as being available. We highly recommend using namecheap to purchase your domains. It looks like the price is $12.48 for a year right now. If you do decide to buy this domain we would appreciate it if you could use this link https://www.namecheap.com/?aff=102467 as Heliohost will get a cut of the sale. Once you've purchased it we can help you host the domain. Let us know if you need any help with anything.
-
We recommend you log in at https://heliohost.org/ to make sure your logins are counted. A quick rule of thumb is if you log in on a page that ends with .html such as https://tommy.heliohost.org:2083/frontend/paper_lantern/index.html your login won't be counted because .html files can't update our database.
-
-
Your account was suspended for inactivity, because you haven't logged into your account in the last 30 days. To reactivate your account, please visit https://www.heliohost.org/renew. To prevent this from happening in the future please remember to visit https://heliohost.org/ to log into your account at least once every 30 days. If you are still seeing the Account Suspended page after renewing your account, please clear your cache.
-
[Solved] Allow Parked Domains Not In Public_Html
Krydos replied to IFeelStupid's topic in Escalated Requests
Done. -
Here's an example of browser caching that I use. Just create a .htaccess file in your web root with the contents # Cache ExpiresActive On ExpiresDefault A0 # 1 YEAR - doesn't change often <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$"> ExpiresDefault A31536000 </FilesMatch> # 1 WEEK - possible to be changed, unlikely <FilesMatch "\.(js|css|jpg|jpeg|png|gif|swf)$"> ExpiresDefault A604800 </FilesMatch> # 3 HOUR - core content, changes quickly <FilesMatch "\.(txt|xml)$"> ExpiresDefault A10800 </FilesMatch> # 1 YEAR <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$"> Header set Cache-Control "max-age=31536000, public" </FilesMatch> # 1 WEEK <FilesMatch "\.(js|css|jpg|jpeg|png|gif|swf)$"> Header set Cache-Control "max-age=604800, public" </FilesMatch> # 3 HOUR <FilesMatch "\.(txt|xml)$"> Header set Cache-Control "max-age=10800" </FilesMatch> # NEVER CACHE - notice the extra directives <FilesMatch "\.(html|htm|php|cgi|pl)$"> Header set Cache-Control "max-age=0, private, no-store, no-cache, must-revalidate" </FilesMatch> <FilesMatch ".(js|css)$"> Header append Vary: Accept-Encoding </FilesMatch> Here's a good guide for getting the above the fold content to load faster on your page https://varvy.com/pagespeed/render-blocking.html
-
It looks like the domain dt22.net was hosted on Stevie. Please see http://www.helionet.org/index/topic/26726-stevie-didnt-boot/ and http://www.helionet.org/index/topic/26915-hard-drive-failed/ etc. We recommend creating an account on Tommy and transferring your latest backup over to get your website back online. Let us know if you need any help.
-
[Solved] Imagick Installation In The Server
Krydos replied to codename25's topic in Escalated Requests
# gs GPL Ghostscript 9.07 (2013-02-14) Copyright (C) 2012 Artifex Software, Inc. All rights reserved. @codename25, any particular reason why it has to be jpeg? What size should the output be? Also, this might be worth reading https://www.reddit.com/r/explainlikeimfive/comments/t7fhi/eli5_why_the_jpeg_format_is_so_bad_with_text/