-
Posts
46 -
Joined
-
Last visited
-
Days Won
1
Everything posted by HosterSlice
-
Heliohost Service Monitor (Created By Hosterslice)
HosterSlice replied to HosterSlice's topic in Customer Service
I would need to know the ports for charlie. Anyway, I G2G for now. I added some class to the site though. -
Heliohost Service Monitor (Created By Hosterslice)
HosterSlice replied to HosterSlice's topic in Customer Service
Is there anything else you would like it to monitor? As in update, here is what it currently monitors: stevie.heliohost.org Apache SSL Apache MySQL cPanel SSL cPanel SSL Webmail FTP WebMail POP3 IMAP SMTP Secure SMTP IMAP 4 Over SSL Secure POP3 johnny.heliohost.org Apache SSL Apache MySQL cPanel SSL cPanel SSL Webmail FTP WebMail POP3 IMAP SMTP Secure SMTP IMAP 4 Over SSL Secure POP3 www.helionet.org Apache MySQL www.heliohost.org Apache MySQL -
Heliohost Service Monitor (Created By Hosterslice)
HosterSlice replied to HosterSlice's topic in Customer Service
Just so you guys know, it's done. http://isup.hosterslice.asia/index.php -
Heliohost Service Monitor (Created By Hosterslice)
HosterSlice replied to HosterSlice's topic in Customer Service
I mean like csf.allow file -
Heliohost Service Monitor (Created By Hosterslice)
HosterSlice replied to HosterSlice's topic in Customer Service
Ok, I have my monitor made. I have 2 request: I need the IP: 67.23.243.93 unblocked in the firewall for the checks I also need a list of ports you want checked. -
[Solved] Suspended: Nichebuy
HosterSlice replied to indiascienceforum's topic in Suspended and Queued Accounts
Just saying, when you reach these stats: Total posts 1918 • Total topics 1692 • Total members 1791 • Our newest member prefileCori It's time to get a VPS -
This came up in my current project, so I thought I would share. <?php function rawshell($cmd) { $t = time()."txt"; $cmds = explode(";",$cmd); $out = ''; foreach($cmds as $c) { exec($c." &> ".$t); $out .= file_get_contents($t); } exec("rm -f ".$t); return $out; } echo rawshell("ls -al; whoami"); What this will do is give you the output you would get as if you had done it via ssh. **NOTE: THIS WILL NOT WORK ON SITES HOSTED HERE AS EXEC AND THE LIKE ARE DISABLED FOR SECURITY PURPOSES!**
-
Haha. Yes, very true.
-
I see. They need to get with the times Pretty sure it went obsolete years ago.
-
Yes. I do not know why cPanel still has that in its' software.
-
Heliohost Service Monitor (Created By Hosterslice)
HosterSlice replied to HosterSlice's topic in Customer Service
Ya, I'll make one. I'll be using a vps. I'll have a web portal running soon -
Heliohost Service Monitor (Created By Hosterslice)
HosterSlice replied to HosterSlice's topic in Customer Service
This actually is the correct section since this is about coding. Would be done in PHP or the like. -
Is it still being refused?
-
If I created an uptime monitor, would there be any interest?
-
[Answered] Can't Register Domain .heliohost.org In Registro.br
HosterSlice replied to ueluis's topic in Questions
No need to do that yet. Do that when ur domain is gonna expire. It costs $$ to move domain. -
You can export it then import it.
-
[Answered] Can't Register Domain .heliohost.org In Registro.br
HosterSlice replied to ueluis's topic in Questions
Tell your registrar they are stupid. You should have full control of your dns. Weather or not your config will work. -
[Answered] Wordpress Multisite To New Domain And Subfolder?
HosterSlice replied to djzebbie's topic in Questions
Just so you know, when it says root web, it means of the url. I'm not sure if you can add an addon domain, but thats what you want. Create folder wp/ Add an addon domain that points to wp/ Then, setup WP MS like normal If you need help in doing so, PM me. I can help. -
[Solved] Johnny Cpanel Timeouts And Slowness
HosterSlice replied to lillysaf's topic in Customer Service
Ah. That's very good. Can I ask where you data center is?- 25 replies
-
- Limited Access
- Partial Login/Acces
-
(and 1 more)
Tagged with:
-
[Solved] Johnny Cpanel Timeouts And Slowness
HosterSlice replied to lillysaf's topic in Customer Service
Why not just get vps's? Does this mean you guys are using a dedicated server?- 25 replies
-
- Limited Access
- Partial Login/Acces
-
(and 1 more)
Tagged with:
-
That means exactly what it means. In Class: skin_profile_3 you are trying call method: tabReputation which isn't there. You should look at the class for skin_profile_3
- 4 replies
-
- problem viewing profile
- Helionet
- (and 12 more)
-
I use Centos whenever I use Linux because Cent OS is the distro I started using when I got into computers. Plus the fact YUM is really simple, and makes it easy to install software.
-
[Solved] Stevie Cpanel Webmail Certificate Expired
HosterSlice replied to hrethel's topic in Customer Service
I see that it has expired, however google chrome doesn't seem to care. It should be simple enough for cPanel (WHM) to regen their certs however. -
Do you need to do this once? If so, you can just use a system call with php, if that is enabled.
-
Hi Walfix, There is an easy fix for this. First, you will want to use this function: <?php function mime_content_type($filename, $mimePath = './') { $fileext = substr(strrchr($filename, '.'), 1); if (empty($fileext)) return (false); $regex = "/^([\w\+\-\.\/]+)\s+(\w+\s)*($fileext\s)/i"; $lines = file("$mimePath/mime.types"); foreach($lines as $line) { if (substr($line, 0, 1) == '#') continue; // skip comments $line = rtrim($line) . " "; if (!preg_match($regex, $line, $matches)) continue; // no match to the extension return ($matches[1]); } return (false); // no match at all } ?> Then, download this file to your home folder: http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types I recommend addind the following to the bottom: application/x-httpd-php php This is because by default it does not have the php extension in it, Then, use the function like so: <?php $type = mime_content_type($filename); ?>