Jump to content

Byron

Moderators
  • Posts

    9153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. Yes. The proxy will store the cookies then. Try connecting with a proxy and see if that helps.
  2. Byron

    Subdomains

    You want to use the Addon Domain feature at your cpanel to do this. It will create a subdomain automatically. Also point your domain to our nameservers: ns1.heliohost.org ns2.heliohost.org
  3. That usually doesn't have anything to do with your script. It has to do with your email provider. If somebody reports spam coming from heliohost to yahoo than yahoo starts sending it to your spam folder. I checked that email form earlier today and it went straight to my inbox at gmail.
  4. OK notebookvault.heliohost.org has been deleted. Go ahead and create a new account. You may have to wait until tomorrow though.
  5. I could delete your old account and you could re-register a new account with the name you want. That would solve both issues. What is the username and domain name of your account?
  6. This support request is being escalated to our root admin. Note to djbob. His account is showing as active but neither is username or domain is showing in the database. Username: matt Domain: http://straightshaving.info/
  7. OK I'm gonna go ahead and delete the .org account (if you don't object) and bring this to the attention of the root admin.
  8. That's what the signup script normally does to underscores, but what is really strange is that domain isn't showing in the database but straightshaving.org is with your ip. Did you accidently use .org to create an account?
  9. It has to be done by an Administrator.
  10. You don't need helions to have an ad free site. We provide it for NOTHING!
  11. Yes I'd like to know the answer to that question too.
  12. I'm not seeing that domain in the database so you'll need to register again. The reason your getting that error is because we have several users that have usernames that start with matt. mattbud mattcon mattho etc. You'll probaly have better success if you can use another username and make sure you don't use an underscore and everything is all lowercase.
  13. Upload this and make sure you change the email address to yours and give it a php extension. http://byrondallas.heliohost.org/temp/email_form.txt Looks like this: http://byrondallas.heliohost.org/temp/email_form.php
  14. Tell me what username and domain name you signed up with and I'll check.
  15. You made a post in Customer Service that you wanted us to delete your accounts (btw, your only allowed 1 account). So which is it, delete your accounts or change the name on one account?
  16. We don't use Helions anymore.
  17. This support request is being escalated to our root admin.
  18. I'm escalating this to the root admin. Note to djbob. He's getting this php error: Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home/spookyj/public_html/wp-includes/locale.php on line 122 http://anonymouswebchronicle.co.cc/
  19. That was an Addon Domain right? If that's correct than go to this thread and make a post. Be sure to post your: Username: Default Domain: Addon Domain: And a description of your problem. http://www.helionet.org/index/index.php?showtopic=5553
  20. Have you edited your htaccess file or added any programs that would automatically edit the htaccess? Also check you Error log at your cpanel for explanation.
  21. This support request is being escalated to our root admin.
  22. Found this on Google. http://byrondallas.heliohost.org/temp/wap_redirect.txt <?php //Do not remove the below code. This will lead to voilation of Terms Of Use /**************************************************************************** Copyright (C) <2009> <Dr. Anurag Singh> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. This script is written by Dr. Anurag Singh Title: Wap Redirect Version: 4.0 Email: tom.anu007@gmail.com, Homepage: http://tom.anu007.googlepages.com/wapredirect Special thanks to Harald Hope, Website: http://techpatterns.com/ And also to Joseph George Jacobs , Email joe@spitzbucket.com Special thanks to Anna Rogers , Email missannalr@aol.com for PSP Browser support -------------------------------------------------------------------------------- Latest Version (4.0) Wap Redirect Now Supports iPhone , PSP , WAP & usual PC browser Detection. Now you can Support four Different websites (for PC, Mobile, iPhone & PSP) through a single Link version (4.0) -------------------------------------------------------------------------------- Version 3.0 had some Dramatic but Desirable Changes in the Code Thanks to Alan Reiblein. He had to say this " The version (3.0) supports both PSP & WAP bowser Detection along with usual PC browser detection in the same script. So now you can support three different websites (for PC , Mobile & PSP) through a single link Version(3.0) Some changes made to check for WAP before anything else Will also check what doument types the user's browser can accept also some slight tweaking by using an array of identities to match against the User Agent string Alan Reiblein EMail alan@cedar-view.co.uk Website Http://www.cedar-view.co.uk Updated as many WAP Browser identities I could find " -------------------------------------------------------------------------------- iPhone support by Ben Lopez benlopez7@gmail.com ****************************************************************************/ //Configuration global $userBrowser; global $userAccept; // Exit this area // Your wapsite //enter the link you want user to be redirected in case of WML browser $wmllink = "http://wap.yahoo.com/"; // Your website //enter the link you want user to be redirected in case of PC browser $htmllink = "http://www.google.com"; // Your PSPsite //enter the link you want user to be redirected in case of PSP browser $psplink = "http://www.yourPSPsite.com"; // Your iPhone site //enter the link you want user to be redirected in case of iPhone browser $iPhonelink = "http://www.iphone-site.com"; //end of your edits //There is no need to edit any information from this point on //however in case if you want to contribute please do so //please be sure to let me know about the changes //Detect the browser // put in lowercase to aid searching $userBrowser = strtolower($_SERVER['HTTP_USER_AGENT']); //Detect acceptable document types $userAccept= strtolower($_SERVER['HTTP_ACCEPT']); //Remove the below // quotes. //It helps to check if there is any error when editing //If everything is all right it will display the browser information //please remember to put // back after testing or no redirection will occur //echo "HTTP_USER_AGENT = " . $userBrowser . "<br>HTTP_ACCEPT = " . $userAccept; function checkidentity($fromThis,$identities){ //this function iterates through the array identities matching to see if in the $fromThis string // returns true if found otherwise false foreach ($identities as $identity) { if (stristr($fromThis,$identity)){ //found return true; } } //not found return false; } if (stristr($userAccept,'wml')) { // This can accept wml (Wireless Meta Language files) so let's assume its WAP) // trouble is accept can contain wildcards ... but here we go $ub="WML"; } else { // Lets look at the browser //specify an array of identities to match against $wapidentity = array('wapbrowser','up.browser','up/4','mib','cellphone','go.web', 'nokia','panasonic','wap','wml-browser','wml' );// can add other identities to this list $pcidentity = array( 'mozilla','gecko','opera','omniweb','msie','konqueror','safari', 'netpositive' ,'lynx' ,'elinks' ,'links' ,'w3m' ,'webtv' ,'amaya' , 'dillo' ,'ibrowse' ,'icab' ,'crazy browser' ,'internet explorer' ); // can add other identities to this list $pspidentity= array('PlayStation Portable'); //can add other identities to this list $iPhoneidentity= array('iphone'); //can add other identities to this list if (checkidentity($userBrowser,$wapidentity)){ $ub="WML"; } elseif (checkidentity($userBrowser,$iPhoneidentity)){ $ub="iphone"; } elseif (checkidentity($userBrowser,$pspidentity)){ $ub="PSP"; } elseif (checkidentity($userBrowser,$pcidentity)){ $ub= "PC"; } else { $ub="WML"; // can't find anything else so let's hope it is WML } } //Code for redirecting based upon the results switch ($ub){ case 'PC': header("Location: ".$htmllink); exit; case 'WML': header("Location: ".$wmllink); exit; case 'PSP': header("Location: ".$psplink); exit; case 'iphone': header("Location: ".$iPhonelink); exit; } ?>
  23. This support request is being escalated to our root admin.
  24. This support request is being escalated to our root admin.
  25. It's showing as being Queued. Give it 24 to 48 hours to show and make sure you refresh you cache when you check.
×
×
  • Create New...