-
Posts
9153 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Byron
-
I can't say what your problem is, but this email form works fine on our servers: http://byrondallas.heliohost.org/helio/email_form.php Text version: http://byrondallas.heliohost.org/helio/email_form.txt
-
Like this and it's a good idea to send a content type header: $headers = "From: $name <$email>\n"; $headers .= "Reply-to: $name2 <$email2>\n"; $headers .= "Content-Type: text/plain; charset=iso-8859-1\n";
-
We're aware of this problem and in the process of correcting it, although it may take a few days to a week.
-
Wave an image with just a few lines of code using the Imagick Class (only on Stevie). This is the original image: http://byrondallas.heliohost.org/php/imagick/landscape.jpeg Here is the waved image: http://byrondallas.heliohost.org/php/imagick/wave.php Here's the code. You can use any color for the backgroundcolor. If you want the background to be transparent (like my example) you'll need to set the format to gif or png. <?php $image = new imagick("landscape.jpeg"); $image->setimagebackgroundcolor("transparent"); $image->waveImage(20, 240); $image->setImageFormat('png'); # uncomment line below to write image to directory # $image->writeimage("landscape_wav.png"); header("Content-Type: image/png"); echo $image; ?> You can play around with the amplitude and length, this line: $image->waveImage(20, 240); to get different wave patterns.
-
Ok djbob knows and he said he would take a look at it, BUT this is a very busy week for him. So if it's not an easy fix or he can't determine the problem right off, it may be a few more days.
-
-
Thanks Krydos for taking care of this!
-
Directory ,'/tmp/fs_Sessions/' Is Not Writable Or Readable By The Php User
Byron replied to anush's topic in Customer Service
Did you check file permissions on .tmp/fs_Sessions/ -
Ok it seems he's forgotten about it. I'm going to go ahead and email him with a link to the Escalated thread.
-
What I was talking about is that when I go to the WHM on Stevie and then down to the DNS Functions to Edit DNS Zone, his domain doesn't come up. Maybe that doesn't matter? Anyway I'm not where I can do the fix you posted. Can another admin. take care of this?
-
@mhea: I was actually addressing the other admin. I was thinking that maybe they had already talked to him or emailed him.
-
Ok I've deleted the account on Johnny but we've still got a problem. @admin.: When I go to check for zone records at the WHM for this domain: hprobotics.co.cc I'm not seeing that domain come up. How do we fix this?
-
@xaav: Is djbob aware of this issue? If not maybe we should make him aware of it.
-
It's because you have an account on Johnny that is showing as suspended with the exact same domain name. Would you like me to delete the account on Johnny?
-
Ok I've unsuspended your account. Let this be a warning though.
-
You can change your main domain if you like but you might want to think about using a Parked Domain instead. http://wiki.helionet.org/Changing_your_main_domain
- 3 replies
-
- Main Domain
- Domain
-
(and 1 more)
Tagged with:
-
Glad your problem got solved! Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
-
Sorry but it looks like your site has been completely deleted.
-
Try this link to your htaccess file. It may ask for a login: Go To htaccess
-
Are you going through the cpanel file manager? You should be able to edit the htaccess file just like any other file.
-
An easier way to set the time zone for your site would be to add this to your root htaccess file: SetEnv TZ Europe/Helsinki That's how I set my time zone to EST. SetEnv TZ US/Eastern Then you don't need to set it in any of your php scripts.
-
This test page I made shows the time moving ahead just like it should. Does it do the same for you? http://byrondallas.heliohost.org/test/date-time.php <html> <body> <h2> <?php $datetime = date("Y-m-d H:i:s"); echo $datetime; ?> </h2> </body> </html>
-
Yeah I guess that's ok just as long as the admin. know that it's not on our servers.
-
It's hard to help you with only the information you provided. Can you give us an example of what your talking about and maybe the code? BTW, the server is on Pacific Standard Time.
-
But it is being used for a site on heliohost, right? Sorry I can't help your with JQuery.
