-
Posts
9153 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Byron
-
Did you try to renew your account here? http://www.heliohost.org/scripts/renew.php
-
Good! btw, I think this is what you want to parse htm files as php. AddHandler application/x-httpd-php5 .htm
-
Try refreshing your browser first. If your not using Frontpage Extensions than go to Frontpage Extensions at your cPanel and click Uninstall and see if that helps. You'll probably want to refresh before you check it again though.
-
Moved from Java Requests Welcome to Heliohost and please try to post in the correct forum next time.
-
Ho Ho Ho Merry Christmas!
-
Not until the admnistrator returns and we don't know when that might be.
-
Try it at another time of day. It's more than likely somebody abusing system resources while your trying to login.
-
Sometimes it takes a few days.
-
PHP fopen www.google.com/search? Forbidden [WORKED AROUND]
Byron replied to openmp3's topic in Website Management and Coding
I thought you knew that after I posted this link showing the source of that search? http://byrondallas.heliohost.org/test/CURL_COOKIE.php btw, nice work. Seems to work great and it's fast too! -
If this is only happening every once in awhile then it's probbly because somebody is abusing system resources. If this is a constant error then you probably changed something in your .htaccess file that doesn't agree with the server.
-
You don't want to put anything in: /home/reiki only you can see that directory. You want to put everything inside this directory: /home/reiki/public_html which is this: jadepillow.com If you make a file (not a folder) called index.html it will be your home page for this domain jadepillow.com
-
Your site has been restored.
-
This is the public_html directory: http://jadepillow.com/ That's the directory where you build your site. You can add directories to your public_html just like the images directory and the cgi-bin directory that's already there. What you need to do to keep from showing your public_html files is to create a index.html file and call it your home page and then when somebody goes to this site: http://jadepillow.com/ they will see your index.html page or your home page.
-
PHP fopen www.google.com/search? Forbidden [WORKED AROUND]
Byron replied to openmp3's topic in Website Management and Coding
You could use curl, but you said you didn't really want to go that route. Source of /search?filter=0&hl=en&num=1&start=0&q=%22Simon%20and%20Garfunkel%22%20-%20%22Boxer%22 http://byrondallas.heliohost.org/test/CURL_COOKIE.php -
Your back up. Try to login at least a couple of times a month to make sure.
-
Just upload that text file I posted and give it a .php extension and then change the email address to yours inside the script. It should work fine then.
-
Here's one you can use: http://byrondallas.heliohost.org/temp/email_form.php http://byrondallas.heliohost.org/temp/email_form.txt
-
PHP fopen www.google.com/search? Forbidden [WORKED AROUND]
Byron replied to openmp3's topic in Website Management and Coding
This works for me. Returns Google's source code. http://byrondallas.heliohost.org/test/remote_file.php <?php if ($fp = fopen('http://www.google.com/', 'r')) { $content = ''; while ($line = fread($fp, 1024)) { $content .= $line; } $content = htmlspecialchars($content); echo $content; } else { echo "An error occured when trying to open the specified url"; } ?> -
PHP fopen www.google.com/search? Forbidden [WORKED AROUND]
Byron replied to openmp3's topic in Website Management and Coding
file_put_contents and file_get_contents are taking the place of fopen and fwrite. There's no difference in the amount of time, not that I've noticed. I just tested this on my site and it works fine: <?php $file = fopen("index.html","w"); fwrite($file, "<html><body bgcolor=\"blue\" text=\"white\">Hello World!</body></html>"); fclose($file); ?> -
I'm sorry, I was thinking of Perl Modules. We can install those ourselfs. Imagick is a php class of ImageMagick, not Python.
-
PHP fopen www.google.com/search? Forbidden [WORKED AROUND]
Byron replied to openmp3's topic in Website Management and Coding
As far as I know fopen still works. I didn't test it but you should use the php5 functions anyway. Much better and easier. file_get_contents(); and file_put_contents(); example: $content = file_get_contents("$url"); file_put_contents("YOUR_FILE", "YOUR_CONTENT"); Go to php.net for more info. http://php.net/manual/en/function.file-get-contents.php -
You can also make a backup of your entire site at your cpanel. It will make a tar.gz file that gets dumped in your home directory. You can then move it to your public_html directory to give to your new host adminstrator.
-
Yes that's right, but you need to make sure that you use all lowercase letters when logging in. If you still can't login than it's a problem for the administrator and he isn't around and I don't know when he will be.
-
cPanle login failure and password reset issue
Byron replied to Icon Web Technologies's topic in Customer Service
Are you entering your username and password in lowercase? As far as resetting your password I can't help you because I don't have access to the server. We've been having problems with new registration for over a month and waiting on the administrator to correct them. Nobody knows where he is right now. He hasn't been around since late October. He disappears sometimes. And yes I am Support Admin but I don't have access to the server like I stated before. I wish I could be more helpful but I can't. Sorry! -
cPanle login failure and password reset issue
Byron replied to Icon Web Technologies's topic in Customer Service
Have you ever been able to login to your cpanel and how long ago did you register? You can try this and see if it works: http://iconwebtech.com:2082/frontend/x3/index.php If that doesn't work than you'll have to wait for the administrator and nobody knows when that will be.
