Search found 3 matches

by dbg92
Mon Aug 21, 2006 10:52 am
Forum: Hosted Members discussion
Topic: FTP down?
Replies: 3
Views: 2499

FTP down?

Hmm, can't seem to access my site, or anyone elses hosted here. Could the server be down again?

Edit: it seems to be back, not sure about MySQL though.
Edit 2: while typing that edit ^ it's gone again

Edit 3: The HTTP is now working, but I can't access FTP. I also can't change my cPanel Password ...
by dbg92
Wed Aug 16, 2006 11:48 am
Forum: Suggestions
Topic: Ads on Beginner?
Replies: 3
Views: 1926

Ads on Beginner?

If you have a beginner account, do you have to have ads on your pages? I've found places that say yes and places that say no(see links below):

Yes
No mention in page, Page title says No
"Supported by points in the forums, no need to put any ads "

So, what are beginner accounts post supported ...
by dbg92
Tue Aug 08, 2006 12:52 pm
Forum: PHP
Topic: Logo of the website
Replies: 11
Views: 5434

GD Library

You can use this code: I built it using the info at php.net

<?php

header("Content-type: image/png");
$string = $_GET['text'];
$im = imagecreatefrompng("images/button1.png");
$orange = ****($im, 220, 210, 60);
$px = (imagesx($im) - 7.5 * strlen($string)) / 2;
imagestring($im, 3, $px, 9, $string ...