Computer problems,Computer help
*AX SOFT>>>Programming & Design

Uploading Website help!!!?


Hello. I bought a webhosting service from Go Daddy. I used iWeb to create a website. I published it to folder. Now I am trying to use go daddy's FTP client to upload it & it keeps saying broken pipe. What is broken pipe??? Please help!! Thanks.

That is a server error. If you can use a local FTP to upload instead of GoDaddy's, i would try that way. A lot easier to use something like SmartFTP and set it up to connect.

GoDaddy should have the FTP use on their Support page:

http://help.godaddy.com/article_list.php...
https://www.godaddy.com/gdshop/ftpinfo.a...


Hope this helps.

Ron

Connection to the webserver through the FTP client is not functioning. Can you try publishing thru the WYSIWYG editor? Send a trouble ticket through your GoDaddy control panel regarding the Broken Pipe issue or check their FAQ's.

Two possible fixes for your problem:

First, always flush your browser cache (Temporary internet files) after making *any* changes to your configuration or access-control code. This forces the browser to send your request to the server where your code can have some effect, rather than serving your request from its locally-cached copy of the page.

Second, you may need to add the line

Options +FollowSymLinks

ahead of the code posted above. If not already set by your hosting company in your server's configuration, this will be required in order to enable mod_rewrite, as stated in the documentation.

So with that and a few other fixes and speed-up tweaks, you get:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.example\.com娄192\.168\.127\.1 [NC]
RewriteRule (.*) http://example.com/$1 [R=301,L]

In some cases, attempting to add this Options line may cause an error if your host has already set it up and does not allow "users" to change Options settings.

Change the broken pipe "娄" character above to a solid pipe before attempting to use this code; Posting on this forum modifies that character

I thing you don't buy you're space .. you just buy domain .. and this is you're problem .

Tags
  General - Computers & Internet   Software   Security   Programming & Design   Facebook   Flickr   Google   MSN   MySpace
Related information
  • Visual Basic- StartingHelp?

    sure you can do it that way.. but you will need to make sure you are getting the floor of the change/2000... or you can use a series of while loops.. while intchange >= 2000 { intchange-= ...

  • Unix command helps!!?

    date -v -1d "+%D" >yesterday.txt (better read the man page to figure out why/how this works) ls -a /bin >~/temp/bin.txt

    ...
  • How do I make a groupbox border appear and darker and black?

    Basically the border code has a lot of border styles and some are pretty neat if the border size is set correctly. Like the style "inset": border: 5px inset #000; A simple border: ...

  • Adobe Photoshop Ghost Rider text recreate poster???

    Yes, you can create it in photoshop alone. No need additional images. 1. Steel effect can be achieved by gradient fill in blending options. Or, if your PS do not have blending option, just add a...

  • Changing text in a Div Box?

    Since the div has a class assigned to it, you refer to the class with CSS: <div class="Div1">HOW WOULD I CHANGE THIS TEXT???</div> <style type="text/css"> ...

  • Need help with Java programming (involving arrays)?

    Just write one yourself. It's easy. // array1 is already defined double total = 0; for( int i=0; i < array1.length; i++){ total+=array[i]; } double avg = total/array1.length;

    ...
  • Trying to understand a piece of code in VBA [excel]?

    Sub Processor() ->Beginning of subroutine:Processor Dim ConstantCells As Range ->Define ConstantCells as a range of cells Dim FormulaCells As Range ->like above statement Dim cell As...

  • How do I keep a running total score in c++?

    Set the value to 0 above the loop and add to the value test = 0; loop{ score = 15; test+=score; } cout << test

    ...
  •  

    Categories--Copyright/IP Policy--Contact Webmaster