-
Posts
24,608 -
Joined
-
Last visited
-
Days Won
871
Everything posted by Krydos
-
Your site is working fine for me but this information might help you at diagnosing 500 internal server errors in the future: Your post title says queued though. If you see the queued page when you visit your domain that means that you added your domain 24 hours or less ago or you just haven't cleared your browser cache. Sometimes browsers cache the queued page and can continue showing it for weeks when your site is actually working for everyone else.
-
I didn't write the account creation system, but I suspect it truncates the passwords sometimes when they are really long or maybe if they contain strange characters. I doubt you're going to create another account again, but if you do you could try starting with a shorter password using [A-Za-z0-9] to make it a bit simpler and let us know if it works any better. Obviously longer, randomer, more bizarre character passwords are stronger, but my guess would be that some characters are removed to prevent database injection.
-
Database tables?
-
Just wanted to make sure since you seem to miss my posts.
-
Yeah, no problem. It is extra work for us to provide reports like this so we only provide the extra information if people ask. That said, I do wish more people were willing to try to fix things. Most users are just like "i suspnededed!!! k thanx luv u" and then they just get suspended again since they didn't change anything. Create another post in customer service for inquiries related to load. If you tack it onto this topic that is already marked as [solved] we are less likely to notice it. We keep up to 48 hours of MySQL load data at any time.
-
Problem Running A Flash File On Dalhous.heliohost.org
Krydos replied to dalhous's topic in Website Management and Coding
What do you mean it works fine, but it doesn't work? Are you saying that the author of the flash .swf code claims it works in all browsers? Does it work on another server but not Heliohost? Are you saying that it doesn't work in one browser, but does in some others? -
Yeah, but what does it do? If the instructions included the command rm -rf / would you do it just because it was in the instructions?
-
It wasn't invisible, but you definitely missed it. If you haven't yet I would also recommend reading through and doing some of the suggestions in this link http://v1.srcnix.com/2010/02/10/7-tips-to-prevent-php-running-out-of-memory/ I already linked it to you once, but since your main problem is memory usage it could probably help you.
-
After seeing these two queries: Count: 4 Time=365.80s (1463s) Lock=0.01s (0s) Rows=41.0 (164), b2scs[b2scs]@localhost SELECT folder AS type, element AS name, params FROM joomla_extensions WHERE enabled >= N AND type ='S' AND state >= N AND access IN (N,N,N) -- Count: 1 Time=205.52s (205s) Lock=0.00s (0s) Rows=11.0 (11), b2scs[b2scs]@localhost SELECT m.id, m.title, m.module, m.position, m.content, m.showtitle, m.params, mm.menuid FROM joomla_modules AS m LEFT JOIN joomla_modules_menu AS mm ON mm.moduleid = m.id it's no wonder you got suspended, but here are some other of your high load queries too: Count: 17 Time=40.39s (686s) Lock=0.34s (5s) Rows=0.0 (0), b2scs[b2scs]@localhost INSERT INTO `joomla_session` (`session_id`, `client_id`, `time`) VALUES ('S', N, 'S') -- Count: 23 Time=29.61s (681s) Lock=0.29s (6s) Rows=0.3 (7), b2scs[b2scs]@localhost SELECT `data` FROM `joomla_session` WHERE `session_id` = 'S' -- Count: 17 Time=26.71s (454s) Lock=0.10s (1s) Rows=0.0 (0), b2scs[b2scs]@localhost UPDATE joomla_content SET hits = hits + N WHERE id = N -- Count: 13 Time=34.71s (451s) Lock=0.05s (0s) Rows=0.0 (0), b2scs[b2scs]@localhost INSERT INTO `joomla_updates` (`update_site_id`,`name`,`description`,`element`,`type`,`folder`,`client_id`,`version`,`detailsurl`,`infourl`) VALUES ('S','S','S','S','S','S','S','S','S','S') -- Count: 16 Time=25.43s (406s) Lock=0.32s (5s) Rows=0.0 (0), b2scs[b2scs]@localhost UPDATE `joomla_session` SET `data` = 'S' , `time` = 'S' -- Count: 12 Time=33.21s (398s) Lock=0.01s (0s) Rows=0.0 (0), b2scs[b2scs]@localhost DELETE FROM `joomla_session` WHERE `time` < 'S' -- Count: 185 Time=1.82s (336s) Lock=0.02s (3s) Rows=25.6 (4744), b2scs[b2scs]@localhost SELECT `update_id` FROM `joomla_updates` WHERE element = 'S' AND type = 'S' AND client_id = 'S' AND folder = 'S' -- Count: 10 Time=31.80s (317s) Lock=0.11s (1s) Rows=8.1 (81), b2scs[b2scs]@localhost SELECT m.id, m.title, m.module, m.position, m.content, m.showtitle, m.params, mm.menuid FROM joomla_modules AS m LEFT JOIN joomla_modules_menu AS mm ON mm.moduleid = m.id -- Count: 4 Time=41.86s (167s) Lock=0.16s (0s) Rows=0.0 (0), b2scs[b2scs]@localhost UPDATE joomla_categories SET hits = hits + N WHERE id = N -- Count: 5 Time=28.03s (140s) Lock=0.01s (0s) Rows=0.0 (0), b2scs[b2scs]@localhost SELECT `session_id` FROM `joomla_session` WHERE `session_id` = 'S' LIMIT N, N -- Count: 3 Time=38.19s (114s) Lock=0.00s (0s) Rows=0.0 (0), b2scs[b2scs]@localhost SELECT `extension_id` FROM `joomla_extensions` WHERE element = 'S' AND type = 'S' AND client_id = 'S' AND folder = 'S' -- Count: 1 Time=56.90s (56s) Lock=0.14s (0s) Rows=1.0 (1), b2scs[b2scs]@localhost SELECT id, password FROM joomla_users WHERE username='S' -- Count: 1 Time=53.11s (53s) Lock=0.00s (0s) Rows=1.0 (1), b2scs[b2scs]@localhost Select Distinct SQL_CALC_FOUND_ROWS record.* From joomla_facileforms_records As record Order By record.submitted ASC Limit N, N -- Count: 1 Time=40.48s (40s) Lock=0.00s (0s) Rows=1.0 (1), b2scs[b2scs]@localhost SELECT params FROM joomla_extensions WHERE folder = "S" AND element ="S" -- Count: 1 Time=36.70s (36s) Lock=0.00s (0s) Rows=41.0 (41), b2scs[b2scs]@localhost SELECT folder AS type, element AS name, params FROM joomla_extensions WHERE enabled >= N AND type ='S' AND state >= N AND access IN (N,N,N,N)
-
%CPU 15.0 /usr/bin/php /home1/gaddons/public_html/forum/posting.php
-
Deployed. http://infopar.heliohost.org/infopar_catechesi/
-
I don't really understand what the problem is, because you even include in your own post how to fix it? cPanel isn't actually something that Heliohost wrote, we just bought a license for it and run it on our servers. If it was a huge critical error that only affected Heliohost and the cPanel developers showed no signs of ever fixing it then it would be worth it for me to get into the source code and make some modifications, but this is just a tiny cosmetic flaw that results in a popup box if you do a really unique series of actions. It might even be fixed already in a newer version of cPanel that we haven't upgraded to yet. I don't think it really matters either way. If the error prevented some critical action from taking place like you would never be able to create a new directory through File Manager or FTP ever again then it would be worth the effort to fix it. Maybe I just don't understand your post enough to recognize why this is such a life threatening error for you. Anyways, if it makes you feel better I was able to recreate the same popup box as you describe by following the exact steps that you listed and not any other way. No amount of recreating your account will fix something that affects the whole server.
-
Your account was resuspended for failure to take care of the malware problem during your allotted 24 hour period. The offending files have been deleted, and your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. Since you obviously have no idea what is going on, I'll explain it in really simple terms for you. If you don't secure your website hackers can upload malicious files like the one that was detected by our virus scanner. We suspended your account to let you know about the problem. You asked for an unsuspension, we told you what the problem was, but you didn't fix it. What a c99 shell does is allow hackers to upload whatever they want or change your files. It might not have anything to do with passwords if you upload this malicious script for the hacker in the form of a free theme or plugin. If you don't secure your website or if you keep uploading these types of files yourself your account will continue to be suspended for malware or defaced by the owners of the malware. I get the feeling that you're trying to imply that Heliohost is insecure, but that's incorrect. Our servers are quite secure, but it's your responsibility to make sure everything you upload to your account is secure.
-
General ideas on how attacks occur, what software is vulnerable to what types of attacks, and especially discussion on how to guard against those types of attacks are ok. Using Heliohost's servers to host attack tools, attacking other servers with scripts on Heliohost, or coordinating attacking certain targets is not ok. There are tons of ignorant users out there that don't understand why or how their websites keep getting defaced, and can't come close to understanding how to prevent it from happening again so bonus points to anyone who can help users like that on these forums. Hacking is kind of like STDs. If everyone ignores it, refuses to talk about it, and learns nothing it only gets worse. The more knowledge people have the better off we all are.
-
If you don't want to use FTP because of security concerns, and can't figure out how to get FTPS working, why not use SFTP on port 1373?
-
Ok, so what does it do?
-
Your password has been manually reset, tested, and emailed to your contact address. Let us know if you're still having trouble logging into your account.
-
Yes, that's fine. However, if your account is found to be violating the ToS http://wiki.helionet.org/Terms it will still be suspended regardless of any notices. As long as you police your own content and delete any content that would be a violation you should be fine.
- 1 reply
-
- copyright
- user-generated content
-
(and 1 more)
Tagged with:
-
The easiest way to find out what time a server thinks it is would be to create a time.php file with these contents: <?php echo date( "H:i", time());
-
Your account is showing up as clean now. Thank you for taking care of this.
-
Please clear your cache.
-
Deployed. http://tristan.heliohost.org/OutputServ/ There doesn't seem to be anything in it though.