A Web Hosting Diary...guide/?'s/Help!

I'm moving this thread here, because it wasn't getting any attention.  I had it buried in some obscure tutorial comment section--a niche void of the netherworld.  Anyway, I copied it all over because I was tired of listening to myself.  My hope is to help those, like me, who are total n00bs to websites and web hosting.  Be sure to read thru the post first or you'll make the same mistakes I did!  :-).  It can be discouraging.  Also, I hope to get help from others who have forged ahead, and who can shed some light on questions I have as they develop.  Thanks in advance.
3/21/2010 - Swallowed the red pill...entering the rabbit hole...Mad-Hatter driving me nuts!
How do I make the website I created from a tutorial with DW4 (trial version) available to others on the web?  I want to host it myself...on my own computer...the same one I'm using now.
My setup:  Windows XP Pro, xampp, and DW4.  I have an AT&T DSL modem that acts as a router (i can configure it to forward ports, etc.).  Also, I have a registered host name with dyndns (example:  myhost.dyndns.org).  Moreover, I have an update client from dyndns that supposedly updates my IP address if/when my ISP changes it.
Correct me if I'm wrong, but as I understand it an end user types in my dyndns host address into their browser's address bar.  Dyndns redirects them to my external IP, which I'm assuming is my router's IP.  Then, my router forwards the request to my pc, which is a different IP, right?  So, if I setup a virtual host on my pc that redirects any request coming from my dyndns host to a specific vhost folder, why would I need a static IP address?  I set one up anyway, because just about every post I read on the subject of hosting your own website said to do so.
I've installed Xampp and both the Apache and MySQL apps are running.  I've also started the FileZilla app.  I have forwarded the TCP ports on my router (21, 80, 8080, 3306).  I have a registered host name at DynDNS.com, and their Open Port Tool indicates that my external IP is open and accepting connections.  I have completed all three parts of the "Building your first dynamic website..."  This created a "Feedback" website that I am trying to "put" on the web (just to learn how to do it).  I edited the httpd and httpd-vhosts files to setup virtual host containers for my localhost and DynDNS host (using NameVirtualHost = *:80 consistent with my containers, and yes I added the permissions directive to the httpd-vhosts file).  I did this because, from what I gathered on several forum posts, I needed a virtual container to redirect requests coming from my DynDNS host to the proper website.  My "feedback" website functions just fine locally.
In an attempt to "put" my website on the web where others can see it, I setup a virtual host folder called E:/vhosts/Feedback.  The directoryroot in httpd-vhosts points to this location.  In the DW4 "Manage Sites..." dialogue box for remote info I selected local/network, localhost, and targeted the E:/vhosts/Feedback folder.  This seemed to work as the site was "uploaded" to that folder (I could see them in windows explorer).  However, I still could not visit the site from the web.  Next, I tried several different remote info configurations.  The only one I felt came even close to working was when I ran the FileZilla app and used FTP (to configure the remote info in "Manage Sites...").  With the FileZilla admin window open I could actually see myself logging in, but it could not find the E:/vhosts/Feedback folders.  The error said that the file did not exist or there was a permission problem.  Well, the files do exist (I can see them in windows explorer); and I thought that entering the following directive in my httpd-vhost file would avoid any permissions issues:
<Directory E:/vhosts>
   Order Deny,Allow
   Allow from all
