Search results

  1. M

    Which links are not indexed

    Hi, Is there any method to know which pages, links from sitemap are not indexed by google. For example, in webmaster tools it says 3200 links submited and 3125 indexed. I'm interesed to know which of sitemap links are not indexed, or which are indexed, if there is such method.
  2. M

    Google +1 and changing site name without www

    Hi, I changed the website URL from http://www to URL without "www", using also 301 redirect in htaccess. Now, all the +1 Google which was for the name with www disaperred. It is not such a big deal, but anyway; is there a solution to get the +1s votes from the old address with www to the address...
  3. M

    Whats better for seo? .php or .html?

    Hi, I think is better without extension, only the article name and its ID if it is neccessary in script code.
  4. M

    New Google Tool for Webmasters - Disavow Links

    Hi, I found that Google introduced a new tool for Webmasters, "Disavow Links", that enables you to disavow links to your site. If you've been notified of a manual spam action based on "unnatural links" pointing to your site, this tool can help you address the issue. If you haven't gotten this...
  5. M

    Hosting server location

    Hi, Does it matter the location of the hosting server? For example, if I have a wensite in english, but the hosting server is in Spain, and I want target users from UK, USA, Canada; is it better in search engines to use a server from these countries? Also, the search engines check the server...
  6. M

    Run different PHP versions on virtual hosts in apache 2.2

    To test some old scripts which use functions deprecated in PHP 5.2 +. There are good scripts created with php 4.4, and they need to be tested before rewrite them with php 5.3 .
  7. M

    Run different PHP versions on virtual hosts in apache 2.2

    Hi, How can I configure Apache 2.2 server to have PHP 5.3 in all virtual hosts, except one virtual host in which to run PHP 4.4? I have all the php and .dll files. ---------- Post added at 02:49 PM ---------- Previous post was at 01:43 PM ---------- If it is useful for someone, I found this...
  8. M

    Google announce new algorithm to target spam keyword

    Hi, Something that is interesting for webmasters, and SEO. Google announced a new algorithm change to reduce the ranking of 'perceived' spammers. http://insidesearch.blogspot.com/2012/04/another-step-to-reward-high-quality.html This latest update appears to target keyword stuffing (lists of...
  9. M

    Get to Post (PHP)

    Hi, You can use cUrl to send data via POST from php to an url address, and then to get the response. You can find on the net details about cUrl. Or, you can add the value of $un into a SESSION, then, in client_view.php you get that value from SESSION.
  10. M

    Any idea about this error??

    Hi, Check if you entered the correct mysql server address of your hosting, also, maybe it uses another port than the standard 3306. You can get these info from your hosting.
  11. M

    Review: Inviz.biz

    Hi, I visited your site. I can say that eaven it is simple, not complicated HTML /CSS design, it has to many HTML errors. Maybe it can be better for search engines to make it valid HTML.
  12. M

    Sobi here

    Hi Sobi Welcome to this forum, which is like a market place :).
  13. M

    Hi wj

    Hi Macman Welcome to this forum, feel free to share your knowldges :).
  14. M

    Replace with Dynamic variable in preg_replace

    Hi, I solved the problem using the "/e" flag, which makes the preg_replace() to evaluate the expresion before replacement. preg_replace('/\<-- ([A-Z_]+) --\>/e', "$$1", $t);
  15. M

    Replace with Dynamic variable in preg_replace

    Hi I'm trying the following code: $t = '12<-- AB_C -->'; $AB_C = 'abc'; echo preg_replace('/\<-- ([A-Z_]+) --\>/', "$$1", $t); I want to get "12abc" , but it outputs: 12$AB_C , so, it not recognize the replacement as dynamic variable. Is it any way to use the matched word in preg_replace() as a...
  16. M

    How can i Get Members ?

    Hi, Try to put useful resources for download, but the link available for members with at least one post.
  17. M

    Review: PureWaltech.in

    Hi A subiectiv opinion, the pink background at the "Welcome ..." seems to stridently, and not matches the rest of theme.
  18. M

    How to have auto-complete in Notepad++

    Hi yutou Maybe it helps you this topic http://www.wjunction.com/13-tutorials-guides/110125-auto-close-brackets-tags-notepad.html#post1092833
  19. M

    Auto-close brackets and tags in Notepad++

    To auto close brackets and html tags in Notepad++ instal /use the plugin "XBrackets Lite". The "TextFX" pulgin also have option for auto-close [x]html tags and meny other utilityes that are available after install this plugin, and it's show as menu. - [i]To install a plugin in Notepad++, go to...
  20. M

    php urlencode problem

    Data in $_GET and $_REQUEST encoded with urlencode() are alutomatically decoded. I'm not sure if it works, but anyway try the alternative function: rawurlencode() .
Back
Top