-
Posts
9153 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Byron
-
Your right, that code didn't have the is_file function in it originally and I just added it without checking from my previous code. This code doesn't need the path added. <?php # NO DIR if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != ".." && is_file($file)) { echo "$file<br>"; } } closedir($handle); } ?>
-
It must restart early in the morning because I checked his domain a 12:00 am PST and it still showed queued.
-
Check my code above and see if that will work for you. Here's anther one that will list the files to any directory you set the path to. EDITED for the is_file function <?php // Open directory $path = "/home/byron/public_html/test"; $dir = dir($path); // List files in directory while (($file = $dir->read()) !== false) { if ($file != "." && $file != ".." && is_file("$path/$file")) { echo "$file<br />"; } } $dir->close(); ?>
-
Are you wanting to list just the files in your root drectory? This will list the files in the directory it's run in. <?php # NO DIRS if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != ".." && is_file($file)) { echo "$file<br>"; } } closedir($handle); } ?>
-
I honestly couldn't say, I just know it takes a little while for it to show.
-
Give it about 24hrs after creating the parked domain.
-
OK just hold tight for awhile till djbob reads this thread and he'll look into it for you.
-
Double check your directory permissions in your home directory: public_html - 750 www - 750 If those are correct then you'll have to wait for djbob.
-
FrontPage Ext. comes default when you register. If you don't use FrontPage Ext. then it's best to uninstall them anyway. Just go to your cPanel and click the link FrontPage Extensions and click uninstall. That should fix your problem. Frontpage is looking for the htaccess file which isn't there anymore.
-
The .htaccess is in your HOME directory. You need to delete it. Use this to see your htaccess file http://nworld.heliohost.org:2082/frontend/...den=1&dir=/ If your still not seeing a htaccess file to delete by using that url I posted than you've got other problems and djbob will need to check it out. I just Googled that error message and this was the solution. Since you've deleted your htaccess file in your public_html folder, now you need to go to your cPanel and uninstall FrontPage Extensions. FrontPage Extensions relies on the htaccess file to work, but your probably not using FrontPage Ext. anyway.
-
Yes really! If your htaccess file was deleted it would show a 404 Error but instead it's showing a Forbidden Error which it should for an htaccess file. EDIT: I take that back, your htaccess file may be deleted but since your directory permissions are wrong than it might not show a 404 Error. And Wizard was right, it's your directory permissions that's causing you the problems. Directories should be 755 and html files should be 644. Your file manager will set them correctly by default. You also need to go to your home directory and set the permissions for 'public_html' and 'www' to 750.
-
If it's been over 30 days since you last logged into your cpanel than that's probably the reason why. If that's the case you'll need to re-register. You should be able to use your same domain name and password but your old files will be gone.
-
It's probably because the sign ups have reached thier limit for the day. You'll need to try again tomorrow.
-
Your .htaccess file hasn't been deleted. http://nworld.heliohost.org/.htaccess
-
Did you try to renew your account here? http://www.heliohost.org/scripts/renew.php
-
Server Name - stevie or stevie.heliohost.org
-
Well I know you can't use this flag php_flag register_globals Off Because register_globals is off by default anyway. And I'm not sure about this one: php_flag safe_mode Off Have you tried using joomla without these flags? php_flag safe_mode Off php_flag display_errors Off php_flag file_uploads On php_flag magic_quotes_runtime Off php_flag register_globals Off php_flag output_buffering Off
-
Do you now anything about htaccess and do you know what your ip address is? If you do than add this to your htaccess file and make a "Under Construction" page for the 403 Error. ErrorDocument 403 http://your_site.heliohost.org/under_construction.html Order Deny,Allow Deny from all Allow from 208.113.134.190 If your ip isn't static you might have to add it several times like this: ErrorDocument 403 http://your_site.heliohost.org/under_construction.html Order Deny,Allow Deny from all Allow from 208.113.134.187 Allow from 208.113.134.189 Allow from 208.113.134.190 Allow from 208.113.134.191 Allow from 208.113.134.192 See how the last 3 numbers change?
-
It's probably the content since my email goes directly to my inbox at gmail. What kind of information are you sending? EDIT: I also sent an email from my heliohost account to a friend of mine who has a hotmail account and she recieved it ok. Hotmail was blocking heliohost a few weeks ago but the adminstrator worked with hotmail and they took us off of the blacklist.
-
Because he reads all posts. If you don't get a reply from him in 24hrs then make a post to him with your domain name and your problem in Customer Service.
-
Topic moved from Website Management and Coding. This is being worked on now by the administrator.
-
The administrater will need to look into this so please be patient. No, not at this time.
-
Could you post the domain name you registered with.
-
They're not using your account to send emails, they are just using your address. They could use my address if they had it and wanted too, but the email headers would still show thier true host.
-
The administrator is working on the problem now. Hopefuly it will be fixed soon.
