Can Tech support help me hook up Dreamweaver, Network solutions, and my HTML? I would like to know before I buy Dreamweaver?
Re: Upload HTML files from an old site to domain name
Re: Upload HTML files from an old site to domain name
No. That's not their job.
Are you saying you purchased web hosting with Network Solutions? Or just a domain name?
Nancy
Re: Weird Scroll Issue Amongst Files Viewed in DW2017
Re: {"code":"MethodNotAllowedError","message":"POST is not allowed"} - PHP Submit Form
Ok, I went back to the roots so to speak. Started over again and localhost/phpinfo.php is working now. I did the form.php code again (first post) and when I click submit is still doesn't return any information. There's no error at all either, it's like the button doesn't have an action linked to when I click it.
Re: {"code":"MethodNotAllowedError","message":"POST is not allowed"} - PHP Submit Form
I uploaded my files to a remote server and it still doesn't work. I click 'submit' and nothing happens. The page doesn't reload and there's no error either. Could it be that the php code is outdated or something of the sort?
Re: {"code":"MethodNotAllowedError","message":"POST is not allowed"} - PHP Submit Form
I was running a local server on my Mac, and then I uploaded the files to a remote server. Still not working.
how to edit this template page
As a novice to Dreamweaver, i was able to create this website several years ago. Don't laugh to hard. www.owendawsongolf.com.
Although it is simple, I've managed to use some basic SEO techniques which does get me traffic and business and i'm reluctant to change anything at this point.
I'd like to create a site for real estate photography, but would like it to be nicer looking, with functioning similar to my friends site here
so my question is, the below template seems to have similar functionality, but i'm not sure how i would add my info, photos, video etc to it.
Is it a matter of importing it into dreamweaver and editing from there? or is there more to it. trying to figure out the difficulty level. this might be over my head.
any input would be great. thanks im using CS3
Re: {"code":"MethodNotAllowedError","message":"POST is not allowed"} - PHP Submit Form
Your form works, such as it is IF you change all the POST variables to lower case, including . . .
if (isset($_POST['submit'])) {
So here is the lesson:
Decide upon a naming convention for variable names, file names, etc. and stick with it. You've been stuck for days just because of a typo.
Re: Upload HTML files from an old site to domain name
If you have purchased web hosting services from Network Solutions, you don't need Dreamweaver to upload files. You can use the Network Solutions File Manager. Follow the steps in this tutorial.
You only need Dreamweaver to edit your HTML files. Does that help you?
Nancy
Re: Dream Weaver 8 log on problems
Please help us to help you. Can you provide more details about your problem?
- Which operating system do you have?
- What error messages do you receive, etc...?
- You cannot log-on to your remote server or something else?
Nancy
Re: how to edit this template page
Your friend's site is built with WordPress. And Envato Templates are mostly for WordPress users. So unless you're building your site with WordPress (PHP & MySQL) the Template won't help you.
Blog Tool, Publishing Platform, and CMS — WordPress
Nancy
Re: {"code":"MethodNotAllowedError","message":"POST is not allowed"} - PHP Submit Form
The code in your first post is never going to 'submit' because you dont have 'Submit' as a post attribute in the form - the name attribute for your submit button is 'submit' (note the lower case s)
'Sumbit' and 'submit' in php are completely different
Change to: (lower case 's'):
if (isset($_POST['submit']))
and change to lower case 's' and lower case 'c'
$_POST['status'],
$_POST['comments']);
Re: how to edit this template page
If you're an experienced coder, you can create something similar in Dreamweaver. But it won't have all the bells & whistles that a WordPress theme contains without a great deal of custom backend coding skill.
Nancy
Re: {"code":"MethodNotAllowedError","message":"POST is not allowed"} - PHP Submit Form
Here is my naming convention:
- never ever use capital letters anywhere unless unavoidable
- separate words in variables with underscore and words in file names with dash
- never use the plural form. ie: student instead of students, invoice instead of invoices
- use descriptive variable names, even if they get long
- use variable names in PHP that match the column names in database tables
- Always be on the lookout for things that can be conventionalized
Re: how to edit this template page
thanks Nancy
so when i asked the question to the author abiut adding text and images etc to the template via DW he said that yes that i could edit it DW. i guess he left out the wordpress part ?
Re: {"code":"MethodNotAllowedError","message":"POST is not allowed"} - PHP Submit Form
Thank you so much it finally worked!
Re: how to edit this template page
I didn't look at the Template because you didn't post a link to it.
I can only tell you from personal experience that Envato Templates tend to be aimed at WordPress users because millions of web sites use WordPress.
The last Envato Themplate I purchased was such a mish mash of different code frameworks, the code was horrible to work with. I eventually tossed it out and coded my own from a few of the ideas it gave me. But otherwise, it was useless.
Re: how to edit this template page
im not smart enough to do my own coding and i really don't want to break the bank having some else make a site for me.
heres the link
would you have any recommendations of templates i could purchase with similar look to it, that would be easy to put into DW to edit?
thanks for help
Owen
Re: how to edit this template page
Oshine is marketed as a "creative multi-purpose WordPress Theme."
So now you know. It's specifically designed for use with a WordPress website.
This link contains a Bootstrap Masonry Template and it's free. Try copying the code into new blank documents (HTML, CSS and JS) to see if you can work with it.
Nancy