TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: 87yr old yoga teacher asked me to manage her website. Where to start?

27 pointsby costcopizzaover 1 year ago
Hi HN, I&#x27;ve been helping a truly wonderful lady with basic computer and YouTube tasks. That&#x27;s evolved into her wanting me to take over website updates&#x2F;management from the current person, who will not be doing it after a couple months.<p>All I know is that: &quot;it&#x27;s currently edited using Macromedia Dreamweaver from 2004 and then the process entails fusing file transfer protocol to upload to the server host (webhero). The software and OS cannot be upgraded on my old laptop which has Dreamweaver&#x27;<p>What is the easiest way to get this transferred or independent from a mid 2000s laptop?<p>On a scale of 1-10 of general technical ability, I&#x27;m a 3.<p>Thanks a ton<p>http:&#x2F;&#x2F;julierussell.org&#x2F;

23 comments

BadCookieover 1 year ago
If it were me, I’d just rebuild the site manually on something like Squarespace (or maybe Shopify) by copying-and-pasting the text and downloading&#x2F;uploading any images you want to keep. I didn’t see any interactive features in my brief browsing of the site, but if there are any, it would influence my choice of which service to use.<p>The hardest part technically seems like it will be transferring the domain name.
评论 #39022195 未加载
评论 #39020930 未加载
codingdaveover 1 year ago
If the laptop was using FTP to get the file uploaded, then you already have a directory of the static HTML for the site somewhere on the laptop. So no need to get fancy - find and copy that directory somewhere else and you have the site. Put it up on Github pages, S3, or really any host you want and you are free of the old laptop.<p>You will lose the editing in Dreamweaver, but you will have the content. And there are less than a dozen pages on that, without much in common with each other aside from a menu and the background, so you could edit the site by hand fairly easily, or you could put it into a modern tool in less than an hour and modernize the design at the same time (if she wants that.)
cjbprimeover 1 year ago
The easiest way is probably to ignore the laptop, use a web spidering tool to download all of the content, and upload it to a no-code HTML tool like maybe wix.com (which I haven&#x27;t actually used) and make changes using that.<p>A second option might be to ignore the laptop, use a web spidering tool, and then manually edit the HTML. That would not be very fun.<p>If this is an actual business, yoga studio websites these days all seem to integrate with other services like mindbodyonline.com to allow reservations etc.
评论 #39024037 未加载
评论 #39020415 未加载
codegeekover 1 year ago
If it is just a few pages and mostly static, I would rebuild using a CMS like WordPress for future maintenance or at the minimum, a brand new static site and host on a $5 digitalocean droplet or netlify&#x2F;cloudflare pages.<p>Current setup is too old to try and work with and you may save time doing from scratch.
novategover 1 year ago
Download the website using this tool <a href="https:&#x2F;&#x2F;website-downloader.onrender.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;website-downloader.onrender.com&#x2F;</a> and start editing. You can use free hosting services like Netlify or Vercel to host the site. The website doesn&#x27;t have a search presence, so even if you re-build, it doesn&#x27;t hurt.
评论 #39123301 未加载
评论 #39020515 未加载
threeboyover 1 year ago
The website is not stored on the laptop - those are more like working files. The HTML files (the &quot;pages&quot; for the website) get edited (in this case Dreamweaver) and UPLOADED to the webhosting&#x2F;web server via an FTP program (FileZilla for example). The domain name (in this case the .org) points to the web server where the web page files are stored.<p>To just keep everything as is you would need the following from the old website people:<p>* The FTP credentials to upload the files. * The webhosting account login to renew the hosting fee (probably monthly or yearly). * The domain name account login (can be the same as webhosting, but not always) to renew the domain name fee (usually yearly).<p>Dreamweaver is an out of date program used to edit the (HTML) web page files. It&#x27;s known as a WYSIWYG (what you see is what you get) editor where you update the web pages as they look (or an approxmiation of what they look like). You could connect to the website via FTP and download the files to any computer and then edit them with Dreamweaver or learn some basic HTML and edit the HTML files using any text editor (such as notepad).<p>Like many have said you may better off rebuilding the website in a modern WYSIWYG tool. The website is dated but very simple - copying and pasting the content into a software as a service website provider (WIX, SquareSpace, Weebly) which shouldn&#x27;t take much time and they are easy to use (drag and drop, WYSIWYG). Then you can login to your domain name account and re-point the DNS to the new website and then cancel the old webhosting and not worry about it anymore.
NoZebra120vClipover 1 year ago
Perhaps you should discuss with this prospective client why she believes that she needs a website at all. Most services in this class do much better with a social media presence and someone to manage it: e.g., Facebook, Instagram, X, etc.<p>With a Facebook presence alone, she could reach most of her customers, and FB would provide access to help her build content such as multimedia posts, image collections, event announcements, and links out to such things as &quot;Set an Appointment&quot; or whatever.<p>A website these days is mostly static, passive, and not really on customers&#x27; critical path. It is much better for a business&#x27;s reach if you can get customers to like&#x2F;follow a social media account or three, especially if you have a savvy manager who will keep it alive, making regular posts, and hopefully even responding to DMs.
boopmasterover 1 year ago
At the risk of sounding rude, you could start by politely declining the request. It&#x27;s certainly an option. :)
评论 #39020844 未加载
uxamandaover 1 year ago
I recently did a similar project for someone who had a long running site. They wanted to keep all the existing pages so that people&#x27;s bookmarks would still work (while reducing their hosting fees).<p>In that case, their site was built in Wordpress, and so I grabbed the html and then posted it on GitHub pages (free static hosting). Then I pointed the domain name to Github from the previous host.<p>This worked well because they didn&#x27;t care that it was no longer editable (although it could be hand edited without _that_ much trouble) and they had a strong desire to make it aesthetically identical.<p>Not sure if there is a huge &quot;website update&quot; component in your situation, but if not, you could probably go a similar route.
评论 #39022563 未加载
Baeocystinover 1 year ago
So, I just looked at the site. I strongly recommend just rebuilding it, like BadCookie said. Most web views are mobile, and that old page won&#x27;t play nice with small screens.
mistrial9over 1 year ago
how much media is involved, really?<p>backing up a laptop is something any competent tech can do for you.. make sure you get copies of media assets, like PNG or JPG. It is possible that you will have to abandon DreamWeaver in the near future, so you have to prepare for that.<p>In some ways this is simply a documentation task. You can copy the text from each page in an organized way, completely without DreamWeaver.. using the web browser and your favorite editor.
Thristleover 1 year ago
Rebuild the site with wix.com (or other tools) It looks completely static and after the initial setup it is extremely easy to maintain&#x2F;add to
solardevover 1 year ago
Like others have said, just remake the whole thing on Wix.com or Squarespace, etc. It should only take an hour or three. It&#x27;s not a complex site.<p>As a bonus, you&#x27;ll get modern features like responsiveness (her students can view it on their phones), etc.<p>It&#x27;s not worth trying to convert old Dreamweaver templates or anything. Just copy and paste the text and put it into a modern site builder.
rngname22over 1 year ago
Website isn&#x27;t loading, we are all probably driving up her views way beyond normal. Hope she doesn&#x27;t have traffic-based pricing.
评论 #39020536 未加载
cuttysnarkover 1 year ago
Have a look at SiteSucker[0] - an app that essentially lets you input a url and it will suck all the locally linked files&#x2F;images etc. into a folder. Once you have the &quot;guts&quot; of the site, you can move it, grep it, edit and update it as needed. Given this appears to be a static site, you could even just open index.html in the browser (file:&#x2F;&#x2F;&#x2F; protocol) locally without having to spin up webserver while you develop.<p>This is the path of least resistance and perhaps the easier route versus rebuilding from scratch for a modern platform—which is also a different price tag. IMO, sucking the static site out without needing to deal with Dreamweaver on an old machine might be reason enough.<p>I&#x27;m not doubting the Dreamweaver claim, but I don&#x27;t see any of the stink of a site generator—it looks rather simple and handwritten—doesn&#x27;t even have the generator meta tag listing Dreamweaver—I wonder if Dreamweaver was only used for the FTP interface&#x2F;connection to upload the files to Webhero.<p>My TL;DR Advice:<p><pre><code> 1. Gain access to the old laptop only to get the FTP upload details&#x2F;credentials for Webhero. 2. Use SiteSucker to get the whole website into a local folder on your machine. 3. Make changes&#x2F;updates by editing the files. 4. Deploy by FTP Upload to Webhero. </code></pre> [0]- <a href="https:&#x2F;&#x2F;ricks-apps.com&#x2F;osx&#x2F;sitesucker&#x2F;index.html" rel="nofollow">https:&#x2F;&#x2F;ricks-apps.com&#x2F;osx&#x2F;sitesucker&#x2F;index.html</a>
liveoneggsover 1 year ago
<a href="https:&#x2F;&#x2F;neocities.org&#x2F;supporter" rel="nofollow">https:&#x2F;&#x2F;neocities.org&#x2F;supporter</a><p><a href="https:&#x2F;&#x2F;www.bluehost.com&#x2F;wordpress" rel="nofollow">https:&#x2F;&#x2F;www.bluehost.com&#x2F;wordpress</a>
farseerover 1 year ago
This is a small job in Wordpress. Just get hosted Wordpress (a bit expensive) or buy cheap hosting and host your own. After that choose one of the free themes and create a few posts and pages to get the desired results.
whatamidoingyoover 1 year ago
I agree with the others who have said to rebuild the site. Just wanted to pop in and say that I truly miss this era of websites. I got such a massive flashback and feeling of nostalgia.
timnetworksover 1 year ago
CTRL+S saves each page even if you lose FTP access. Markup is great. Websites don&#x27;t need to be 100MB applications to display some photos and four paragraphs.<p>[edit] wow that signature made me do a double take
aviatover 1 year ago
Have a look at this,<p><a href="https:&#x2F;&#x2F;www.concretecms.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.concretecms.org&#x2F;</a><p>and hosting, have a look at Hetzner or Scaleways
dlahodaover 1 year ago
run vm with old soft for both of you. make hdd of vm rsync, hdd with files. in case of conflict her files hdd is main.
kylehotchkissover 1 year ago
Copy paste everything to s3&#x2F;cloudfront or cloudflare pages. Almost free hosting going forward.<p>Once you have the folder of code locally, use cursor or ChatGPT to guide you towards making the changes you need.<p>Use git or learn to use git to safely make bigger changes and learn your way around code. I’d recommend adding tailwind to the mix and slowly integrating as you change or build new things.<p>Have fun! That’s how a lot of us got into this career path
pipeline_peakover 1 year ago
Please telling me your not doing this for free in your spare time
评论 #39021545 未加载
评论 #39022203 未加载