Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

q4legend

Members
  • Joined

  • Last visited

Everything posted by q4legend

  1. Thank you for the quick response guys - really appreciated
  2. That is awesome, well done! Incidentally, how do you get the honeycomb/mesh effect in photoshop? Cheers
  3. I've seen a few sites recently with a great metallic honeycomb like backdrop, similar to the one used at www.davidforbes.com This cannot be a small image file simply repeated as it is much brighter in the middle than the edges... Where can you get such backdrops from... any ideas? Thank you
  4. Update: 123-reg support have replied to my initial query stating that I could use CNAME to resolve this issue... Never heard of CNAME - can anyone clarify? TIA
  5. Hi, I have a handful of websites that I have designed for friends, relatives etc that are currently all uploaded onto the 1 hosting account. I have however, purchased unique domain names for each of the sites. I am using FRAMED WEB FORWARDING to diguise the address, which seems to be the only way to mask the actual address. It works great in that when someone types in the relative site name, that's exactly what shows - and NOT the actual destination address. The only thing is, they don't seem to be doing well in the search engines and I suspect it's because of the framed forwarding. An example I can give you is that when I register the site(s) with google, I cannot verify them because it's expecting to find the HTML file(s) or META tag(s) in the root directory - but they're all on the same web space account The only way I can see around this is to purchase web space for EVERY single website I build (which will incur significant cost increases). Can anyone recommend another approach? Hope this makes sense, I sincerely hope someone on here can help. Much appreciated, Regards Q4Legend
  6. Hi, If you have a website, pretty small in dimension with a bland grey backround, is there any effect or trick you can use to give it some "movement"? I'm thinking like a swirling line(s) or sparkling stars or colour changes etc. I've done a pretty good site for my friends record label but everyting is pretty static and it would be nice to bring it to life a bit. Many thanks
  7. Hi, I may begin working on a website shortly, but the owner has already purchased the domain name from 123-reg.co.uk. Once the site is ready and tested, how do I upload it if the address is in their ownership? Do they just need to give me the HOST, USERNAME and PASSWORD? Will this informartion be readily available to the? I want to make sure I know what it is they need to give me... Any advice appreciated, Many thanks
  8. Hi. Really hope someone can help here, as I've all but given up on my web host tech support. I have web space which is host to several sites - my music band, my brothers company and a friends sandwich shop. The domain names were purchased seperately via 123-reg.co.uk but point to different "areas" of my website which is hosted by Easyspace. I can get web stats from Easyspace but they only cater for my website - how on earth will I know how many visitors have accessed the sandwich shop for example? Hope this makes sense... TIA Regards Q4Legend
  9. thanks for trying mate, here is the mail_form.php script as it stands now... <?php phpinfo(); $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; $message = $_POST['message']; $name = stripslashes($name); $email = stripslashes($email); $phone = stripslashes($phone); $message = stripslashes($message); $rec_email = 'info@mysite.co.uk'; $subject = "Mysite Web Query"; $msg_body .= "¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯\n"; $msg_body .= "Name: $name\n"; $msg_body .= "E-Mail: $email\n"; $msg_body .= "Phone Number: $phone\n"; $msg_body .= "Message: $message\n"; $msg_body .= "_____________________________________________\n"; $header_info = "From: $email"; $sender = 'webquery@mysite.co.uk'; mail($rec_email, $subject, $msg_body, $header_info, '-f'.$sender); ?> This is a nightmare
  10. Hi, I recently switched ownership of a domain mame to easyspace and wondered if it would be possible to back out? Their customer services have been utterly terrible and I really wish I had not made the move. It has been 10 days, and I've paid for 12 months of web hosting and transfer of my domain name from 123-reg.co.uk surely I am entitled to switch back and claim a full refund? Been through their T&C's and there's nothing about it... Any ideas?
  11. It's flash, using a program called swishmax 2. Can't really give you the whole code as it's divided into sections - here's a break down of the main parts: Here's the contact form code: onSelfEvent (load) { System.useCodePage=true; } onFrame (1) { input_name.text="Name"; input_email.text="Email"; input_phone.text="Phone Number"; input_message.text="Message"; status = ""; } onFrame (2, afterPlacedObjectEvents) { stop(); } onFrame (56, afterPlacedObjectEvents) { setLabel("submitted"); } onFrame (300) { gotoAndPlay(1); } name field - onSelfEvent (load) { this._text.onSetFocus=function(){ if (this.text=="Name"){ this.text=""; } else{ this.text=this.text; } _parent.borders.gotoAndPlay("name");}; this._text.onKillFocus=function(){ if (this.text==""){ this.text="Name"; } else{ this.text=this.text; } }; } Email field - onSelfEvent (load) { this._text.onSetFocus=function(){ if (this.text=="Email"){ this.text=""; } else{ this.text=this.text; } _parent.borders.gotoAndPlay("email");}; this._text.onKillFocus=function(){ if (this.text==""){ this.text="Email"; } else{ this.text=this.text; } }; } phone field - onSelfEvent (load) { this._text.onSetFocus=function(){ if (this.text=="Phone Number"){ this.text=""; } else{ this.text=this.text; } _parent.borders.gotoAndPlay("phone");}; this._text.onKillFocus=function(){ if (this.text==""){ this.text="Phone Number"; } else{ this.text=this.text; } }; } Message field - onSelfEvent (load) { this._text.onSetFocus=function(){ if (this.text=="Message"){ this.text=""; } else{ this.text=this.text; } _parent.borders.gotoAndPlay("message");}; this._text.onKillFocus=function(){ if (this.text==""){ this.text="Message"; } else{ this.text=this.text; } }; } Send button code - on (rollOver) { gotoAndPlay("on"); } on (rollOut) { gotoAndPlay("off"); } on (release) { if (!_parent.input_email.text.length || _parent.input_email.text.indexOf("@") == -1 || _parent.input_email.text.indexOf(".") == -1) { _parent.Status = "Valid Email Required"; } else { _parent.Status = "Message Sent!!"; name = _parent.input_name; email = _parent.input_email; phone = _parent.input_phone; message = _parent.input_message; loadVariablesNum("Mail_Form.php",0,'POST'); _parent.gotoAndPlay("submitted"); _parent.borders.gotoAndPlay("off"); } }
  12. Sorry mate, I'm jumping about all over here, and probably confusing you... Have done some tests on old and new servers. Old server is php version 4.4.6 New server is php version 5.2.8 THAT explains why the mail form is working on old servers still but not on new servers. God, I hope this helps (and HOW bad are easyspace tech help!!) Regards
  13. Here is the code I use to send the info... on (release) { if (!_parent.input_email.text.length || _parent.input_email.text.indexOf("@") == -1 || _parent.input_email.text.indexOf(".") == -1) { _parent.Status = "Valid Email Required"; } else { _parent.Status = "Message Sent!!"; name = _parent.input_name; email = _parent.input_email; phone = _parent.input_phone; message = _parent.input_message; loadVariablesNum("Mail_Form.php",0,'POST'); _parent.gotoAndPlay("submitted"); _parent.borders.gotoAndPlay("off"); } } Hope this helps mate - fingers crossed Regards
  14. Ah, it actually posts the php data after about 10 seconds.... Windows NT WEB03 5.2 build 3790 Dec 8 2008 19:30:48 How cool is that!! Any help?
  15. Sorry mate, where do I put the php(info); line? Into the php file or the index.html? Tried putting it in the mail_form.php file, but cannot get in to view... TIA
  16. Hi mate. Tried replacing 'HTTP_POST_VARS' with '$_POST' for all four input fields and received the following email: Name: _level0.LOADER.Content.Contact_Form.input_name E-Mail: _level0.LOADER.Content.Contact_Form.input_email Phone Number: _level0.LOADER.Content.Contact_Form.input_phone Message: _level0.LOADER.Content.Contact_Form.input_message Normally, there are just the headers (Name: E-mail: etc) with blank values but now there's the errors... Any ideas? I definitely feel we're getting somewhere though, many thanks
  17. Hi, thanks for the help. Looking at Easyspace homepage, it looks as though PHP is version 5.1.6, so the sales advisor may have been wrong. Assuming that this is true, what can I do to my mail form script to make it work? Much appreciated, and help would be great. TIA
  18. Hi, thanks for the response. The new version is running at v4.3.10. Do you have any ideas and/or suggestions? Thanks
  19. Hi, Been using a pretty standard PHP mail form successfully for a while now, but just bought some more webspace from Easyspace (a new account) and it no longer works. Strange thing is, it worked last week (and still does) on my other account, which is also through Easyspace. Surey it has to be something to do with their web hosting - but I've emailed them and they've said it's not at their end! Here's the script - <?php $name = $HTTP_POST_VARS['name']; $email = $HTTP_POST_VARS['email']; $phone = $HTTP_POST_VARS['phone number']; $message = $HTTP_POST_VARS['message']; $name = stripslashes($name); $email = stripslashes($email); $phone = stripslashes($phone); $message = stripslashes($message); $rec_email = 'info@mywebsite.co.uk'; $subject = "Mywebsite Web Query"; $msg_body .= "¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯\n"; $msg_body .= "Name: $name\n"; $msg_body .= "E-Mail: $email\n"; $msg_body .= "Phone Number: $phone\n"; $msg_body .= "Message: $message\n"; $msg_body .= "_____________________________________________\n"; $header_info = "From: $email"; $sender = 'webquery@mywebsite.co.uk'; mail($rec_email, $subject, $msg_body, $header_info, '-f'.$sender); ?> Sometimes it returns just the headers with no values, sometimes it doesn't even seem to send. This is really frustrating me and easyspace have been rubbish in helping. Any ideas? TIA

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.