Jump to content

MarPlo

Members
  • Posts

    80
  • Joined

  • Last visited

Posts posted by MarPlo

  1. 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. Hi,

    Add the <script> after the HTML that is accessed in the script. Because the code of the script is executed in the same moment when is loaded, and not see the html element wich is after it.

    <input type="text" id="text_input">
    <script type="text/javascript">
    document.getElementById( 'text_input' ).onkeyup = function()
    {
    // do stuff
    }
    </script>

    It is indicated to have the <script> before the closing </body>, where all the other html elements are loaded.

  3. Hi,

    In the Facebook documentation about Login the user with Facebook APP they say:

     

    "Because it requires you to include your App Secret you should not attempt to make this call client-side as that would expose this secret to all your app users. It is important that your App Secret is never shared with anyone".

     

    I understend it is about APP Secret, but what about the Developer ID?

    The developer ID is added in the URL address of the window for login the user with Facebook:

    https://www.facebook.com/dialog/oauth?client_id=APP_ID&redirect_uri=...&state=...&scope=...

    The APP_ID can be copied and used by anyone.

    I tryed with Javascript SDK, and with PHP SDK, but in both cases the developer ID appears in the address bar.

    I tryed also the get and display the page from that URL address using cURL, but of course not works.

    Is there any way to login the users in my web site using Facebook, without revealing the developer ID?

    Or, it doesn't matter if someone uses your Facebook APP ID?

  4. 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 notification, this tool generally isn't something you need to worry about."

     

    Google says its engineers have been beta testing the new feature for weeks now, although there have been rumors of the impending new addition for months. The tool is now live, and you can find it by logging into your Webmaster Tools account and navigating to https://www.google.com/webmasters/tools/disavow-links-main

  5. Hi,

    Does changing the host too frequently affect the ranking of the web site in search engines.

    For example, if i change the hosting company 3 times in 2 months, does it affect the Page Rank? Because it is changing the server location, and also, each time the website cannot be accessed a few hours.

  6. 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 location, or it matters in Page Rank?

  7. If it is useful for someone, I found this example on the net:

    # Port-based virtual hosting: every php install uses a vhost on a different port
    Listen 8447
    Listen 8423
    
    ### BASE virtualhost
    ### set up the main php version we're using
    <VirtualHost *:80>
        LoadModule php5_module "E:/php5/php5apache2_2.dll"
        PHPIniDir "E:/php5"
        php_value extension_dir "E:/php5/ext/"
        AddType application/x-httpd-php .php
        AddType application/x-httpd-php-source .phps
    </VirtualHost>
    
    <VirtualHost *:8447>
        # it would be handy to use php_value directives, but CGI versions of php will not grok them,
        # so we rely on different php.ini
        SetEnv PHPRC "E:/php4/"
        ScriptAlias /php447/ "E:/php4/"
        Action application/x-httpd-php447 "/php447/php.exe"
        AddType application/x-httpd-php447 .php .inc
        # apache 2.2 denies access to the php cgi executable, unless it is explicitly granted
        <Directory "E:/php4/">
          <Files "php.exe">
            Allow from all
          </Files>
        </Directory>
    </VirtualHost>
    
    <VirtualHost *:8423>
        SetEnv PHPRC "E:/php423/"
        ScriptAlias /php423/ "E:/php423/"
        Action application/x-httpd-php423 "/php423/php.exe"
        AddType application/x-httpd-php423 .php .inc
        <Directory "E:/php423/">
          <Files "php.exe">
            Allow from all
          </Files>
        </Directory>
    </VirtualHost>

  8. Hi

    Try replace the line:

    include("admin/includes/db.php");

    With this code (edit with your connecton data):

    $conn = mysql_connect( "server_address", "username", "password")
        or die("Unable to connect to MySQL");
    
    mysql_select_db("database_name");
    if (mysql_error()) {
        echo "<br />". mysql_errno(). " : ". mysql_error();
    }

    - Or, add it in "db.php".

×
×
  • 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.