Problem with form PHP site designed in Adobe Muse?

Hello friends, I just finished my first authority site design in the Adobe muse (www.healthieradults.com), and I seem to have a problem with my forms. First of all, I have very little or no experience in web programming, such as PHP to be precise. After uploading my Web site to host, I get an error message saying "PHP script is not configured properly on the Web hosting provider, check if the file has been uploaded correctly. I checked and made sure all my settings in muse are correct, but muse seem to be generating an error response in the file form_check.php on my server (www.healthieradults.com/scripts/form_check.php), I don't really know how all these php functions work, I downloaded the file and tried to not mess with it. Fixed in my email address in a place where I thought I'm supposed to, but still keeps giving me the same errors. You can see for yourself www.healthieradults.com. I need help please, maybe someone could show me how to configure the php properly script to work with my forms without errors...

If you get the above error and get the same at http://www.healthieradults.com/scripts/form_check.php (which we are not able to open at our end), chances are that your host does not support PHP. Could you contact your hosting provider and confirm if your site has support for PHP and MySQL Server?

Thank you

Vikas

Tags: Adobe Muse

Similar Questions

  • Hello, I have a problem with the www edition Edition of Adobe® Muse™ CC in the browser.  I can not connect.

    Hello, I have a problem with editing in Adobe® Muse™ CC www in the edition browser I can not connect. It is on the alert: "there was a problem reading the file of Adobe Muse CC manifest for the site. Since Adobe Muse CC use file > load on the FTP host... to export the site again. "- but nothing has changed, when I downloaded the site once more.   Help, please...  It's very important for my client...

    Would you be willing to share this site you see this error with? If you don't want to share publicly, you can email me at [email protected]

  • problem with layout of the mobile version Adobe Muse

    Hi, I made recently a Web site (http://www.terbank-egenhoven.be) for Office Adobe Muse and then I reworked it into a mobile version. It looks perfect in the preview of Muse (left screenshot), if I write site, it is shown as right screenhot (lots of white space on the right, small text,...). The site is not hosted by catalyst. Can someone tell me what could be the problem? More funny thing is that if I host the site with catalyst it seems perfect there. Thanks in advance.

    trb_muse.jpgNico

    Hi Nico,

    When you host your site? Sometimes if you host with another provider that has its own methods of detection devices, it can interfere with those who provide the muse. Check out this post from the forum (available phone shrunken left and tiny) and tell me if none of the scenarios (web forwarding, you use a separate host, etc.) apply to you.

    Please let us know and we will deepen in this situation when we can identify what could be the cause of it!

    Emily

  • A Web site designed in Adobe Muse Web site can be loaded onto hubspot?

    Hi, I need to design a Web site and you want to use Adobe Muse to do this. The only problem I have is that it must be load/hosted on hubspot, does anyone know if this is possible and if so, how? Is it simply a matter of exporting the HTML on? Any advice would be greatly appreciated.


    See you soon

    Charlie

    You can export the site in html and then upload on Hubspot, please check these articles:

    http://help.HubSpot.com/articles/KCS_Article/COS-General/how-do-I-get-my-custom-HTML-templ ate in Hubspot

    http://knowledge.HubSpot.com/Design-Manager-user-guide/how-to-upload-your-site-assets-to-f Island-Manager

    Thank you

    Sanjit

  • Problem with the police of Gotham in Adobe Muse

    I'm working on a web design project using Adobe Muse for my client that uses mainly Gotham. They have most of the family of Gotham police in .otf and they also have the MSS of Gotham (screen Smart Font) for web use. When you try to load fonts at Adobe Muse as a web font self-hosted, Muse cannot load because the following formats of web fonts are missing: .woff, .eot and .svg. Muse also requires that the .ttf font is installed as a system font. My client has only the .otf fonts. This means that we cannot use Gotham in Muse? Or y at - there a way around this?

    Hello

    As described in help Adobe Muse | Typography, Muse peut work with fonts .otf as system fonts. . WOFF. EOT fonts are needed for self-hosting.

    Also. If your customer has access to Gotham screen Smart web fonts via a subscription Cloud.Typography, note that the Cloud.Typography of service conditions you cannot use web fonts in a way that is self-hosted. They are required to be served by using their administrator via the CSS key mechanism. Cloud.typography terms of use | Hoefler & Co.

    A manual (and less-than-ideal) workflow to integrate web fonts Cloud.Typography in Muse is exposed to http://cloudtype.businesscatalyst.com/

    Abhishek

  • I get this error with my login form, I did, but I'm not sure if this is a problem with my php code or

    I get this error with my login form when I try to log in, but I'm not sure if this is a problem with my php code or my flex code!

    ReferenceError: Error #1069: loginsuccess property not found on string and there is no default value.
    CBC::main/checkLogin()
    CBC::main/__login_user_result()
    to flash. events::EventDispatcher / dispatchEv...
    to flash. events::EventDispatcher / dispatchEv...
    to HTTPOperation / http://www.Adobe.com/2006/Flex/MX/internal:dispatchRpcEvent ()
    to mx.rpc::AbstractInvoker / http://www.Adobe.com/2006/Flex/MX/internal:resultHandler ()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    to the DirectHTTPMessageResponder/completeHandl...
    to flash. events::EventDispatcher / dispatchEv...
    to flash. events::EventDispatcher / dispatchEv...
    at flash.net::URLLoader/onComplete()


    my php code is:


    [php] <? PHP

    define ("DATABASE_SERVER", "localhost");

    define ('DATABASE_USERNAME","f4r");

    define ('DATABASE_PASSWORD', 'cool23');

    define ('database_name', 'bignixs1');

    connect to the database

    $mysql = mysql_connect (DATABASE_SERVER, DATABASE_USERNAME, DATABASE_PASSWORD) or die (mysql_error ());

    Select the database

    @mysql_select_db (DATABASE_NAME);

    re-branded the data passed from Flex to variables

    $username = mysql_real_escape_string ($_POST ["usernam...)

    $password = mysql_real_escape_string ($_POST ["passwor...)

    Ask the database to see if the combination of username/password given name is valid.

    $query = "SELECT * from users WHERE username = 'username' AND password = 'password" ";

    $result = mysql_fetch_array (mysql_query ($query));

    start generating XML

    $output = "< loginsuccess > ';

    If the query returned true, exit < loginsuccess > Yes < / loginsuccess > other output < loginsuccess > not < / loginsuccess >

    if(!$result)

    {

    $output. = « no » ;

    } else {}

    $output. = "yes";

    }

    $output. = "< / loginsuccess > ';

    all the XML for output

    print ($output);

    ? > [/php]

    $query = "SELECT * from users WHERE username = 'username' AND password = 'password" ";

    should be

    $query = "SELECT * FROM users WHERE username = '$username' AND password =  '$password'";
    

    example of a system of working with the correct connection code flex & php to ensure:

    http://www.mattlefevre.com/viewExample.php?tut=flexPHP&proj=simple%20Login%20Application

  • Hello. I have a problem with my publishing site.

    Hello. I have a problem with my publishing site.

    We have a Web site that was built by the single Yola website builder. Initially, we were happy with Yola, but I wanted to know how to create a professional Web site. I created a new Web site in Adobe Muse CC. After that, I transfer our domain name to GoDaddy. For now our old site still in progress, but I want to publish my Web site brand new for our old domain.

    Every time when I tried to download on the FTP host, I received a warning 'folder 'httpdocs' does not appear to point to the www.xxxxxxxxxx site.

    My Plesk hosting settings my root folder is httpdocs.

    Even when I clicked on ignore and continue to publish, I got another warning: "failed to connect to the PHP file. Failed to check if the web server supports PHP required by forms of the Muse. Check the domain name entered in the dialog FTP download is correct "."

    Certainly, I know that all the information re correct identification.

    Please can you help me with advice how to sort my problem?

    Thank you.

    Please check the path of the domain and directory,

    Then check with your hosting company for PHP, as form of muse only work if PHP is supported on the hosting platform.

    Thank you

    Sanjit

  • you attempt to add a web form of Business Catalyst to my site Web of Adobe Muse (via insert html) and the shape is cut all the content below where to place the html area.

    You attempt to add a web form of Business Catalyst to my site Web of Adobe Muse (via insert html) and the shape is cut all the content below where to place the html area. I tried the basic troubleshooting and it's only when I insert a form of Catalyst Business that my web page is cut, where is the bottom of the form. I use this code when you insert form BC in Muse,

    "< div class ="bulletin of information-form"> < form name ="catemaillistform58787"onsubmit ="return checkWholeForm58787 (this)"method ="post"action =" http://theincitejournal.BusinessCatalyst.com/CampaignProcess.aspx?ListId=53681& OPTIN = true & PageID = / index.html"> < div class ="form"> < div class ="item"> < label for ="CLFullName"> full name < / label > < br / > < input class ="cat_textbox_small"type ="text"name ="Full name"id ="CLFullName"maxlength ="255"/ > < / div > < div class ="item"> < label for ="CLEmailAddress"> E-mail address < / label > < br / > < input class ="cat_textbox_small"type ="text"name ="EmailAddress"id = '" "CLEmailAddress" MaxLength = "255" / > < / div > < div class = "item" > < label > Enter Word verification in box below < / label > < br / > {module_captchav2} < / div > < div class = "item" > < input class = "cat_button" type = "submit" value = "subscribe" id = "catlistbutton" / > < / div > < / div > < script type = "text/javascript" src = "http://theincitejournal.businesscatalyst.com/CatalystScripts/ValidationFunctions.js" > < / script > < script type = "text/javascript" > '

    The only settings I did took the H3 header on opt-in and page navigation after the action to get rid of the opt in BC function as default. I tried to download the source code as well and I'm having the same problem. The web Page is here " copy " and a version of what I was creating the page to look like here is ' home ' As you can see, the 'House' version allows me to scroll past where I would have placed the shape box while the 'copy' stops at any user to parade before. I have called the shape slightly from the "development" of British Colombia under the style sheets tab and still tried to trouble shoot and get rid of the code to see if it affects something and it did not add style. For some reason only the HTML to the form is but I cannot understand what the section of the code would do that. Any ideas?

    I see that you have inserted a script tag open that you forgot to close, which generates errors on the page and prevent it from be returned correctly. You should ensure that the code that you insert in the Muse is syntactically correct.

    - Abhishek Maurya

  • In firefox 30, I am facing problem with my wordpress site. I have a blank page.

    After the update to firefox 30, I am facing problem with my wordpress site. My http://www.anthony.co.in Site works great until firefox 29. but little now a blank page. Tried to reset/reinstall and even tried the other PC. Still the same issue. After downgrade to firefox, my site is back very well. Only problem is with firefox 30. Any help would be useful

    Hello

    Line 500, z-index for less than 81.

    . RM-wrapper > div > {div.rm - front}
    z index: 80;
    }

  • Problems with HTTPS access site after upgrading to FireFox 30.0

    I have problems to access our HTTPS Corporate sites after upgrade to FireFox 30.0 of the Mavericks MAC or receive an error message "user not authorized" or the page does not load. I was able to access Web sites mentioned above when you use 29,0 FF. I have read and tried all the items on support to clear the cache and cookies, remove and reinstall the software, trying to change the SSL level & remove the cert8.db and cookie files in the profile.

    Internal just to validate that it was not a problem with our Web site, I tried and was able to access these sites via Safari for MAC Mavericks. I'm looking for what anyone help possible.

    Thank you
    Jim

    Many issues of the site can be caused by corrupted cookies or cache.

    • Clear the Cache

    Press < Alt > or < F10 > to display the toolbar.
    Followed;

    Windows; Tools > Options
    Linux; Edit > Preferences
    Mac; name of the application > Preferences

    Then Advanced > network > content caching Web: clear now

    and

    • Delete Cookies

    Press < Alt > or < F10 > to display the toolbar.
    Followed;

    Windows; Tools > Options
    Linux; Edit > Preferences
    Mac; name of the application > Preferences

    Then confidentiality.
    Under historical, select Firefox will use the custom settings.
    There is a button on the right side, called View the Cookies.

    If there is still a problem,
    Start Firefox in Safe Mode {web link}
    While you are in safe mode;
    Press < Alt > or < F10 > to display the toolbar.
    Followed;

    Windows; Tools > Options
    Linux; Edit > Preferences
    Mac; name of the application > Preferences

    Then Advanced > General.
    Find and stop using hardware acceleration.

    Dig safe web sites and see if there is still a problem. Then restart.

  • When I try to connect it to my youtube account it reads as follows: there is a problem with this Web site's secure certificate.

    Site Web Cecurity certificates

    When I try to log into my youtube account it reads:

    There is a problem with this Web site's secure certificate.
     
     
    The security certificate presented by this website has expired or is not yet valid.
    A site address different Web issued the security certificate presented by this website.


    Security certificate problems may indicate an attempt to fool you or intercept any data you send to the server.

    Anyone know how I can fix this problem?

    There is a useful article at this address on how to solve this problem. Good luck.

    http://answers.Microsoft.com/en-us/IE/Forum/IE8-windows_xp/security-certificate-errors-the-security/89a2a3d9-337b-4FA9-b10c-36caa78d5ab0

    Tim at the Ingenyes

  • Whenever I connect to my hotmail account using Windows Live, I get a warning, "there is a problem with this Web site's secure certificate. »

    original title: security

    Whenever I connect to my hotmail account using Windows Live, I get a warning, "there is a problem with this Web site's secure certificate. »

    Security certificate problems may indicate an attempt to fool you or intercept any data you send to the server.
      We recommend that you close this webpage and do not make this Web site.
      Click here to close this webpage.
      Continue to this website (not recommended).
     
    More information
    • If you arrived at this page by clicking a link, check the Internet address in the address bar to be sure this is the address you've been waiting for.
    • When you go to a Web site with an address as https://example.com, try to add the "www" in the address, https://www.example.com.
    • If you choose to ignore this error and continue, don't get personal information on the Web site.

      For more information, see "Certificate errors" in Internet Explorer Help.

    Some things you can try:

    You can have old certificates root on your computer.  Try to update your root certificates from the link provided in the paragraph "Root Update Package (intended for Windows XP only)" in the following article:

    "Members of the certificate program root Windows.
      <>http://support.Microsoft.com/kb/931125 >

    Depending on which version of Internet Explorer and Service Pack level of your machine, one of the following articles might help you:

    ' "There is a problem with the security certificate from the website" when you try to visit a secure in Internet Explorer Web site.
      <>0 http://support.Microsoft.com/kb/93185>

    "Certificate error Web page is displayed when you try to visit an SSL Web using Internet Explorer 7:"There is a problem with the security certificate from the Web site""
      <>http://support.Microsoft.com/kb/950067 >

    It is also possible that indeed, you will be redirected to a false site.  Check your file C:\Windows\System32\drivers\etc\hosts ensure that there is not a bogus entry for your hotmail login.  Generally, the only line that is required in this file does not begin with a character ' # ' is ' 127.0.0.1 localhost '.

    HTH,
    JW

  • EA4500: There is a problem with this Web site's secure certificate.

    When I navigate to the Web page of the router, I get a message that "there is a problem with this Web site's secure certificate."

    I'm using https.

    Does this mean that https does not work on the EA4500?

    N °, this means that the browser does not trust the certificate sent by the router. The connection is always encrypted.

  • Hi, I have a problem with the download trial version of adobe after effect cc. When I want to download instad of download there are massage: we are experiencing some problems, please try again later. If the problem persists, contact customer support

    Hi, I have a problem with the download trial version of adobe after effects cc. When I want to download instad of download there are massage: we are experiencing some problems, please try again later. If the problem persists, contact customer support. What seems to be a problem? Thank you

    Please try after effects configuration required for Mac OS and Windows

    Concerning

  • Hi, I had problems with the addition of soundtrack to Adobe premiere elements 13. When I add it or drag it immediately comes crashing windows, where says "Adobe Premiere Elements has stopped working". I can add videos with no problems, but cannot add any

    Hi, I had problems with the addition of soundtrack to Adobe premiere elements 13. When I add or drag it happens immediately windows crash, where says "Adobe Premiere Elements has stopped working". I can add videos with no problems, but cannot add .mp3 files.

    I had Windows 8.1, 2.4 GHz, 6 GB of RAM. How to solve this problem?

    Fixed a problem when converting the mp3 file. WAV...

    some poor Adobe Premiere Elements if there is for example simple bug in the software.  Waste of money for this software.

Maybe you are looking for

  • iTunes search power of Podcasts with a number of names

    I want to create a new podcast. Everything is going very well at the moment, but I'm afraid that the name of the podcast will be not available in iTunes. It's "64 4 64." I am not against the change to "Sixty to sixty", but it's a bit heavy can someon

  • The user of Microsoft Word dictionary. Where is he?

    Hoping a user 'Pages' can help here I put a misspelling in my dictionary of user of Microsoft Word (for Mac), but can't see a way to access, delete. It was easy in the old days of AppleWorks. Any ideas?

  • 3005pr speaker Buzz

    I recently bought a 3005pr USB 3.0 for use Port Replicator with my Envy TS 15 laptop. However, I am having a problem with the audio of it. When it is connected through the 3.5 mm audio plug to my Trust Tytan 2.1 speaker system, there is a humming noi

  • HP Pavilion A6Z29UA #aba g7: HP Pavilion g7 can't support aero

    I'm having a problem of green screens that occur using the machine recently. The last update on Windows 7 it automatically installed Aero on my computer which he can not handel. How can I disable AERO. and to get rid of the green screens coming on an

  • Entries in the event viewer that pilot was able to load while the drivers are loaded

    I look in the event viewer and see numerious entries that said: The driver failed to load unit WpdBusEnumRoot\UMB\2 \Driver\WUDFRd & 37c186b & 0 & STORAGE #VOLUME # _____? _USBSTOR #DISK & VEN_GENERIC - & PROD_COMPACT_FLASH & REV_1. 00 #2006041309210