Sunday, May 23, 2010

Please Help!!?

I need to rebuild my website and find a web host for websites on Macs that is affordable...any suggestions??



TIA!!



Please Help!!?





tripod.com



best and better...go for

Has anybody hear about this message , is scam or true prize, how can I know?

this is my message



Microsoft Award Team



20 Craven Park, Harlesden



London NW10,United Kingdom.



Ref: BTD/068/088



Batch: 404128E



Dear Lucky winner,



WINNING NOTIFICATION



The prestigious Microsoft and AOL has set out and successfully



organised a Sweepstakes marking the end of year anniversary we rolled out over



100,000.000.00 (One Hundred Million Great Britain Pounds) for our end



of year Anniversary Draws. Participants for the draws were randomly



selected and drawn from a wide range of web hosts which we enjoy their



patronage.



Your email address as indicated was drawn and attached to Ticket Number



008795727498 with Serial Numbers BTD/9080648302/06 and drew the Lucky



Numbers 14-21-25-39-40-47(20) which subsequently Won you 鎷?,000,000.00



(One Million Great Britain Pounds) as one of the jackpot winners in



this draw. You have therefore won the entire winning sum of 鎷?,000,000.00



(One Million Great Britain Pounds).



Please Contact your claims agent



Mr



Has anybody hear about this message , is scam or true prize, how can I know?





It%26#039;s a scam.



For one thing, you never entered any contest.



Second, Microsoft almost never gives away money. If they have any contest at all, they give away stuff (usually microsoft products, of course)



Has anybody hear about this message , is scam or true prize, how can I know?



if you did not enter it, then you can%26#039;t win. It%26#039;s a scam



Other Replys:Wow, these people are gettin desperate. I can%26#039;t tell you how many different varieties of this have seen, and EVERY ONE is a SCAM. Trash it, delete, spam any of the above. It%26#039;s all a hoax, and not a very good one I might add.



Other Replys:#1 Yes



#2 Yes



#3 There are no free lunches!



When you contact the Claims agent, you will be asked to deposit money in YOUR account in order to cover handeling charges or a commission for your agent, when you do say bye, bye to your money.



Other Replys:A good rule to go by - if you win a competition you didn%26#039;t enter, then think scam. Most of these tell you you have won a large sum of money and then ask you to make payments to %26quot;finalize%26quot; the prize. You don%26#039;t see your money or the prize. You can contact you local Consumer Affairs Department - they have lists of the known scams. Or you might have to contact your local police department to see if they have heard of it.



Also check the origin of the information. Note www. addresses. If it was Microsoft it would be on their official site, wouldn%26#039;t it? After all it would be great publicity. Not some obscure e-mail address.



Stay safe. B

Can I create a searchable website interface without professional help?

I wish to have a website whereby the visitors can search my database (in MySQL) by a couple of search fields presented in drop down menu?



As an example, http://www.searchspanishproperty.com on its search items.



What I have in mind is a catalog of music albums, the search fields will include, title, singer, year released, genre, so on and so forth.



Any software that can generate such code in PHP or Perl? Writing scripts from scratch is beyond my programing ability.



By the way, my web host is in Linux, so MS Front page is out of the question?



Thank you.



Can I create a searchable website interface without professional help?





want to create websites without professional help?



I would suggest you start learning php %26amp; mysql. here%26#039;s a good place to start: http://www.w3schools.com

I want my customers to be able to customize their orders on my website, how do I go about that witho

I need to impliment this so my customers may customize their computers to be built. My web host does not allow asp. So can I use php to design that? what would be the best approach, and programs?



I want my customers to be able to customize their orders on my website, how do I go about that without asp?





php will do it, you need a database (mysql) to hold the data and retrieve it. Set up links or buttons from the descriptive pages of the components to allow adding them to the build list, and remove links or buttons in the list to allow them to correct errors. You will need to write code for this.



I want my customers to be able to customize their orders on my website, how do I go about that without asp?



PHP, JSP,

How do I block IP address ranges from viewing my personal website?

I%26#039;ve been using the JavaScript found here: http://www.javascriptkit.com/script/scri... and it works for individual IP addresses, but have not figured out how to write the formula for a range of IP numbers. I would like to block the range 166.128.0.0 - 166.255.255.255.



Note: My web host is Yahoo! and they do not give their users access to the .htaccess file, that%26#039;s why I%26#039;m using JavaScript code on the page instead.



How do I block IP address ranges from viewing my personal website?





%26lt;html%26gt;



%26lt;head%26gt;



%26lt;script%26gt;



// block a range or ranges of ip addresses



// use SSI to parse ip address into page, assigning



// resulting value to global JavaScript variable



var ipAddress = %26#039;%26lt;!--#echo var=%26quot;REMOTE_ADDR%26quot;--%26gt;%26#039;;



ipAddress = formatQuadTripleIp(ipAddress);



ipAddress = parseFloat(ipAddress);



// give a list of range bounds for ip addresses:



// each item is a pair of ip addresses as



// [lower bound, upper bound]



// each bound pair should be a comma-separated



// pair of ip addresses enclosed in



// square brackets and separated from



// the following pair by a comma



// each ip bound value should be a complete



// quad-triplet as %26quot;###nnn###nnn%26quot;.



