Jump to content
xisto Community

ijin

Members
  • Content Count

    4
  • Joined

  • Last visited

  1. Could be, if there are no references for boaw in the page or link, otherwise it doesn't play big role in rankings, or indexing. Sometimes search engines do that, I wouldn't worry about it. As long as you have enough inbound links, it _will_ be back. You can monitor how many pages google has indexed by searching in google for site:yoursite.com Another possibility is that you got sanboxed.. Basically it means that if you start competing for high-result keywords, your site can be sandboxed, which means that any backlinks will not be counted towards your rankings. You'd stay there for anything from 3 months to 1 year. You can't do anything if you are. Or maybe you got banned for doing something not nice. But you have to get reported to get banned, doesn't happen automatically, only manually. You can check here: http://www.iwebtool.com/. If all is fine, then all you have to concentrate on is backlinks. I have no clue about the referrer thing though. Backlinks can be checked by a google search for link:yoursite.com
  2. Kind of a weird post for a forum where you apply for hosting
  3. Well, if you are really new, I'd say first get familiar with what PHP looks like. You can go through a series of lessons from w3schools.com as mentioned.. But from then on, you should really start working on something you want to do and just learn along the way. You'll use http://php.net/ for function searching/reference and dev.mysql.com for sql reference.. You learn the best when you've got to do something. It's more fun this way too.
  4. Well, you can't really do much but do a str_replace() on the file.. so here's how it would look like: $data = file("file.txt"); // puts whole file into array$file = file("file.txt", "w"); // We'll overwriteforeach($data as $value) { //loop through each linestr_replace("sucks::", "love::", $value); // or "" instead of love :)fputs($file, $value); // write into the file}fclose($file); And that would be one approach ;-) You can also use fopen to read the file, use regexp and probably a myriad of other things.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.