</Directory>
So, I finally broke down and bought custom DNS services from dyndns.com for $30/yr.  This allowed me to register a domain name in addition to the free hosting service I had already signed up for.  I was expecting an email with the FTP info for the remote info dialogue window in DW4, as mentioned in some posts.  I did NOT receive any such an email.  Now, I feel like I just wasted 30 bucks.
I have spent 2-3 hours a night for that past few days trying to figure out how to "put" my Feedback website on the web either from my own computer or a hosting service.  I knew nothing about websites prior to downloading the DW4 trial version roughly 6 days ago.  I would not have been able to tell you the difference between a static and dynamic site.  I've learned a lot since then thanks to these tutorials and moderator feedback, but only enough to realize how much more is out there.  I've only scratched the surface so to speak.  However, I've been running in circles lately and I just don't understand what's going on.  Any help would be greatly appreciated.
I find it simply astounding that these tutorials would go so far as to instruct me on how to download, install, and setup xampp, create a database in myPHPadmin, setup local and test servers in DW4; and yet, somehow neglect to instruct me on how to configure these apps to make the site available from the web.  I mean, what is the point of creating a WEBsite if I can't put it on the WEB?!
3/22/2010 - Horse bucked me off into the mud...time for a new horse!
Good news:  I got a refund from DynDNS.  They only offer domain name and host name services--not website hosting!  I had misunderstood them to be a web hosting service.  Also, I think I know what the problem was.  The static IP I set from my router was still "private."  I needed to have set it to a public, external, static IP, right?  Anyway, I've given up on the whole self-hosting thing.  Gonna try GoDaddy.
3/23/2010 - Remember that story about the frog who could only jump 1/2 the distance to the end of the dock?  I know EXACTLY what that feels like...
Now, I have some kind of database problem.  I was successful in uploading my feedback website to GoDaddy.  However, when I viewed my page there were some "localhost" SQL database errors that I'm assuming were generated because the database I was referencing in my site is actually located on my machine.  So, I created a similar database on GoDaddy's PHP server, but when I go to update the location of my database in DW4 (double-clicking the db in the databases panel) it times out looking for the server, and crashes DW4 every single time.  A window pops up that says "File Activity - localhost" and it just sits there until I close it.  Then, DW4 crashes (I click the End Now button).
What do I have to do to get DW4 to use the databases I created on my host's PHP server?
3/24/2010 - Eureka!  I'm going streaking!  C'mon everyone!
It works!  I can't believe it actually works!  It's sooooo beautiful when it works!
It was the Test Server configuration!  The name is what misled me.  I figured the Test Server was for testing purposes only--a local place to check the functionality of my site before uploading it.  But, no!  It actually determines which Application Server is acting on my website.  That's why DW4 kept crashing.  I was attempting to establish a database (MySQL) connection to my Host's Application Server with my Test Server configured for localhost!  I had a hunch this was the case, but I wasn't sure where the Application Server was located--whether on my Host's web server or on their Application (PHP) server.  I was trying to put the SQL connection info in the Test Server configuration box.  Recalling a diagram from a tutorial it dawned on me that they're both in the same place!  Once I set my Test Server to the same location as my web server (remote info)...voila!  The only difference being the pathname:  "/" for the test server, and "/feedback" for the remote info.  I could then edit my database connection without crashing.  I noticed I had to export my database from my local App Server (myPHPadmin), and import it to my Host's App Server (also myPHPadmin) in order for the website to function properly. 
So, this experience has raised some new questions:
1.  Why aren't there profiles within the site manager that would allow me to select whether I want to test locally or remotely?  As it is, I have to go in and manually change the test server to my machine's local App Server each time I want to test locally, and then change it back to my Host's App Server when I want to upload my site.  Moreover, I have to edit the database (MySQL) connection to point to a local database stored on my app server to test locally, and change it back to test remotely; which means I have to export the database from my Host's App Server, and import it to my local App Server!
2.  If I had more than one test server, presuming I diversified my Hosts to have a backup site ready to go in the unlikely event GoDaddy's Scotsdale AZ datacenter got nuked, how would the website I was working on locally in DW4 know which site to use (from my Site Manager...)?  In other words, if I have two test servers in my DW4 Site Manager, how does the website I'm working on know which test server to use?  It seems to me that in order to establish a MySQL connection in the database panel, I need to have the correct Test Server configured.  But, if there's two how does it know which one to use?  The reason I ask is because when I click the [+] button in the database panel it only asks for a SQL server.  There is no option to select a site.  If the SQL database connection depends on the Test Server, how would it know which one of my two test servers is acting on the database?
2.a.  Why doesn't DW4 call the "Test Server" what it really is--an Application Server?!  Had this distinction been evident in the "Category" column of the DW4 Site Manager, it would have saved me a 6-day trip to a new dimension of pissed off!
3.  What happens to my website when I try to edit the files located on my remote site?  I noticed when I attempt to load them (by double-clicking the file in my remote file panel) that a window pops up asking me if I really want to open a "dependent" file.  Does this mean my site will not function properly when I'm editing the remote file?  Or, does DW4 download a copy of it?

