HTML Website Editing Software

marty

10 MW
Joined
Apr 19, 2007
Messages
3,028
Location
Buffalo, New York USA
3 computers ago I used Microsoft FrontPage. Bought this book:
http://www.amazon.com/Easy-Microsoft-FrontPage-2000-Snell/dp/0789718073/ref=sr_1_1?s=books&ie=UTF8&qid=1358601295&sr=1-1&keywords=easy+microsoft+frontpage+2000
519CCZW31NL._SL500_AA300_.jpg

Love this book! Lots of color pictures. Now I see it selling for 1¢. Don't buy books as a investment.

I have been trying to wrap my head around Microsoft Expression Web 1 from 2006. Now I see Microsoft Expression Web 4 and some newer Expression Design [free download]
http://www.microsoft.com/expression/
I am not comprehending CSS :?
CSS = Cascading Style Sheets. All the pages of a web site are tied together. Looks like a time saver when building a web site. Change one file and all the pages change like magic. Here is a sample template from Microsoft Expression Web 1
http://webmasterwebdesign.com/mic_exp_web_sml_bus4/
Open, copy, paste, rename, and upload that web site in about 2 minutes.

Wondering what you all using for WYSIWYG, HTML editing software?
WYSIWYG = What You See Is What You Get. Like a word processor. Microsoft Word, OpenOffice Writer, LibreOffice Writer, etc.
HTML = Hyper Text Markup Language. I try not to mess with the code.
 
Primer:

HTML is a subset of SGML; once you know SGML – everything else is gravy including XML, XSL, and XAML. Tagged languages are as easy as pie; once you know one – the similarities between other tagged languages is akin to learning in-country dialects (California, Texas, Bronx, Tennessee, etc. all speaking ‘Merican). :wink:

A simple HTML page is laid out as follows:
  • Document Type Declaration (DocType; optional, not required, but helpful especially when dealing with multiple devices and languages and standards)
  • Page Declaration – HTML, required
    • Heading, required 99.9% of the time
    • Body, required if you want a browser to portray the information
And that’s it. So here I am writing in Visual Notepad and I can begin coding a page without an editor:
Code:
<HTML>
<HEAD>
<Title>Here’s my new page</TITLE>
</HEAD>
<BODY>Hello World!
<P />
Look, I just added a paragraph return!!
<BR>
Now a line return.
<P />
Good bye World.</BODY>
</HTML>
Inside the HEAD, we can place the Title (which I used), define keywords for search engines, link to Jscript for more fancy processing, and also link to Formatting information - CSS, plus much more. Lot’s can be accomplished within the HEAD, and it can be simple or intensely complex depending on the need and role.

CSS is a formatting script language and is very easy to understand if you can break it into the simple parts: Object, Attributes (some affected by Events like hover), values. All formatting applies to the Body and elements within the Body, although some advanced users can configure objects outside the Body as well. Let’s format our Body:

There are two ways we can apply formatting:
  • In-line, that is within the Object Tag
  • Or by Reference with an embedded style sheet or linked style sheet.
In-line world look like this:
Code:
<BODY bgcolor=”#FFFFFF”>…</BODY>

Here I defined the Background Color as 255, 255, 255 in Hex for RGB which is the same as “White”. We could also say bgcolor=”White” and the browser would know that too.

In a CSS statement, we’d do it a little different; we’d define it as:
Code:
BODY 
{
background-color: #FFFFFF;
/* we could add more formatting with each additional line */
}

CSS standards were defined after the HTML standards. In-line existed first although is slowly being depreciated from use - so there are two methods for accomplishing formatting that mostly overlap. A good developer knows where and when to use them. :)

Wrapping up, I do not need an editor to write code; I can write my own editor, or I can write in Notepad on any version of Windows, or on a Mac; just give me a plain text editor and let me do my job.

