473,491 Members | 2,221 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

What am I doing wrong with site publishing?

Doc
I'm trying to get to the bottom of a problem I've been having with
publishing a freebie website.

I'm using a program called WebEasy. Using a very simple site upload as an
example, in this case a picture of a couple of antique chairs. I paste a
single .jpg image, and save the web page file, which gets saved as an .alb
file.

Then, after choosing the "build website" function, the following files are
found in the folder for the website:

chairs_website.htm
chairs_website_001.htm
chairs_website000p00.gif
chairs_website001001.jpg
chairs_website.txt - which contains the following text:

2004/09/18 17:28 chairs_website001001.jpg
2004/09/18 17:28 chairs_website000p00.gif
2004/09/18 17:28 chairs_website_001.htm
2004/09/18 17:28 chairs_website.htm

Now, going through the publish functions, brings up 4 tabs -

- REMOTE ACCESS with fields for "host name", "user identifier" and
"password".
- GENERAL with fields for "initial remote folder", "initial local folder",
"timeout" and "local IP port"
- WWW SITE with fields for "website address" and "primary page"
- FIREWALL which I don't think is applicable.

Is it correct that the "primary page" is the page that the initial website
address should point to or is that not correct? The choices under this field
are a number of choices like index.htm, index.html, default.htm,
default.html etc. I understand what most of these are for but one of my
confusions is that no files by any of these names are created when building
the site. "Initial Local Folder" I understand is the folder on the computer
where the site files are stored.

The program assigns a package name, in this case "chairs_website" and then
uploads the files. However, when doing the "run site", I get directed to an
"error website cannot be found" message.

I'm able to go to the page if I use the name of one of the photo files at
the end of the website address, however I get the sense that this is a
jury-rigged way to do it. I feel like there's a fundamental problem with one
of more of the steps of uploading/naming the website.

Any assistance will be appreciated.
Jul 23 '05 #1
6 1998
Doc

"Doc" <do*********@REMOVEhotmail.com> wrote in message
news:el*****************@newsread2.news.atl.earthl ink.net...

Is it correct that the "primary page" is the page that the initial website
address should point to or is that not correct? The choices under this field are a number of choices like index.htm, index.html, default.htm,
default.html etc. I understand what most of these are for but one of my
confusions is that no files by any of these names are created when building the site.

As a correction, after going through the publish process, somewhere along
the line, an index.htm file apparently was created.
Jul 23 '05 #2
"Doc" <do*********@REMOVEhotmail.com> wrote in
news:el*****************@newsread2.news.atl.earthl ink.net:
Is it correct that the "primary page" is the page that the initial
website address should point to or is that not correct? The choices
under this field are a number of choices like index.htm, index.html,
default.htm, default.html etc. I understand what most of these are for
but one of my confusions is that no files by any of these names are
created when building the site. "Initial Local Folder" I understand is
the folder on the computer where the site files are stored.


The "primary page" to which this program of yours refers is the document
which some Web servers look for when given a path that ends with a
directory name. If the path of the page that the browser requests is
/information/blah/, the server will send the contents of index.html inside
the "blah" directory. Or it will send the contents of index.htm, or
default.htm, etc, depending on what Web server program is used. It doesn't
matter to the end user; after all, a Web server's internal directory
structure does not need to have anything to do with the path in the URL.
Different Web servers behave differently.

Jul 23 '05 #3
On Sun, 19 Sep 2004 00:58:02 +0000, Doc wrote:

"Doc" <do*********@REMOVEhotmail.com> wrote in message
news:el*****************@newsread2.news.atl.earthl ink.net...

Is it correct that the "primary page" is the page that the initial website
address should point to or is that not correct? The choices under this

field
are a number of choices like index.htm, index.html, default.htm,
default.html etc. I understand what most of these are for but one of my
confusions is that no files by any of these names are created when

building
the site.

As a correction, after going through the publish process, somewhere along
the line, an index.htm file apparently was created.


Give an example URL. In fact post all the resulting URLs to your pictures
and whatnot and I'll tell you which should be the "primary page" and why.
It'll be too confusing without the actual URLs to refer to.

--
Jeffrey Silverman
je**********@jhu.edu
** Drop "PANTS" to reply by email
Jul 23 '05 #4
Doc

"Jeffrey Silverman" <je**********@jhu.edu> wrote in message
news:pa****************************@jhu.edu...
Give an example URL. In fact post all the resulting URLs to your pictures
and whatnot and I'll tell you which should be the "primary page" and why.
It'll be too confusing without the actual URLs to refer to.


Here goes:

http://home.mpinet.net/~docsavage20/...ebsite_001.htm
Jul 23 '05 #5
On Tue, 21 Sep 2004 22:23:24 +0000, Doc wrote:

"Jeffrey Silverman" <je**********@jhu.edu> wrote in message
news:pa****************************@jhu.edu...
Give an example URL. In fact post all the resulting URLs to your pictures
and whatnot and I'll tell you which should be the "primary page" and why.
It'll be too confusing without the actual URLs to refer to.


