Jump to content

WebGeek182

Members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by WebGeek182

  1. Proposals can be hard at first. Over time, it will get easier. I would say make your best estimate and then multiply it by 3. :) Seriously. When you're new you tend to underestimate the amount of time required. As you go, log your time for each project and you'll be able to estimate it a lot more accurately before too long.

  2. In my opinion, there are two main issues to bear in mind when Search Engine Optimizing AJAX:

     

    • Problem #1: Lack of content and navigational links on initial page load. This is a problem because the initial HTML page load is all the search engine spiders will see. Search engine spiders do not read JavaScript. Period.
       
    • Problem #2: Lack of unique URL's for search engines to index. AJAX makes it easy to serve all your content on one page, just like Flash. Unfortunately, search engines need unique URL's.

     

    However, each of these problems has a solution.  ;D

     

    • Solution to Prob #1: The initial load of the page definitely needs to contain valid HTML content and navigation.
    • Solution to Prob #2: You need to think like a search engine spider when creating the structure of an AJAX site. Make sure that they can get to a unique page with valid, quality content. You can still have dynamic pages, but you may want to consider using URL rewrites to create unique Search Engine Friendly URL's.

     

    If you're interested, here's more info on AJAX SEO.

  3. Very easy my friend. Simple add this to the beginning of your .htaccess:

     

    RewriteEngine On
    RewriteCond %{HTTP_HOST} !^www\.example\.com
    RewriteRule ^/(.*) http://www.example.com/$1 [R=301,L]
    

     

    If you need more help, please let me know. Also you may want to check out this .htaccess reference.

  4. Depends on what method you are using from paypal.

    If you are just using their cart buttons then you can just have them make the buttons from their acct.

     

    If you are using web payments pro its a little more involved.

     

    Here's more info from PayPal on Website Payments Standard: https://www.paypal.com/cgi-bin/webscr?cmd=_wp-standard-overview-outside

     

    and Website Payments Pro: https://www.paypal.com/cgi-bin/webscr?cmd=_wp-pro-overview-outside

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