A good HTML editor won’t give a hoot what O/S or platform you are using; they all work to varying degrees well. The choice of editor is a personal preference. When I am working on my projects, I use both Visual Studio and Expression Blend because most of my UI work is in Silverlight and WPF, although I still enjoy ASP.NET. Other associated languages used for web development include CSharp (C#), Jscript, SQL. On the other side of the fence there’s Java and Php; I can read them but 99% of my clients use .NET technologies (and I don’t want to waste time on which is better; we all have opinions).

But a the basic level, knowing HTML and CSS is good. You can create documents with embedded media and share them with your pals and associates across nearly all contemporary devices. The trick though is learning how each device displays the information – and their quirks, then have the skill to adjust the formatting on the fly. Once upon a time there was Mozilla and no other. Then Netscape & Internet Explorer. Then Konqueror, FireFox, Opera, Safari, Chrome, and a host of others + out-of-browser experiences, consoles, set-top boxes, smart phones, tablets, and crawlers… the list keeps evolving.

Start with the basics. Figure out how to write simple code first, then use an editor to speed up the process.

I would not use Microsoft Word for HTML authoring ever: It puts far too much information into the document that is nearly useless for the web.

I have never been a fan of FrontPage before or after Microsoft bought them. Parts of FrontPage became Visual InterDev (the development application before Visual Studio). And I swear parts of SharePoint also inherited bits and pieces of FrontPage as well. If you are a purist and can write your own code and move files – you don’t need these applications. (I have never used Dreamweaver so I cannot comment). But in business, for complex multilevel applications involving several teams, Visual Studio is my anvil for hammering out solutions and I use it nearly every day for years. It’s overkill for people just starting out though.

Like I said, start with a plain text editor. Use a good HTML Reference (I’m big on MSDN, but the W3schools is also very good); you don't need to buy books - everything you need to publish is freely available. Outline what you want to do and go for it! Experiment. Learn to read the code like a novel. 8)

ADDENDUM: WebMatrix, free.
I forgot to mention this application. I personally have never used it cos I have Visual Studio, however it has quite the following and appears to be useful for many languages and device targets. Once upon a time there were three of us on a team and we wrote a website publishing application that ran within a web browser; it was sort of a FrontPage-Lite that used "scriptlets" to author and manage content for simple web applications, like the local high-school soccer team or grandparents' gallery... nothing too complex. Anyway, it was destined for MCIS 3.0 which never shipped. But Webmatrix looks like a vastly improved application suite - and it's free.

Good hunting, KF
Writing in code since 1985.
 
I want to learn to read code as much as I want to learn to read Chinese.

Spent a few days fudging around with Microsoft Expression Web and Adobe Dreamweaver. I have become real good at screwing up web templates.

Look at Visual Studio Ultimate 2012 $13,299 :shock:
Download the free version, Visual Studio Express 2012 for Web
After waiting for over a hour for the Microsoft company to fill my hard drive with all kinds of crap. It says "failed to install" or something like that. Gives me a link to a forum where others are having the EXACT problem with no solution listed. Go to add remove programs and remove a whole load of Microsoft crap. Make me want to install Ubuntu.

See lots of bad reviews on WebMatrix.

Download some free programs:
http://www.kompozer.net/
http://www.w3.org/Amaya/
Don't think I want to spend time learning to work these programs.

Download Coffeecup Visual Site Designer 7.0 $49 with free trial.
http://www.coffeecup.com/designer/
Going to spend some time reading the help. It's a PDF file 48 pages.
Code:
<head>
<meta name="generator" content="CoffeeCup Visual Site Designer, Version 7.0 Build 26 for Windows">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta http-equiv="generator" content="CoffeeCup Visual Site Designer (www.coffeecup.com)">
<meta name="created" content="Sun, 20 Jan 2013 13:45:59 GMT">


<title> My Website </title>
Code:
</style>
</head>

<body>

<div class="Object3"><span class="textstyle0">Hello World!<br>
</span></div>

<div class="Object4"><span class="textstyle0">Good bye World.<br>
</span></div>

</body>
</html>
 
Dude, even I do not need all the horns and whistles of Visual Studio Ultimate. :) The version I run cost me about $2400 in 2009 and included the entire MSDN SDK library of nearly all MSFT business & office applications except for the really spendy corporate stuff that I’d never use, and some older multimedia titles and games. Plus, I had 5-seat licenses for Windows and SQL which is completely worth it if you are a serious developer and run a business, included free updates for a year, plus a script for MSDN Magazine for 3 or 4 years.

However, for simple web design – even what I paid would be considered massive overkill. I understand your frustration. The mistakes you make are because you don't know yet - and that's ok; it's part of learning. So I’ll say it one more time:

  • For what you want to do - you can acquire good tools for free. You can train yourself with solid public references for free. Create a basic page, understand what that page is doing, then move to the next step. The fact that you are formatting your posts indicates some interest and care on how you want to present information.