var ipBoundPairs = [



[%26#039;001002003004%26#039;, %26#039;001002003999%26#039;],



[%26#039;011002003004%26#039;, %26#039;011002003999%26#039;],



[%26#039;101002003004%26#039;, %26#039;101002003999%26#039;]



]



var last = ipBoundPairs.length;



var banned = false;



for (var i = 0; i %26lt; last; i++) {



var lower = ipBoundPairs[i][0];



lower = parseFloat(lower);



var upper = ipBoundPairs[i][1];



var upper = parseFloat(upper);



banned = banned ||



(ipAddress %26gt;= lower %26amp;%26amp;



ipAddress %26lt;= upper );



if (banned) break;



}



if (banned) {



alert(%26quot;You are not permitted to view this page!%26quot;);



window.location = http://www.fbi.gov%26quot;%26#039;;



}



else {



alert(%26#039;you are not banned%26#039;);



}



function formatQuadTripleIp(ip) {



ip = ip.split(%26#039;.%26#039;);



var fip = %26#039;%26#039;



for (var i = 0; i %26lt; 4; i++) {



fip += (%26#039;000%26#039; + ip[i]).slice(ip[i].length);



}



return fip;



}



%26lt;/script%26gt;



%26lt;/head%26gt;



%26lt;body%26gt;



%26lt;/body%26gt;



%26lt;/html%26gt;



How do I block IP address ranges from viewing my personal website?



You%26#039;ll need to fill an %26quot;banned%26quot; array with the range of IPs using a for statement. It%26#039;s going to be a large array. :P



Then using a DO statement you can check to see if their IP is in that list.



edit:



You know -- I haven%26#039;t programmed forever, otherwise I wouldn%26#039;t have provided a code example. But I was thinking, you can break the IP up into the first ocet. %26quot;166%26quot; and ban any or all IPs that start with 166.



Then again, Javascript banning isn%26#039;t fool proof by any means.



Does Yahoo support PHP or CGI Perl?



If so, you can create one single script that will check the IPs, You can call that script from every page on your site. And have a redirect page giving a %26quot;ban message%26quot;.



It wouldn%26#039;t require a whole lot of modification to your pages.



And the only way to bypass it would be to use a proxy or another connection



Other Replys:did not know no access to htaccess file on yahoo... that%26#039;s bad.



i have hosting and give client access to modify their htaccess. move your page to another company. u can find already for 1 usd a month. is 12 usd a year much? think no.

I want to create a website what is my next step?

i have registered a domain and set it to a web host. please help



I want to create a website what is my next step?





Since you already registered the domain name, I%26#039;m sure you know what you want to make the site about. Here are some tips on getting started: http://www.richkahmer.com/build-a-websit...



Once the site is made, build inbound links to your website.



Most of the directories online charge a one time fee to review your site and add it to their index. Here are three of my favorites:



http://www.avivadirectory.com/cgi-bin/af...



http://www.kahmer.com



http://www.joeant.com



The more inbound links to your site, the better you will rank



with Yahoo / Google / MSN.



Also work on your meta tags. Here is an



article on how they work: http://www.richkahmer.com/meta-tags.html

Hi, I got a Mail stating that I won the MSN/AOL award. Can any one help in finding the facts about t

I got a mail staing that I won MSN/AOL. SOme lines froms the mail, %26quot;The prestigious Micrsoft and Aol has set out and sucessfully organised a Sweepstakes marking the year 2007 anniversary we rolled out over 鎷?,000.000.00 (Five million Great Britain Pounds) for our year Anniversary Draws. Participants for the draws were randomly selected and drawn from a wide range of web hosts which we enjoy their patronage.



The selection was made through a computer draw system attaching personalised email addresses to ticket numbers. If you ignore this, you will regret it later. Microsoft and AOL are now the largest Internet companies and in an effort to make sure that Internet Explorer remains the most widely used program, Microsoft and AOL are running an e-mail beta test.%26quot; I contacted the person concrned (agent-mentioned in the mail). Then he sent me a mail that I have to bare the delivery charges around 1000 pounds. I need your help to know whether is it fact or something to grab money only.



Hi, I got a Mail stating that I won the MSN/AOL award. Can any one help in finding the facts about that?





You did not win an award. What you won is the ability to email both AOL and MSN and tell them that you recieved a scam email using their names! They%26#039;re infringing on two large companies names in order to steal people%26#039;s private data.



Hi, I got a Mail stating that I won the MSN/AOL award. Can any one help in finding the facts about that?



You responded to the Scam ?



If you still have the Original Email, send it to the real MSN and AOL spoof emails. That should do something



If you gave them ANYTHING which IDs you, make sure that you get yourself covered NOW !!!!!!!!!!!!!!! Lock down, or change any account info you gave them



Other Replys:That is DEFINITELY a scam. Don%26#039;t be fooled. The number one way to spot a scam: Do you remember entering that contest? if your answer is no, then it is most likely a scam.



Other Replys:As stated above, it is definitely a scam. Not only is it a phishing attempt to have you provide financial details to %26quot;release%26quot; the funds, by opening the email you have probably sent back a web beacon to the source which will subject you to even more spamming and phishing attempts. It%26#039;s a variation of the 419 fraud



Other Replys:Definitely a SCAM !!! Here%26#039;s a big clue - whenever you see something like:



%26quot;If you ignore this, you will regret it later.%26quot;



AVOID IT LIKE THE PLAGUE!!! Microsoft and/or AOL would never use that type of statement if they were informing you that you had been %26quot;selected%26quot;....



ALWAYS keep in mind: If it seems too good to be true, it probably is.



Hope this helps.