-
Posts
9153 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Byron
-
Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. http://wiki.heliohost.org/wiki/Clear_your_cache -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
-
This support request is being escalated to our root admin.
-
Your site is still in the queue. Give it another day or two and you should be up.
-
I keep looking for my 4000th post.
-
I didn't think about your folder. Most people don't change the default folder permissions. You shouldn't need anything greater than 755 folder or file on the heliohost servers, except on the Python egg_cache. Congradulations jje!
-
Thanks jje!
-
I tried his script on my site with permissions 777 like he stated and got a 500 error. After I set permissions to 755 it was ok. Maybe he has something else wrong if he changed the permissions.
-
Thanks jje. Exactly where did you go in WHM to do this? Also can we restrat the mail server by going to Mail Server (Exim) in the WHM?
-
Permissions should be 755.
-
Don't create a new account on Stevie until we completely delete the johnny account.
-
I've been trying to help him through PM's. I deleted the Johnny account and then he registered on Stevie. The ACP showed that the johhny account was deleted but it's still showing: benimeserim.org After a couple of days and his Stevie account still showing as queued I deleted it hoping that maybe the johnny account would finally get completely deleted when the corruption scriopt ran. Anyway what needs to be done is this account needs to be completely deleted: benimeserim.org
-
[SOLVED] Unable to log into cPanel
Byron replied to oTc Sales & Marketing's topic in Customer Service
Please start a new topic in Customer Service and give a little bit of a description as to what happens when you try to login. -
We are aware of the problem and working to correct it.
-
FTP File/Code Uploading: (Simpleviewer)
Byron replied to Britt's topic in Website Management and Coding
You need ALL of those files for that particular application to work. You might want to just start over and upload that zip file again and then unzip it and read the readme.html file that comes with the application. If you don't like the name of the folder that it opens up, then just rename the folder and that will keep you from having to move all of the files to a new location. -
Seems mail is down again on Stevie. The php mail() function isn't working again.
-
Yeah it's probably something your just missing since the enviroment is different from you home computer. There's not a whole lot I can help you with when it comes to python. I would make sure that a simple python script was working on your site though.
-
Have you created your database yet? You could put your database inside your home directory where only you could see it. It would look something like this: $db = sqlite_open("/home/byron/load_db");
-
The mail system seems to be down on Stevie right now. @Administrators: has anybody contacted djbob recently about the mail being down?
-
Yes we're aware of some email problems but it would be more helpful if you posted your domain and server you are on.
-
Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. http://wiki.helionet.org/Clear_your_cache -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
-
FTP File/Code Uploading: (Simpleviewer)
Byron replied to Britt's topic in Website Management and Coding
Just looking at your page and the source, I see that your missing this file: http://www.brittanyandersonphoto.heliohost...simpleviewer.js Once you start to load that file maybe that will correct your problem. If not they have a support forum that can help your with thier application: http://www.simpleviewer.net/simpleviewer/support/ -
PHP mail() function isn't working
Byron replied to Nathan Johnson's topic in Website Management and Coding
It got fixed and it was working yesterday but I just tried right before I posted this reply and it's down again. -
FTP File/Code Uploading: (Simpleviewer)
Byron replied to Britt's topic in Website Management and Coding
What exactly are you trying to display? -
Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. http://wiki.helionet.org/Clear_your_cache -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
-
It can go in the same directory as your form. I'm using sqlite with php and this is how I connect to my database. <?php $loadavg_array = explode(" ", file_get_contents("/proc/loadavg")); $new_load = $loadavg_array[2]; $day = date("D"); $date = date("d"); $month = date("M"); $year = date("Y"); $time = time(); # open DB $db = sqlite_open("load_db"); $sql = "INSERT INTO serverload (day, date, month, year, time, load) VALUES ('$day', $date, '$month', $year, $time, $new_load)"; # execute query sqlite_query($db, "$sql"); ?>