Here goes:

http://home.mpinet.net/~docsavage20/...ebsite_001.htm


Wow. Your site is a mess, if you ask me.

I suggest you use another web publishing tool. one that doesn't have a
"loading" page that meta-refresh-0 redirects the page to the wrong page.

Let me explain.

The link you gave is to a page that has a picture of a chair on it.
Nothing else. No links, no text, no nuthin'.

What are you trying to achieve with this?

Then, when I drop off the name of the page, "chairs_website_001.htm",to
see what the "index" of the site looks like, it turns out that there is a
<META refresh> tag in there that redirects you to
"chairs_website_001.htm". I doubt this is quite what you want.

Typically, on a webserver, there is a default page that is served up to
the browser when a website *directory* is accessed. Often this page is
named "index.html" but it is also nearly as often "default.htm". The
actual name is variable, and is configured within the web server
configuration.

So, then, take an example website, http://www.example.com. Say there is a
subdirectory, "chairs", which you would access with the following URL:

http://www.example.com/chairs/

And in the directory are the following files:
/path/to/webroot/chairs/index.html
/path/to/webroot/chairs/image1.gif
/path/to/webroot/chairs/image2.jpg

see? No index.html mentioned in the URL. But the page you see when you
browse to that URL is "index.html"

Index.html contains textual information and links to other pages. NOT just
a big picture in the middle of the page.

It looks like YOUR publishing software did create this index.html
(although they incorrectly named it index.htm, a pet peeve of mine in this
Microsoft-centric world of ours) only the index.htm REDIRECTS the browser
to the page that you assigned in the web publishing tool as the "primary
page".

Frankly, this is shitty. It is a non-standard and goofy way of creating a
web site.

If you have more questions, feel free to ask. I think this is enough info
for now.

--
Jeffrey Silverman
je**********@jhu.edu
** Drop "PANTS" to reply by email
Jul 23 '05 #6
Doc

"Jeffrey Silverman" <je**********@jhu.edu> wrote in message
news:pa****************************@jhu.edu...
On Tue, 21 Sep 2004 22:23:24 +0000, Doc wrote:

"Jeffrey Silverman" <je**********@jhu.edu> wrote in message
news:pa****************************@jhu.edu...
Give an example URL. In fact post all the resulting URLs to your pictures and whatnot and I'll tell you which should be the "primary page" and why. It'll be too confusing without the actual URLs to refer to.
Here goes:

http://home.mpinet.net/~docsavage20/...ebsite_001.htm


Wow. Your site is a mess, if you ask me.

I suggest you use another web publishing tool. one that doesn't have a
"loading" page that meta-refresh-0 redirects the page to the wrong page.

Let me explain.

The link you gave is to a page that has a picture of a chair on it.
Nothing else. No links, no text, no nuthin'.

What are you trying to achieve with this?


Right, that's all there is. Just a pic. Someone asked for a link. I had put
it up so people could see the chair for another reason. Someone asked for
the link to the site I referred to.

If you have more questions, feel free to ask. I think this is enough info
for now.


Appreciate your response, I need to digest your info before asking further.

Thanks
Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
1577
by: godwin | last post by:
Hi all, I wanna thank Martin for helping out with my ignorance concerning execution of stored procedure with python. Now i have decided to write a web app that googles into my companies...
47
9076
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
0
976
by: John Bailey | last post by:
Okay, I am publishing a site done in ASP .Net 2.0. The site runs fine locally from source, I am publishing it mainly because two of the report assemblies do not come up on Crystal Tech when running...
6
3822
by: ewolfman | last post by:
Hi, I've read many posts in several news groups, but can't figure out how to publish my website. The specific error I'm getting (on the "successfully published website") is "Could not load the...
3
1433
by: Mark Olbert | last post by:
I was able to publish my first ASPNET2 site to my hosting server earlier today without any problems. I gave it the name of subdirectory that would hold the site, entered my ftp password (even though...
1
1386
by: philip | last post by:
I tried to publish on my address 'philippewarein.com' a minimal site. There is only one page, with some words : "This is my first site" This is the HTML code of this page, code created by Visual...
5
1533
by: Andy G | last post by:
I'm having a hell of a time publishing my first VS 2005 web site. All it tells me is publish failed. Is there any place that gives me a hint on why it failed? I'm typing in the website address...
4
1443
by: Gary Hasler | last post by:
Our site, of which about half the content is PHP pages and is on a Linux Apache server, is currently administered with Microsoft FrontPage 2003. Okay, now that you've finished laughing, let me...
9
1647
by: AG | last post by:
Using VS2005 Pro. I just deployed a ASP.NET 2.0 website (not web application) with the option to make it updatable. VS deployed all aspx, ascx files, but not all image or html files. It also...
0
7115
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7154
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7360
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5451
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4881
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4578
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3086
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3076
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1392
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.