Jump to content

Byron

Moderators
  • Posts

    9,153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. 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
  2. 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.
  3. This support request is being escalated to our root admin.
  4. 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; } ?>
  5. This support request is being escalated to our root admin.
  6. This support request is being escalated to our root admin.
  7. It's showing as being Queued. Give it 24 to 48 hours to show and make sure you refresh you cache when you check.
  8. PHP Info is showing magic_quotes_gpc as being on. http://www.heliohost.org/phpinfo.php
  9. OK your site has been reactivated.
  10. This support request is being escalated to our root admin.
  11. This support request is being escalated to our root admin.
  12. This support request is being escalated to our root admin.
  13. Your site is ok. We are in the process of recovering from a DDoS attack. Your site should be up within the next 48 hours, probably sooner.
  14. This support request is being escalated to our root admin.
  15. I'm not seeing any more core files with my tests either. Looks like it's smooth sailing from here on out.
  16. OK this is what the ImageMagic folks would like you to try. http://www.imagemagick.org/discourse-serve...174&p=58514
  17. User sites have been down because of a DDoS attack. You can read all about it in the News forum.
  18. You'll need to login from the Heliohost Home page until user sites are back up.
  19. See if this thread helps you any djbb. http://www.webhostingtalk.com/showthread.php?t=857053 EDIT: Just incase that thread doesn't give you any ideas, let me get my story straight before I go posting all over the internets. What was our ImageMagick version and Imagick version before we were DDoS'ed (and all was well)? So then you upgraded to ImageMagick Version 6.6.1 and Imagick version 2.3.0 and that gave us core files so you went with Imagick version 2.2.2 and we're still at core files, right? If we don't come up with anything, how hard would it be to go back to what we had?
  20. So where do we go from here? btw, I think GhostScript is missing also. I don't use it but we had a user using it a few months back.
  21. Those are edited at your domain registrar. If you need to login to your cpanel you can do that from the heliohost home page. http://www.heliohost.org
  22. Users sites have been down since the DDoS attack. We should be back up in the next few days. In the meantime you can catch up on what's going on in the News Forum.
  23. What did you do to get Imagick to work when we upgraded php, do you remember? Did we loose something when we got attacked? I'm just wondering if it's something simple that we're missing.
  24. UPDATE: I've been doing some testing using different functions and found that not all functions cause a core dump. This script with CropImage() doesn't produce a core file. <?php header("Content-type: image/jpeg"); $image = new Imagick("../Banner/Image-Tool.jpg"); $image->cropImage( 20,20, 50,40 ); echo $image; ?> Ths script with charcoalImage() will cause a core file but other than that it still works. <?php header("Content-type: image/jpeg"); $image = new Imagick("../images/Back.jpg"); $image->charcoalImage(1, 2); echo $image; ?> And I believe it was thumbnailimage() that also caused a core file. Does that tell you anything djbob?
  25. No not at this moment. What usually causes a core dump? After you figure this out can we go back with the newest version? ================================= Although this thread isn't talking about our exact problem, it may give you some ideas on what to check? http://stackoverflow.com/questions/1034628...class-undefined
×
×
  • Create New...