Hi
I am not suprised no one answered your questions, there are simply to many of them. Can I suggest you read the faq on 'how to get help quickly at - http://forums.adobe.com/thread/470404.
Especially the section Don't which says -
DON'T
Don't post a series of questions in  a single post. Splitting them into separate threads increases your  chances of a quick answer.
PZ
www.pziecina.com

Similar Messages

  • Web hosting: catalyst vs Office 365

    Hello,
    I am creating my website in Muse for my small business and currently use Adobe CC as well as MS Office 365 for business email/server.
    I am getting ready to publish my website and wonder if anyone can provide insight about the hosting capabilities on Business Catalyst for small business. I am an environmental consultant and will not need much, if any, merchant services, so the purpose of the website is for marketing and communications, blog, social media, and SEO.
    Is Business Catalyst only for web designers, or can small businesses publish there as well?
    What are the security advantages/disadvantages of using Adobe BC to publish small business websites?
    Any assistance would be greatly appreciated.
    Todd aka Muse Newbie

    With Creative Cloud, you get 5 free Business Catalyst webBasics/webHosting sites. You can find an overview of site plans here - http://www.adobe.com/products/web-hosting/buying-guide.html.
    A more detailed plan breakdown can be found here - http://helpx.adobe.com/business-catalyst/kb/detailed-plan-breakdown.html
    The FAQ for Business Catalyst should answer most of your general queries about the service - http://www.adobe.com/products/web-hosting/faq.html.
    If you are looking to utilize the BC Blogs module, you would need to upgrade the free site to a higher BC plan such as webMarketing - http://helpx.adobe.com/business-catalyst/partner/upgrade-temporary-site.html##upgrade-webb asics. However, please note that Muse doesn't natively supporting building Blogs at this time and it isn't really a turn-key process either unless you have some CMS and coding knowledge.
    Thanks,
    Vinayak

  • HELP! First time connecting to web host. How do I download my site files!!

    Okay! My site is on my web host! I am a little lost since my web host gave me not totally clear directions on how to do this. I had sent him some of my pages including my home page he connected to their web server along with a dating software that was connected to the pages I sent. This is what he wrote after the comments in bold and so I am little lost.
    Putting this here to show what I can access. >> Here is how you can access your control panel of the dating software: with my sign in and password info given
    Putting this here to show what I can access. >> Here is how to access your control of the site itself on my web hosting server: with my sign in and password info given
    IMPORTANT!!!!!
    Be sure to download the entire site into your Dreamweaver and place a backup copy of it on an external hard drive or someplace else secure.
    That's where I am lost, how do I download to DW? I previously loaded locally since I was working on my site on my lap top, so I know I have change those setting in DW. I can look thru my DW book. It's the download part I am a little confused about.
    Thanks for responses to help me!

    Remote view, local view shows the files on your computer (thus the name local).
    Just a tip, you can expand the files panel to full page by clicking on the expand icon on the far right hand side, (click on this again in expanded window to return to the main DW program).
    PZ

  • Can you help me choose a Web hosting service

    Just call me a procrastinator but I know I have to find a web hosting service for my iweb created websites soon.    Despite browsing all afternon I can't find any definitive recommendations. (perhaps it's not allowed in discussions but I really need specifics) I want it to be as easy (a la MM) as possible and do want to continue a blog (preferably with ability to RSS/comments).  I also want unlimited space, bandwith, etc and of course am willing to pay but want to do the right thing as reasonably as possible - please can someone help me...soon 

    I personally use IX Webhosting for a couple of reasons:
    Fast reliable personal tech support by phone, instant chat, & email
    They allow unlimited domains "www.yoursite.com", unlimited email accounts, unlimited bandwidth
    And, price they are very reasonable plans start @ $3.95 USD a month
    http://jeffnitschke.com/IXWebHosting.html

  • [HELP] Need The best Java Web Host

    Hi all,
    I'm looking for the best java web hosting for my commercial web.
    plz, help and show me :(
    thanks for reading
    Pham

    Hi all,
    I'm looking for the best java web hosting for my commercial web.
    plz, help and show me :(
    thanks for reading
    Pham

  • Don't need a web host. Help?

    I just redesigned a webpage with Muse and would like to publish it using my current domain and web host (blue host), which is not business catalyst. I also have the $14.99 monthly plan to use Adobe Muse. How can I make my current domain to point to the redesigned website?  Apologies if my question is not clear. I appreciate any help on this subject.

    In business catalyst, we add a domain name from third party, and re-delegate the name servers to point to business catalyst. I think, your current hosting provider should have the exact details which you are looking for. Did you try to check it with your host, only they can help you with this. check this link, might be helpful
    BlueHost Tutorials :: Add a Registered Domain to Your Account.

  • Help me find a good Coldfusion Web host!

    Guys please tell me who else is out there.
    I use http://www.hostek.com and they really suck. My site keeps going down even though I get like no traffic at all. It's ridiculous. Each time I update the site it just hangs.
    I really need a new host.
    Yeah hostek has been good in the sense that they're cheaper but at this point I'm willing to pay more to have a site that won't crash when there's more than 3 people on it. Everytime I email them they're like oh we shut down the servers because we were doing stuff on it. Cmon.
    Coldfusion Web Hosts. Where are you? Does no one else care about us?

    I have been with The Small Business Authority (formerly: CrystalTech) http://webservices.thesba.com for years.
    Started out with them using their shared environment and now have a dedicated server. Customer Support for
    me has always been outstanding and reachable 24x7 and with a focus of solving the issue over who or what is
    the causing factor. As for server up time,  I dont think my server as ever been down, except perhaps when I have
    caused it.
    I would definitely consider them for a hosting service.
    Leonard B

  • I changed my web hosting & when I deleted the old settings in Thunderbird all of my folders and emails disappeared! I need them back as they are work ones. Help

    I've changed our web hosting service at work and I deleted the old email server information. When I did this all of my folders and emails diappeared. I still have the old web hosting services running for an additional month but when I reinstated the old email settings I still can't see the folders or emails. Any suggestions please as there are two years of important emails lost?

    http://kb.mozillazine.org/Thunderbird_:_FAQs_:_Recover_Deleted_Account

  • Configuring Web Services in 10.9 Help

    Hi All,
    I cannot find any comprehensive documentation on the subject (short of a retelling of the server.app Help Files) but I'm just trying to set up a web server in 10.9. I have the server app installed. I'm using a separate DNS Server (that will also be my OD Master).  Right now all this is in a couple of VMs on a Mac Pro, isolated from my live network until I get the kinks worked out.  One vm (login.domain.com) for OD and DNS (split with our ISP for outside access) another (www.domain.com) for web services. I'm using the host machine as a web client to test things out.  The web host and my client both point to the DNS server and everything can ping everything else. Once I get it working in a test environment, I'll worry about bring it it out into the world and involving my gateway, ISP, etc.
    The website is working ok where it is on an ubuntu server, so I know there are no major issues there. But I'd like to move it (long story).
    In server.app, I named the webserver "machine" www.domain.com.  I pointed a record on the DNS Server to it and can ping it using the fqdn.  For the main site, I moved the default files (which look to be aliases) into a hidden folder and dropped by web site files into the directory (/library/server/web/data/sites/default).  The site does load. But it loads VERY slowly (it takes about 20-30 seconds for the initial page to load, once it's up, navigating between pages is fine as far as speed). Except, some of the navigation buttons don't work and from what it looks like, the PHP isn't rendering the page properly (links are not correct) so I'm led to believe there's something old/screwy in whatever version of PHP this thing has.
    Why would the site be so slow to load?
    How do I see what version PHP server 10.9 uses? Is it possible to upgrade if it's an older one?
    Do I need to do anything other than add a site in the server.app for the subdomain (staff.domain.com, help.domain.com, etc)? Any special settings/forwarding to make this work?  As long as the DNS points the fqdn to the box, the web server should send the right site/subdomain to the client, shouldn't it?
    Again, if someone could point be to the library of documents for managing this, I'd be grateful.  Apple's site seems to have a lot about wikis and so forth, and info on setting up the simplest of sites, but I don't care about those, I want a couple of websites with php and mysql, subdomains, etc.  It was all hosted in 10.5 (or 10.6) a while back, so unless they broke something on purpose, I know it can do it.  I head hurts from getting some info about httpd.conf from one blog, .htaccess from  another, etc. There MUST be a "setting up a Web Server in 10.9" or "Mavericks Server Administration" doc or something out there.
    Thanks,
    Jeff

    Yes, the functionality has departed System Preferences. Here is an updated guide to jump start your solution. It deals with the Terminal solution below.
    There are two approaches to launching a web server in Mavericks.
    Terminalsudo apachectl {start|stop|restart}
    System Preferences solutions
    Web Sharing Preference Pane (free, originally for Mt. Lion)
    VirtualHostX ($)

  • So where is the forum category for bt web hosting ...

    Where is the forum category for bt web hosting questions?

    Thanks Mazert
    The reason I ask this is because BT Retail Businesshave their own help and support channels which are aimed for their business customers.
    This forum here is for BT Retail residential customers, and therefore the support and knowledge about the BT business webhosting service and domain services are not on this forum.
    To go to the BT Retail Buisness Website hosting & domains forum go to: https://business.forums.bt.com/t5/Website-hosting-domains/bd-p/Webhosting
    for user guides and help on BT Retail Buisness Website hosting & domains go to http://btbusiness.custhelp.com/app/hub/c/1995/session/L2F2LzEvdGltZS8xMzk1NDMzMjUwL3NpZC9mZXk5d1BQbA...
    jac_95 | BT.com Help Site | BT Service Status
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Try a Search
    See if someone in the community had the same problem and how they got it resolved.

  • OS X Server take the place of QuickMail and web host email?

    Hi All,
    I have been doing quite a bit of searching in the forums and with google.
    Here is what our situation currently is:
    Cable modem with dynamic IP address. Web hosting account with JaguarPC.com for our Internet email. Clients are all running with Leopard Mail app on either iMacs or MacBooks. We are using Mail app for the Internet messages (sending and receiving). That part works fine.
    G5 tower running OS X Server 10.3 for all of our file serving needs.
    We are using the latest/last version of QuickMail (not very recent!) for all LAN/Intranet messaging. QuickMail used to run fine in the OS 8 & 9 days, but each update of OS X causes it to be more unstable and unreliable.
    What our goal is would be this:
    Same Internet connection (cable modem + dynamic IP). Same web host. BUT, we would like to have our OS X Server (10.3) take the place of QuickMail AND use the Mail app for both the Internet messaging and all of the LAN/Intranet messaging.
    Is this possible? If so, if you would be so kind, could you throw some hints, tips and or links our way to help set this up.
    Any help would be greatly appreciated.
    Thank you,
    Troy

    Same Internet connection (cable modem + dynamic IP). Same web host. BUT, we would like to have our OS X Server (10.3) take the place of QuickMail AND use the Mail app for both the Internet messaging and all of the LAN/Intranet messaging.
    Out of the box, no, you can't do this.
    The internal mail is easy - you can do whatever you like on your own network. The issue is in running external mail.
    There are all kinds of issues in running external mail on a dynamic IP address, mostly as a result of spam (many ISPs, including all the big guys will not accept mail from dynamic IP addresses because it's likely spam).
    That's not to say you can't run a mail server per se, but if half your mail doesn't get to the recipient (and you can't predict which ones will), it's hardly viable.
    You do have options, though. First you could configure your mail server to relay all outgoing mail through your ISP. Since you're on their network they are obliged to accept mail from you and they'll forward it to the appropriate domain via one of their mail servers. That takes care of outgoing mail.
    Incoming mail is a whole different issue. On a dynamic IP address there's no way to tell other domains where your mail server is. The typical solution for this is to have some other mail server (on a static address) accept your mail and hold it for your mail server that periodically checks in and retrieves the mail via ETRN.
    Ironically, QuickMail does this very well (it really was one of its strengths). Postfix (the mail server included in Mac OS X Server) can do this, but it's not supported via Server Admin (the GUI used to configure the server), so you'll have to get under the hood and configure it - as well as find an upstream mail server that supports ETRN.
    For postfix, check the Postfix ETRN guide. For the mail server, ask your ISP if they support ETRN (you'll likely need to get to at least second-level support since the first-level folks probably can't even spell it ).

  • Free Java Web Hosting

    Hi all,
    I am a java developer and developing a help portal for java developers.
    i want to know, is there any free java web hosting is available? that provide support for java based web projects
    like it has
    Tomcat
    SQL/My SQL server
    command shall -- to deploy the project -- or some other way to deploy the projects
    FTP support
    -- Email facility would be a gift if available .....
    if any one of you know such site ..... please guide me .....

    we thanks for the suggestion, i hope this would work.....
    I am on it now, for other to proceed, here is the link and you can use your google account for it
    [Google App Start Up Guide|http://code.google.com/eclipse/docs/getting_started.html#deploying]
    go to [google app|https://appengine.google.com/] create your application... try it.
    by the way i am on it and will let you know that is it work worthy or not.

  • Off Topic - Web Hosting for Resellers

    I am have been a reseller for Media3.com for over 6 years
    now. They have
    been pretty decent until recently. My pet peeves are huge
    amounts of SPAM
    that come through to all of my accounts (Media3's SPAM
    solution is
    non-existant and they want me to use Postini.com to help wipe
    out SPAM which
    completely eliminates any profit I make from my accounts),
    backed up mail
    servers that take a long time to deliver mail and error
    messages about mail
    not being delivered due to a time-out from the server.
    I am desperate to solve some of these issues. Can I get some
    recommendations
    on good web host providers that have decent plans for
    resellers? Thanks
    much.
    Traci McMahan
    [email protected]

    You might check out www.crystaltech.com
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner''s
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Macromedia Dreamweaver" <[email protected]> wrote in
    message
    news:eo3i6h$kag$[email protected]..
    >I am have been a reseller for Media3.com for over 6 years
    now. They have
    >been pretty decent until recently. My pet peeves are huge
    amounts of SPAM
    >that come through to all of my accounts (Media3's SPAM
    solution is
    >non-existant and they want me to use Postini.com to help
    wipe out SPAM
    >which completely eliminates any profit I make from my
    accounts), backed up
    >mail servers that take a long time to deliver mail and
    error messages about
    >mail not being delivered due to a time-out from the
    server.
    >
    > I am desperate to solve some of these issues. Can I get
    some
    > recommendations on good web host providers that have
    decent plans for
    > resellers? Thanks much.
    >
    > Traci McMahan
    > [email protected]
    >

  • What to look for in a web hosting company for Flex applications

    Hello,
    I am trying to figure out what I need to look for in a web
    hosting company if I want to deploy my own Flex applications? I
    don't anticipate having any special requirements other than the
    ability to interact with databases and XML files. Can someone help
    me figure out what the server-side requirements are?
    Thanks in advance!
    Matt

    then almost 99.9% hosting will work.
    if you want a Flexx app with compiler then oo thats different
    but as you say "I don't anticipate having any special requirements
    other than the ability to interact with databases and XML files"
    then you can go with pretty much any hosting, as long as they have
    apache, Database serve and I think thats it.

  • Looking for new web hosting

    I'm currently hosting my site through GoDaddy. Plain and simple, I am looking to switch from them because of the way they choose to advertise their product. I'm looking for a new web hosting company to host my site and need some help finding a good one.
    As for price, I'm looking for something in the same price range as GoDaddy. After a little research, these are the few that I've found:
    iPage
    BlueHost
    InMotion Hosting
    I'm pretty confident in my ability to choose a good one, but I just want to be sure there's nothing I'm missing about web hosting that would make it smart for me to avoid any of the above. Just a few notes about what I'm working with:
    My site was made in DreamWeaver. The entire site is 17 html pages. It just contains mostly text, some spry and some embedded video, so not a lot needed for data usage.
    If there is any other information needed for you to help me, let me know. Thanks!
    -Mark

    If I were you I would go check out reviews on webhostingtalk.com .  Very reliable forum for reviews and sometimes hosts like those post specials over there so you don't start off paying full price.

Maybe you are looking for