[Pro] PHP FEEDBACK

revisited - would really like to make this work - godaddy is my host, tried variations on the action, have set up godaddy mailscript, tried with SMTP, without, etc.

also it is funny, but when I view it
http://proserver.com/newsite/WOJSF/contact.html

you can move the message block around ??

I would like to make other pages for ordering, etc.

thanks in advance

Scott


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

you can move the message block around ??

Pretty standard behaviour in Safari, FF4 (and some other browsers) to be able to resize the text area.

As to getting it working on GoDaddy - that may require access to your GD account for testing purposes without you having to bash your head against the proverbial.

Tim is the expert here as he wrote the action and subsequently modified it to work on GD’s flaky servers.

Personally I would ditch GD and get some server space where PHP just works!

I am not dissing GD - I use them almost exclusively for Domain Management and Registration - but they can be a huge PITA.

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hi Scott,

  1. Your submit button type is set to ‘button’ and it should be ‘submit’. Check the Item Output Settings tab (3rd) in the Inspector palette.
  2. Text area resizing - you can prevent the user from resizing the text area like this; webkit - Hiding textarea resize handle in Safari - Stack Overflow
    Regards,
    Tim.

On 8 Feb 2011, at 23:14, ScottSimons wrote:

revisited - would really like to make this work - godaddy is my host, tried variations on the action, have set up godaddy mailscript, tried with SMTP, without, etc.

also it is funny, but when I view it
http://proserver.com/newsite/WOJSF/contact.html

you can move the message block around ??

I would like to make other pages for ordering, etc.

thanks in advance

Scott

FreewayActions.com - Freeware and commercial actions for Freeway Express & Pro.

Protect your mailto links from being harvested by spambots with Anti Spam.
Only available at FreewayActions.com

http://www.freewayactions.com


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

shazaaam!!! submit works, will work on the formatting - thanks to all

On Feb 8, 2011, at 4:52 PM, Tim Plumb wrote:

Hi Scott,

  1. Your submit button type is set to ‘button’ and it should be ‘submit’. Check the Item Output Settings tab (3rd) in the Inspector palette.
  2. Text area resizing - you can prevent the user from resizing the text area like this; webkit - Hiding textarea resize handle in Safari - Stack Overflow
    Regards,
    Tim.

On 8 Feb 2011, at 23:14, ScottSimons wrote:

revisited - would really like to make this work - godaddy is my host, tried variations on the action, have set up godaddy mailscript, tried with SMTP, without, etc.

also it is funny, but when I view it
http://proserver.com/newsite/WOJSF/contact.html

you can move the message block around ??

I would like to make other pages for ordering, etc.

thanks in advance

Scott

FreewayActions.com - Freeware and commercial actions for Freeway Express & Pro.

Protect your mailto links from being harvested by spambots with Anti Spam.
Only available at FreewayActions.com

http://www.freewayactions.com


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hello everyone!

I’ve tried to add the patch as follows but it didn’t work. First, I did it as a mark-up and then tried and extend command. What Am I doing wrong"

textarea
{
resize: none;
}
or just simply

TEXT TEXT TEXT

freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Better to add into Page>HTML markup before end head. Because FW doesnt give form items an ID (I think?) then you will have to do it yourself.

Select the Text area, Item>Extended new (under TEXTAREA) ID/whatever_you_want_as_long_as_it_is_unique

Then in Page>HTML markup


<style type="text/css">
<!-- 
#whatever_you_want_as_long_as_it_is_unique {
resize:none;
}
-->
</style>

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thank You David!

I will try it

regards,
Marcus


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

David, one question:

I selected the but don’t know what to put as “name” and “value”. You say:
Select the Text area, Item>Extended new (under TEXTAREA) ID/whatever_you_want_as_long_as_it_is_unique

Could it be resize as “name” and none as “value” and then the html markup?

best,
Marcus


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

name: ID

value: whatever_you_want_as_long_as_it_is_unique

The resize bit goes in Page>HTML markup

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

David, I must be doing something wrong…

Does the form need to be selected as CSS? The way I have it now the CSS is unselected…

Sorry for bothering you again
Thanks

Marcus


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Post a link to your page Marcus

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hi David, here’s the link:

http://www.plusartgraphics.com/contact.php

thanks again
Marcus


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

OK - I see your page - the text area already has an ID of message so change Page>HTML Markup to read

<style type="text/css">
<!-- 
    #message {
resize:none;
}
-->
</style>

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thank you David! In this case I should delete the ID I previously created on item>extend before, right? Or it doesn’t matter?

best
M


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Great!! Its working now!! Thanks again David!
Marcus


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

I should delete the ID I previously created on item>extend before

Yes - I see it works

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options