Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 33

Thread: The FTP Script is Here

  1. #21
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    Two different applications. The FileZilla server is separate from the FileZilla FTP Client.

    And if your looking to switch hosts let me know I have a link to a really good deal
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  2. #22
    Join Date
    Oct 2005
    Posts
    255
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    oh. i c, i use ftp clien only.. i dunno anything about the server... oops, what would be the link.. cuase i am really thinking about switching...
    Hey new design new look, goto xudas for personal webdsign help.. (:

  3. #23
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    Use this link to see the main page of offers. I have been with them for over 2 years now. They just merged with a smaller business to offer more servers.

    Support response times varies from 30 minutes to about 3 hours (depending) or you can pay $1 to escalate your trouble ticket. (I haven't had to do this yet).

    You really do get what they say, and I have been overly happy with them since I switched.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  4. #24
    Join Date
    Oct 2006
    Posts
    110
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs down

    Quote Originally Posted by pssparkman View Post
    Jas, what file type does the .htaccess have to be? (htm, php, html, etc.)
    FAIL!!!

  5. #25
    Join Date
    Oct 2005
    Posts
    255
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    hey does site5, allow you to have your own ip address, also, say if i had a service like tinyurl.com
    where they let users have a url,
    I want to create a service on my site(1and1 dont allow it) where when a user creates a profile on my site it will give them a subdomain name for every users like
    myname.host.com..
    can site5 do that...
    I believe they are called wildcard subdomains
    there services look awesome by the way and thats alot of space for that much....
    Last edited by insanemonkey; 11-24-2007 at 04:40 AM.
    Hey new design new look, goto xudas for personal webdsign help.. (:

  6. #26
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    you have unlimited subdomains, unlimited pointers, wildcards are allowed. Site5 just started hosting domains, so most of us don't use there domain service yet. I still buy my domain through godaddy and point the DNS to site5.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  7. #27
    Join Date
    Oct 2005
    Posts
    255
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default omgz

    I cant believe you buy domains from godaddy, they are the most crappiest service out there, I here so many bad reveiws about them and their hosting services, but after my hosting(6month period) service is over I will try to transfer all my stuff and try them out.. sounds great.. Thankyou guys!!
    Hey new design new look, goto xudas for personal webdsign help.. (:

  8. #28
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    I don't do anything through godaddy except buy my domains (3 domains, with private registration.. 8 bucks a year? yeah I will do that) My webhost site5, handles everything else.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  9. #29
    Join Date
    Jan 2007
    Posts
    629
    Thanks
    10
    Thanked 28 Times in 28 Posts

    Default

    I updated the .htaccess file so that the max size works correctly. Before there was an error where it still would not accept anything over 10MB. Note that the value of post_max_size should be bigger then upload_max_filesize.
    Here it is:
    Code:
    		php_value upload_max_filesize 50M
    		php_value max_input_time 70
    		php_value post_max_size 65M

    (I would put this on the original .htaccess file, but I can't edit it any more. . . )
    Thanks and keep enjoying!
    --Jas
    function GreatMinds(){ return "Think Like Jas"; }
    I'm gone for a while, but in the meantime: Try using my FTP script | Fight Bot Form Submissions

  10. #30
    Join Date
    Jan 2007
    Posts
    629
    Thanks
    10
    Thanked 28 Times in 28 Posts

    Default

    Heh. I noticed a problem with form.php: the error messages don't display. I wondered why, and then I noticed:
    Code:
    <!--========================================//-->
    		<div style='width:600px; margin:auto; font-size:1px;'>$error</div>
            <h2><p style='text-align: center'>TERMS OF USE:</p></h2>
            <hr></hr>
            <p>YOUR TERMS OF USE GO HERE</p>
            <p style='text-align: center'>I agree:<input type='radio' onclick=agree() name='1'>
    		I disagree:<input type='radio' onclick='javascript:history.back()' name='1'></p>
    <!--========================================//-->
    This is a minor cosmetic problem, but I thought that I would let everyone know. To fix it, just change the number or remove the font-size. The reason I put it in there was so that, if there is no error, the div doesn't take up space. If you want to continue to avoid that problem, you can replace the
    Code:
    <div . . . . >$error</div>
    with
    Code:
    $error
    and put the div in each error message, like so:
    Code:
    	if($_GET['error'] == 1){
    		$error = '<div style='width:600px; margin:auto'><h3><u>ERROR:</u> You must put a title.</h3></div>';
    	}elseif($_GET['error'] == 2){
    		$error = '<div style='width:600px; margin:auto'><h3><u>ERROR:</u> That file format is not supported.</h3></div>';
    	}elseif($_GET['error'] == 3){
    		$error = '<div style='width:600px; margin:auto'><h3><u>ERROR:</u> Your file failed to load.</h3></div>';
    	}elseif($_GET['error'] == 'x'){
    		$error = '<div style='width:600px; margin:auto'><h3><u>UPLOAD:</u> Your file has been uploaded to the server.</h3></div>';
    	}
    Last edited by Jas; 04-29-2008 at 07:02 PM.
    --Jas
    function GreatMinds(){ return "Think Like Jas"; }
    I'm gone for a while, but in the meantime: Try using my FTP script | Fight Bot Form Submissions

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •