-
Posts
1,643 -
Joined
-
Last visited
-
Days Won
38
Everything posted by Ice IT Support
-
[Solved] Suspended: Wapmafia
Ice IT Support replied to wapmafia's topic in Suspended and Queued Accounts
Your account was suspended for causing high server load. I have unsuspended your account, but please try to limit the load you put on our servers as it slows down not only your site, but the sites of all other HelioHost users sharing your server. If you still see the suspended page, please clear your cache. NOTICE: This is your second suspension for high server load. A third suspension for this reason will be permanent. -
Does The Heliohost Support Ms Access Database?
Ice IT Support replied to yaka88's topic in Website Management and Coding
I believe we support connections to remote Access databases, assuming you are on Johnny and using ASP. Not 100% positive though. -
[Solved] Suspended: Zauriel2
Ice IT Support replied to zauriel2's topic in Suspended and Queued Accounts
Your site is loading fine for me, and the database looks correct. It is possible your ISP has caching enabled, so it's something in between you and our server. Let us know if you still have issues. By the way, your account is on Johnny. -
This code connects to a database and executes a command $oracledb["host"] = "MYSERVICE"; # service name in the tnsnames.ora file $oracledb["user"] = "myuser"; # username $oracledb["pass"] = "mypass"; # password $oracledb["library"] = "OCI"; $connect_id = ocilogon($oracledb["user"], $oracledb["pass"], $oracledb["host"]); $query = "SELECT * FROM table"; $statement = ociparse($connect_id, $query); ociexecute($statement); $result = array(); while(ocifetchinto($statement, $tmp, OCI_ASSOC + OCI_RETURN_NULLS + OCI_RETURN_LOBS)) { array_push($result, $tmp); } ocifreestatement($statement); var_dump($result); # result is here From http://stackoverflow.com/questions/4583962/connect-to-an-oracle-database-using-php
-
[Solved] Suspended: Hicham
Ice IT Support replied to hicham's topic in Suspended and Queued Accounts
An administrator needs to look into this issue. -
How are you uploading? FTP? cPanel?
-
[Solved] Queued: Robdog75
Ice IT Support replied to Robdog75's topic in Suspended and Queued Accounts
Please clear your cache. It's loading for me. -
Follow these steps to change your home page to main.php: Login to cPanel Scroll down to the Files section and click on the File Manager icon (it says File Manager under it) A window pops up with options. Select the Web Root option, and check the Show Hidden Files (dotfiles) checkbox Click OK Create a file named main.php using the New File button in the top left corner of your screen (if it does not yet exist) Now look for a file named .htaccess If it does not exist, create it with the New File button Select your .htaccess file and click on Edit above In the window that opens, type (or paste) DirectoryIndex main.php Click Save Changes in the top right Your site will now go to main.php instead of index.php
-
Ios And The Html5 <Video> Tag
Ice IT Support replied to ethanh's topic in Website Management and Coding
QuickTime on iOS will only play the video if it is in a video format, at least in Safari. I don't know if that can be modified on a jailbroken device. Perhaps try it using the Chrome web browser app. -
[Solved] Suspended : Alexindo
Ice IT Support replied to Alexandro123's topic in Suspended and Queued Accounts
Your account was suspended for running 4 cron jobs in one day. Users are limited to two cron jobs per day. If you need more cron, I recommend using a free service such as setcronjob.com. Your account has been unsuspended. -
[Solved] Suspended: Gtsoft
Ice IT Support replied to gtsoft's topic in Suspended and Queued Accounts
Your account was suspended for too much cron. Users are limited to two cron jobs per day. If you need more, I suggest using a free service such as setcronjob.com. Your account has been unsuspended. -
[Solved] Suspended : Dizbadx
Ice IT Support replied to dizbadx's topic in Suspended and Queued Accounts
I'm sorry, this account cannot be unsuspended. -
Why won't this menu code work?
Ice IT Support replied to mandytw's topic in Website Management and Coding
Have you included the jQuery file? <script src="http://code.jquery.com/jquery-latest.min.js"></script> -
[Solved] Suspended: Lpull20
Ice IT Support replied to lpull20's topic in Suspended and Queued Accounts
Nope, this time was for sending too many emails. Please limit your email usage to 50 messages per day. Your account has been unsuspended. -
Sounds like brute force is enabled on your account. Please give it some time, or wait for an admin to manually disable brute force on your account.
-
[Solved] Suspended: Pete20R2
Ice IT Support replied to pete20r2's topic in Suspended and Queued Accounts
Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated. -
I'm sorry, I cannot understand that. The website URL is usually located at the top of your browser window. That takes you directly to that page. Your home page can simply be accessed by typing your domain name into the address bar (at the top of your browser window). If this doesn't answer your question, please try to be more specific.
-
Mysql Query , Not Working?
Ice IT Support replied to conor1's topic in Website Management and Coding
Oh! Silly mistake on my end. The MySQL query isn't working because of special characters. <?php include('config.php'); $value = addslashes(' <font color=green><u>Test.....</u> </font>'); mysql_query("INSERT INTO `message` (`message`) VALUES ('$value')") or exit(mysql_error()); ?> -
What are your current configuration settings?
-
Username? Domain? Server? Also, be sure you use the full address (example: username@domain.com).
-
Mysql Query , Not Working?
Ice IT Support replied to conor1's topic in Website Management and Coding
Try this: <?php include('config.php'); mysql_select_db('username_dbname'); mysql_query("INSERT INTO `message` (`message`) VALUES (' <font color=green><u>Test.....</u> </font>')") or exit(mysql_error()); ?> Be sure to change username_dbname to your values.