Hi,

I hv make a drop down menu while I m designing the page in dreamweaver.Whn i upload tht page it is not displaying the menu,is it requiring to upload a txt file named "mm_menu"..??

kindly resolve ths problem soon

Regards,

Dani AI

Generated

Clarification and quick answer: Dreamweaver’s drop‑down/menu feature is not just the single HTML file seen in Design view. was correct that all generated assets must be uploaded, and was also right to call out that a separate support file (an external script the page references) needs to be where the HTML expects it. Missing or mis‑located support files are the usual reason the menu shows in Dreamweaver but not on a live server.

Checklist to verify

  • Inspect the published HTML source for external references (script, stylesheet, image paths) and note their relative paths.
  • Upload every file referenced by the page from the local site folder (scripts, images, any small CSS snippets).
  • Confirm the referenced files actually return 200 OK on the server (paste the resource URL into a browser).
  • Use Developer Tools → Network/Console on a reload to spot 404s or JavaScript errors.
  • Remember servers can be case‑sensitive; file name mismatches (e.g., upper/lowercase) will break links.

Example of how the page normally references the support script

<head>
  <script src="path/to/menu-support.js"></script>
</head>

If that path is wrong or the file is missing, the menu script won’t run.

Other notes: check that image slices used by the menu are also uploaded, verify Dreamweaver’s site root and publish settings so relative paths stay correct, and ensure the server serves script files with a normal MIME type. For older Dreamweaver menus, it’s often easier to recreate the menu or switch to a modern CSS/JS solution if asset management keeps failing.

Recommended Answers

All 3 Replies

Member Avatar for Member #114696

I think you haven't uploaded all the files generated by dreamweaver. Just have a look at directory and make sure you have put all those files into server.

I just uploaded the main page,n asked tht where I hv to upload the txt file named "mm_menu."??

I just uploaded the main page,n asked tht
where I hv to upload the txt file named "mm_menu."??

its not asking to upload txt files its .js file "mm_", it should be available within same folder of your .htm page location where you saved your main page.

If you don't find it i have attached it to this post.

Just upload that mm_ and it should work fine...

Cheers

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.