The two free tools I use most often are Notepad and any web browser. 8)

Debug Time:
Code:
<head>
<meta name="generator" content="CoffeeCup Visual Site Designer, Version 7.0 Build 26 for Windows">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta http-equiv="generator" content="CoffeeCup Visual Site Designer (www.coffeecup.com)">
<meta name="created" content="Sun, 20 Jan 2013 13:45:59 GMT">

<title> My Website </title>
The only thing of value in this statement is the <HEAD> & <TITLE>. Some meta tags are for reference by the authoring application with one exception:
Code:
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
This is useful if your site is viewed in other countries that read in any other language other than English. It literally means: The page is formatted in plain text as HTML using the character set UTF-8 which is pretty standard and common for Indo-European languages.

Code:
</style>
This is the end tag of STYLE so I can’t help you here.

Code:
<div class="Object3"><span class="textstyle0">Hello World!<br>
</span></div>

<div class="Object4"><span class="textstyle0">Good bye World.<br>
</span></div>
Two items to discuss:
  • SPAN formats a single line or contents within the line. We can use it format Bold, Italic, backcolor, etc.
  • DIV (Division) tags are far more interesting and capture whole segments of page elements for all sorts of clever presentation. Each is an object that can be manipulated. They can have lines, paragraphs, images, media, transparency, motion, shadow, act as popups, containers of other DIVs, be hidden or visible, enabled or disabled, force scrolling… the list goes on and on. They are perhaps the heart and soul of page organization within the page itself.

Elements can be manipulated by TAG, by “CLASS”, or by “ID” or by any combination thereof. :)

FWIW, I wouldn’t mind learning Chinese… the more important question would be which dialect? I don’t have much interest in learning Russian though cos I never plan to go there. But China – yeah I’d like to see Hong Kong and Beijing, possibly others.

Every skill that I learned in my tiny life began as a hobby... except perhaps Drawing; for as long as I can remember, I knew how to draw... starting with crayons.
True story. KF :)
 
How I got started - I want to build my own Sukkah! OK whats a Sukkah? Go here to see - sukkahs.com

Went to the computer guy and told him of my plans to build a Sukkah. He showed me how to buy the name sukkahs.com Great! I ask Computer guy to build me a web site, he gives me a copy of FrontPage. Now I need a computer. Computer guy says go get your credit card. Computer guy says do you want a black computer or a beige computer. I said beige. Got a Windows 95 computer! Learned to work with FrontPage. Built sukkahs.com Must have done something right because I sold lots of Sukkahs.

Go here to see...... sukkahs.com/secrets this is information from porno people. Search Engine Secrets. Information is probably outdated, but I think it really worked because I am sill number one when you type 2 words into Google. Try canvas sukkah

TEXT is what the search engine spiders are looking for. I HATE flash.

When I built sukkahs.com I did not know what a </div> tag was? Sukkah site is all tables. Now I am wondering what the search engine spiders like to see? Today's web site building software is putting way more mumbo jumbo in the code. Please see code below to see what I mean by mumbo jumbo.
Code:
<style type="text/css">

   /* TEXT STYLES */

