Jump to content

holly9

Members
  • Posts

    31
  • Joined

holly9's Achievements

Member

Member (2/5)

0

Reputation

  1. Hi, I making a banner exchange script. Members will have to place a banner code on their sites to make banners appear. Some members might cheat by using bots to refresh the page to gain impressions and to waste other members impressions so i wanted to know if bots have ip addresses? because i want to only give member impressions if their visitors have ip. What are the other things i can do to check if members are cheating?. Thanks $ip=$_SERVER['REMOTE_ADDR'];
  2. Hi, i want to sell php scripts/ready made sites in the near future on clickbank and on my sites and i wanted to know is it necessary to go to a copyrights office to protect my work? and to stop people from selling it? i was thinking to have a license txt file that tells buyer not to sell and etc instead of going to a copyrights office.i understand how copyrights work but i don't know if i can stop the person from selling and claiming my stuff without having ownership proof from the copyrights office. I might sell some stuff that doesn't have restrictions.thanks
  3. Hi, how much bandwidth is used for 1000 downloads per day or for each download? Is it safe to have no download limits? Thanks
  4. I'm not an expert but I notice a few errors. Nothing downloads when i click the "proceed to download page" link. The right side menu(featured and blogroll) is bigger than the content area. Content area should be bigger than right side menu. Featured and blogroll should be in the same column.The other parts of site is good. I found link below a few days ago to help me with my site layout. It talks about the "the golden ratio in web design" which gives people an idea where to put navigation,footer and etc. http://code.tutsplus.com/tutorials/the-golden-ratio-in-web-design--net-2272
  5. Hi, I made big changes to the site. I corrected the spelling and grammar with the help of online tools. I hope that my site is way better then before.
  6. Your input is great . Thank you very much for taking your time looking at each page. I'll study English grammar and etc online. I might get a free template online if I continue to fail. I'm in a rush to have an online business because I want to pay off my school loans. I plan to extend the expire date of my domain to show my site visitors how serious I am with having an online business.
  7. Hi I made a new design for my website and I made some changes. I want to use layout for my second site. I'll like to know if my site is easier to browse through now and if you like the design better?. I test my site on internet explorer, chrome, and firefox. It is best to use site on better browsers like firefox and chrome to get a better experience of site. Thanks. http://adjade.com
  8. Hi I use fake IP to check if my 503 custom error page works but it doesn't?. I have another question should i stop people from hotlinking to my rss feed which is also sitemap? and stop people from hotlinking to my robots.txt?. Thanks RewriteEngine on RewriteBase / #UNCOMMENT THE THREE LINES BELOW TO TAKE OFF www RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^adjade\.com RewriteRule (.*) http://adjade.com/$1 [R=301,L] #403 has same page as 404 for security ErrorDocument 403 /errormessages/404.html ErrorDocument 404 /errormessages/404.html ErrorDocument 401 /errormessages/401.html ErrorDocument 500 /errormessages/500.html ErrorDocument 400 /errormessages/400.html ErrorDocument 503 /errormessages/503.html # TO ALLOW YOURSELF TO VISIT THE SITE, CHANGE IP TO YOUR IP ADDRESS. #UNCOMMENT THE TWO LINES BELOW TO GO OFF LINE RewriteCond %{REMOTE_ADDR} !^11\.111\.111\.11$ RewriteRule .* - [R=503,L]
  9. Thanks i'll follow the tips. 2. My web codes will have allot of content so I thought that people would like the scrolling box. it is abit hard for me to read content so i'll change my menu and content heights to auto in css right away. I wanted to have a mini site but it is impossible with all my content. I didn't want to use php switch statement inside web codes because i already use it with my navigation(home,faq,web codes,tos and etc) and i'm not a fan of php switch statement. I thought of using ajax for my content but it will be hard to get my javascripts codes with that method.
  10. Hi, I'll love to have feed back on stuff like content and seo. My website doesn't have a member base. My niche is: Learn how to make a banner advertising site. I show many ways to make a banner ad site using html, javascript,ajax and php( with and without mysql). I hope to make allot of money using marketing tecniques. I learn free web programming online at places like w3schools. I spend the last few days correcting so many html and css errors before writing here. I'm not great at making templates as yet so i'm sorry if my template frightens you lol. I want to have a second site with a memberbase and it will be a banner exchange or a banner adboard site. I don't want to create a template for my second site. My navigation links are white and it makes all my other non-navigation links white as well for some reason so i have to color the other links using css. I made template using w3schools tutorials. Thanks for your feed back and for stopping by!. http://adjade.com/
  11. hi i have a php site and i want to have a sitemap on my site.i have seen all kinds of site map which is confusing because i don't know which is the best to use and if any sitemap can be used with ajax live search.i don't want to make two sitemaps so i hope that a rss feed sitemap is enough to help search engines crawl my site.i want a rss feed to let people subscribe .is it a good idea to put disallow in robot.txt for sitemap? some people said that they need to do that to prevent content theft or something like that.thanks i want to use a sitemap like this: <?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>W3Schools Home Page</title> <link>http://www.w3schools.com</link> <description>Free web building tutorials</description> <item> <title>RSS Tutorial</title> <link>http://www.w3schools.com/rss</link> <description>New RSS tutorial on W3Schools</description> </item> <item> <title>XML Tutorial</title> <link>http://www.w3schools.com/xml</link> <description>New XML tutorial on W3Schools</description> </item> </channel> </rss> i saw this livesearch code at w3schools: <html> <head> <script> function showResult(str) { if (str.length==0) { document.getElementById("livesearch").innerHTML=""; document.getElementById("livesearch").style.border="0px"; return; } if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else { // code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("livesearch").innerHTML=xmlhttp.responseText; document.getElementById("livesearch").style.border="1px solid #A5ACB2"; } } xmlhttp.open("GET","livesearch.php?q="+str,true); xmlhttp.send(); } </script> </head> <body> <form> <input type="text" size="30" onkeyup="showResult(this.value)"> <div id="livesearch"></div> </form> </body> </html> this will get data for live search: <?php $xmlDoc=new DOMDocument(); $xmlDoc->load("links.xml"); $x=$xmlDoc->getElementsByTagName('link'); //get the q parameter from URL $q=$_GET["q"]; //lookup all links from the xml file if length of q>0 if (strlen($q)>0) { $hint=""; for($i=0; $i<($x->length); $i++) { $y=$x->item($i)->getElementsByTagName('title'); $z=$x->item($i)->getElementsByTagName('url'); if ($y->item(0)->nodeType==1) { //find a link matching the search text if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q)) { if ($hint=="") { $hint="<a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } else { $hint=$hint . "<br /><a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } } } } } // Set output to "no suggestion" if no hint were found // or to the correct values if ($hint=="") { $response="no suggestion"; } else { $response=$hint; } //output the response echo $response; ?>
  12. Hi,Can a site get a high pagerank and good SEO if its content is stored in the mysql database?. I want to make many sites and one site will have no memberbase but instead it will have a directory with affiliate products from clickbank and etc. I'll be writing the products descriptions in my own words. I want to have the products pics and info stored in the database because it is easier to uploud new products that way.I want people to subscribe to site but i don't understand how to use the mailing list at host so instead I want to use this mail(); to send mail to over 100 thousands of people.Well i don't know if i'll be able to have that many subscribers with my english skills lol.English is my first language but I wasn't taught properly. i'm teaching myself to write better with online tutorials. Thanks.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.