.textstyle0 {font-family:Arial;font-weight:normal;font-style:normal;font-size:15px;text-decoration:none;color:#000000;}


   /* OBJECT STYLES */

div.Object9 { position:absolute; padding-right:5px; top:20px; left:68px; z-index:0; text-align:left; width:111px; }
div.Object10 { position:absolute; padding-right:5px; top:94px; left:70px; z-index:1; text-align:left; width:155px; }



   /* BODY STYLES */

body {
 margin:0px;
 padding :0px;
 text-align:center;
 height:100%;
 width:100%;
 background-color: #ffffff;
}


   /* LINK STYLES */

A:link { color:#0000ff;}

A:visited  { color:#800080;}

A:hover  { color:#00ff00;}

   /* IMAGE STYLES */

img { border:0 none}



   /* CONTAINER RULES */

#container { position:relative; margin:0px auto 0 auto; height:600px; width:740px; text-align:left; padding-left:0px;}

</style>
One more thought on Sukkahs and Electric Bicycles. You will all hate me for saying this. Don't try to build your own Sukkah. Building a Sukkah is a lot like building a Electric Bicycle. It's way easier, faster and usually cheaper to buy one all done.
 
Dreamweaver. Nothing compares.
 
>> Dreamweaver
I’ve never used it, though it has a good following.

Personally I believe you must be able to read code to debug and improve websites; no editing software or wizard can fix a buggy design or advance the use of technology. You have to be educated to make these decisions. :)

>> Sukkahs
Ahh, got it; nice :)
The website does look a bit lacking on the aesthetic – but hey, it’s functional!

OK, so you got the basic authoring setup on a budget. What you have can work just fine, although you may need to tweak some of the source code manually: No editor is perfect. The fact is – Expression Blend is the ONLY wysiwyg editor that I’ve used for UI that ever got it 99.9% right – however it’s lame on the backend and that’s why I depend in Visual Studio for validation and debug. For what you are doing, you don’t need those tools.

Tables are the way we placed objects before HTML4 and DHTML. It used to be that you couldn’t have more than 3 tables nested without the browser having an interpretation problem. I use Tables when formatting is straight-up. I use Divs when I need something a little more than what a table can give me, especially on positioning and margins and visibility.

Let’s take your requests in order:

Search Engines:
I can help you with that for free.
  1. Create a simple text file called robots.txt in Notepad.
  2. Place the empty file in the ROOT directory of your website.
  3. Add spiders that you want like this…
Code:
User-agent: Googlebot
Crawl-delay: 10
User-agent: msnbot
Crawl-delay: 20

To prevent a spider from crawling, add a line like this:
Code:
User-agent: careerbot
Disallow: /

On advanced websites you can get logs of the UserAgents. Spiders have a unique agent that often include links to their spider support which display more information on how to enhance or block their efforts (and 95% of them play very nice and honorable). You can learn more about how the robots.txt file works here: http://en.wikipedia.org/wiki/Robots.txt

For myself, I disallow some robots because they hit my site 10 or 20 times a day and throw off my stats; those robots are IMO badly behaved. Then again – I’m not selling merchandise. You probably want as many hits as you can get. :wink:

Adobe Flash:
I don’t hate Flash… I just don’t use it. Often I work for the competitor and use Silverlight and WPF. There are advantages to both as well as pitfalls. Lately I’ve been moving into HTML5 because I can perform some functions that Flash/Silverlight/WPF cannot do on Mobile devices. HTML5 also has limitations. Again, experience and creativity will determine the best technology or combinations of technology for the right solution. Editors, such as FrontPage, Visual Studio and Dreamweaver can’t do that; they are tools – like a crescent wrench: If you don’t understand the tool, the limits and the potential, chances are the outcome will be less effective if not a mess. That’s why I learned to read Code because I’m smarter and more creative than any editor… (not to be confused with “compiliers” which is altogether different).

Mumbo Jumbo:
I know exactly what you mean. Code should be clean; no extra stuff, concise, readable, and easy to support without an editor. Let’s look at your code example…

Code:
<style type="text/css"> … </style>
Perfect. Lives in the Head section. Or, it can live in a .css file (perhaps named as “sukkahs.css”?) that is referenced in the Head section as:
Code:
<link rel="stylesheet" type="text/css" href="sukkahs.css" />
FrontPage likes to create directories for storing files – and that’s OK, I do too. So if the file is located in the “styles” subdirectory, it would be referenced as:
Code:
<link rel="stylesheet" type="text/css" href="/styles/sukkahs.css" />
Having the Formatting information stored in one file is advantageous because you can reference it from other pages – making the source code of those pages smaller and easier to read, AND you have only one file to edit which will affect every page in one fell swoop. :wink:

Please allow me to comment and suggest on the next lines of code; it’s free advice meant to be helpful…
Code:
   /* TEXT STYLES */
.textstyle0 {font-family:Arial;font-weight:normal;font-style:normal;font-size:15px;text-decoration:none;color:#000000;}
I’m going to rewrite this so it’s organized:
Code:
.textstyle0 
{
    font-family:Arial;
    font-weight:normal;
    font-style:normal;
    font-size:15px;
    text-decoration:none;
    color:#000000;
}

I’m really a huge fan of Typography, and to me - having the right typeface is the difference between capturing my attention and being easy on the eyes – verses being crudely applied, unsophisticated, and repellant.

Personally I do not like Arial for a font because it is explicitly Microsoft, and unless it is installed on the client device their experience will be different ("depreciated" is a kind way of saying it) than what you expected. On my website, the default base font is defined as:

Code:
	font-family: "Segoe UI", Tahoma, Helvetica, Sans-Serif;

Segoe UI is the modern font associated with the “Metro” theme on Win 8 and Silverlight for the past 4 years; it’s a personal choice and not a required one. Tahoma is also a Microsoft font that was developed specifically for the Web as a more condensed & readable version of Verdana (also a font specifically created for the web to replace Arial). Helvetica is for our Mac friends; it’s a nice readable font that is preinstalled on the O/S, however Helvetica on the PC doesn’t quite look as good, so we use the others. Sans-Serif is the catch-all font for everyone else.

Font-weight & font-style defaults to “normal” so we don’t need that. Text-decoration is used to control behavior on Anchors, so in this case all anchors within this style will not have an underline, although it does not cover pseudo effects such as hover (more below). Color is #000000, Black – which is also the default. We can rewrite the whole definition as:

Code:
.textstyle0 
{
    font-family: Tahoma, Helvetica, Sans-Serif;
    font-size:15px;
}

Generally though, I define the font-family at the top of the CSS with a global and rely on specific declarations where we want to diverge. Example:

Code:
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, input, ins, kbd, q, 
s, samp, select, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, 
label, legend, caption, table, tbody, textarea, tfoot, thead, tr, th, td 
{ 
	font-family: Tahoma, Helvetica, Sans-Serif;
}

That’s pretty much it for the Style. BODY, IMG, & #container look pretty good without diving too deeply. One comment on the a:hover – I provided an example below that shows how to use the text-decoration; during hover (mouse-over on the hyperlink) the font color is changed and the underline is suppressed.

Code:
a:hover
{
    color:#3399CC;
    text-decoration: none;
}

Other website comments:
I noticed that you have data missing, like pricing, handling charges, etc. Personally, I hate having prices listed on the page because it’s a maintenance item. Instead, I use a data file (or database): The page reads in the data file (or queries the database) and presents the information through a process we call “automation”. It’s easier to edit a small data file than walk through the cumbersome formatted page. Plus – we could reference the data elsewhere on another page.

For handling fees and shipping rates you can link to the Shipper and pass in three arguments into a function: Weight, Zip code, and Expediency – and in return you’ll get a Quote. It’s very common and lots of people do it. Most of the shippers will provide you with example code on how to enable the feature.

Lots to chew on. To me it's a fun puzzle... like working on a canvas and creating a favorable and lasting impression. You want people to come back and visit, like having a nice home, a comfortable place to sit and read, relaxing. You want them to order product and have that be a pleasurable experience, and share that with friends. Reading and writing good HTML is a lot like learning how to brick and mortar and paint a house. Some people can do it well, and some hire it out. I always believe in learning how to do it for myself because it’s less expensive and faster. :)

Best, KF
 
That's like saying sorry, if you're doing it in html you're just using a tool, so be a man and do it in machine language. :D

What matters is the end result and how long it takes to get there. Personally I'm a fan of efficiency, so today's high speed computers have made many software guys sloppy and lazy, but if the end result works and doesn't slow the computer who really cares?
 
Kompozer. Nothing fancy. Nothing proprietary. Open source.

I usually only do web stuff as a favor for friends and don't want them to be held hostage to any web authoring system.

I don't hate flash... just flash websites.
 
Hmm. I like old Frontpage 2003. Yeah, it's oldschool html with no frilly CSS, but it's very easy to use, the WYSIWYG is actually what you see in the browser, the generated code is simple and lightweight and it works in all browsers and phones. When I need CSS I code it in by hand. I have tried other packages over the years but they don't work the way I want them to.

-Warren.
 
Anyone using WordPress?

https://ithemes.com/tutorials/wordpress-com-vs-wordpress-org/
WordPress.com vs WordPress.org. The one major difference between WordPress.com and WordPress.org is who's actually hosting your website. With WordPress.org, YOU host your own blog or website. WordPress.org is where you'll find the free WordPress software that you can download and install on your own web server.

Thinking about learning how to use WordPress. Want to build a retail web site that looks good on the smallest phone to biggest computer monitor and every tablet and laptop computer.
 
I do my HTML, CSS, PHP and Javascript in Dreamweaver CC...but I do this for work and didn't have to pay for the Adobe CC Suite myself. I really like Dreamweaver as it is an actual full IDE and can control your whole website through the application. I use Dreamweaver 99.9% of the time.

I also use Notepad++ a lot for quick stuff and making pseudocode in meetings - any text editor with code styling/coloring works just as well. Sublime is another good one that I've used when I was helping the embedded software team here for a bit. It has a really nice navigation window to jump around large and linked files.
 
Tried WordPress don't like it. PHP is not for me. That's a poem.

Liking Adobe Muse CC 2015.1
http://muse.adobe.com/

Built a amateur responsive web site. Looks OK on phones and big computers. Don't have a tablet for testing. Wondering if this responsive web design is worth the confusion of building? Adobe Muse CC 2015.1 has three different layout sizes desktop, tablet, and phone. It somehow knows what its being viewed on.

This guy explains "How To Get Started With Adobe Muse CC - 10 Things Beginners Want To Know How To Do"
[youtube]ESUPCpOZ5Dc[/youtube]

Found this PDF file. > ADOBE® MUSE® Building your first website
https://helpx.adobe.com/pdf/muse_reference.pdf

Link to ZIP file. > sample project
muse.adobe.com/assets/katies-caf%c3%a9-building-v3.zip

Here is a nice looking sample website. I made no changes and uploaded. Have not had time to read the instructions. Should have read the instructions before I built my web site.
http://webmasterwebdesign.com/muse01/
Note that the KATIE’S CAFÉ sample web site is not responsive. Static, adaptive, fixed width? Not sure?

Now back to the clogged sewer. Plumber number 4 got his snake to the same point as plumber 1, 2, and 3. I am plumber number 1. I got a Ridgid sectional snake that looks like this:
media

Snake goes 51 feet from the clean out to the street. Right about to the curb. Water no go down :cry: Monday a water jet sewer cleaning truck is coming. Problem is tree roots and more tree roots. Big tree is right over the 6" clay tile sewer line. I put in a 6" clean out with a shovel about 10 years ago. Any one with a back hoe who wants to come dig up the street? Anyone want to cut down a big tree? Ever watch 2 guys with a chainsaw and ropes? That is something I want to learn how to do. 80 foot boom lift rental is $1000 a day.

Isn't it great to flush the toilet and not have to worry about where the poop goes. Plastic bags fit nicely on a 5 gallon bucket.
 
8 years latter. Water jet sewer cleaning truck WORKED! He blasted through the tree roots. Sorry for taking 8 years to write sewer cleaning report.


Looking for a simple way to build a web site that is a collection of PDF files. I have seen websites that look something like this:
NntHe.png
Copy image from:
How to implement file navigation? (meaning directory browsing on the side)

Folders and PDF files will be stored on a server.
 
That folder list happens under apache when you have index creation turned on:
How to enable a directory listing in Apache web server

You might not be able to enable this on a cheap webhosting account that doesn't give you access to apache's configuration files. If you have access to the configuration files, you're golden.
 
Thanks for sharing knowledge.
More on the same thing with pictures.
How to Allow Directory Listing in Apache

Server is GoDaddy. Copy some of the Server Information from cPanel.

Hosting PackageDeluxe
cPanel Version118.0 (build 13)
Apache Version2.4.62
MySQL Version10.6.20-MariaDB-cll-lve
Architecturex86_64
Operating Systemlinux
Look at that. I made a table :)

There is a main domain and a bunch of domains under that.

Fired up server with FileZilla. Search for files that end in .conf

There are a bunch of files in tmp folder. They look like this:

awstats.maindomain.subdomain.com.conf

Think these files are not what I am looking for.


Looking at server in FileZilla. Everything starts with / then, public_html, then domain name which is martycandoit.com

<Directory /public_html/martycandoit.com/folders>
will figure this out later
</Directory>

Is this first line of code correct? <Directory /public_html/martycandoit.com/folders>
 
Last edited:
Disregard everything I write. I am webmaster idiot :(

Watch video.
How to Disable Directory Browsing

Fire up cPanel at the bottom see Advanced, Indexes. Click on public_html. See martycandoit.com Click on EDIT.
See Print Screen.

ps01.png

I am tired. Going to sleep. Will continue in the morning.
 
Last edited:
Back
Top