Jump to content

arriveonline

Member
  • Posts

    11
  • Joined

  • Last visited

Posts posted by arriveonline

  1. Guys,

    I just completed the how to build WordPress themes tutorial and i ended up with a homepage, blog page about us, a side bar footer amongst other things. My homepage has 2 pictures that were included in the tutorial...but my next challenges were not addressed in the video..

    1. i need get these files from local host to my hosting company..host-gator...prior to that i would like to change the look of the theme with Photoshop..so that the theme looks unique...any guidance that you can share would be helpful...

     

    2. After the above..how will i make this theme public for others to download once ready?

     

    any links you can share on any of these issues would be greatly appreciated..Thanks.

  2. "The code' is a bit generic, but if the video tells you to put it in the index file, then that's where it should go. If something isn't working, we need to see what you have.

     

    Ben's right, having some understanding of PHP is clearly helpful, but I have none and that didn't hinder me in following this tutorial and doing my own themes. I just had to be more careful copying the php code, as I wouldn't be able to catch any typos by just looking at my lines.

     

     

    Guys,

    I just completed the how to build WordPress themes tutorial and i ended up with a homepage, blog page about us, a side bar footer amongst other things. My homepage has 2 pictures that were included in the tutorial...but my next challenges were not addressed in the video..

    1. i need get these files from local host to my hosting company..host-gator...prior to that i would like to change the look of the theme with Photoshop..so that the theme looks unique...any guidance that you can share would be helpful...

     

    2. After the above..how will i make this theme public for others to download once ready?

     

    any links you can share on any of these issues would be greatly appreciated..Thanks.

  3. Yay,

    I figured it out...where it says get posts( plural) i had get post(singular) that was the issue.. I definitely do need to learn php but according to the tutor..it is not required to follow the tutorial successfully

    .I will keep on going...I am determined to learn building wp themes despite my lack of PHP knowledge... Thanks for everyone's response. Much appreciated.

  4. "The code' is a bit generic, but if the video tells you to put it in the index file, then that's where it should go. If something isn't working, we need to see what you have.

     

    Ben's right, having some understanding of PHP is clearly helpful, but I have none and that didn't hinder me in following this tutorial and doing my own themes. I just had to be more careful copying the php code, as I wouldn't be able to catch any typos by just looking at my lines.

  5. I tried following the tutorial for building a wordpress theme from scratch but i cannot see the post when i view it in localhost using mammp on a mac.

     

    In the video before the top level navigation...there are supposed to be boxes showing my post.. i have added the post in the admin backend of wordpress as instructed yet i do not see them..all i see is the header and tagline but no post...pls help...if u can...

     

    Here is everything i did step by step following the video so far... what i'm i missing?

     

    <!DOCTYPE html PUBIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html>

     

    <head>

    <link rel="alternate" type="application/rss+xml" title= <?php bloginfo('name');?> RSS Feed" href="<?php bloginfo('rss2_url');?>"/>

    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>"type="text/css"/>

    <?php wp_head(); ?>

    </head>

    <body>

    <div class="canvas">

    <div class="header">

    <h1><?php bloginfo('name');?></h1>

    <h2> <?php bloginfo('description'); ?></h2>

    </div>

    <div class="content">

    <?php if ( have_post() ) : ?>

    <?php while ( have_post()) : the_post(); ?>

    <div class="post">

    <h1>

    <a href="<?php the_permalink(); ?>">

    <?php the_title();?>

    </a>

    </h1>

    <h2><?php the_author();?></h2>

    <p>

    <?php the_content('Read more...');?>

    </p>

    </div>

    <?php endwhile;?>

    <?php

    else:

    ?>

    <h2> Not Found</h2>

    <p>

    sorry I can't find what you're looking for.

    </p>

    <?php

    endif;

    ?>

    </div>

    </div>

    </body>

    </html>

  6. You must create your database via through your cpanel of your host account.

     

    There are typically 4 things you need to edit within the wp-config.php file that has to match the database.

     

    You enter your database name, database username, database password and possibly the database host setting. You should be able to get all these info from the database you created earlier.

     

    The area of the wp-config.php file should look like this:

     

    // ** MySQL settings - You can get this info from your web host ** //
    /** The name of the database for WordPress */
    define('DB_NAME', 'database_name_here');
    
    /** MySQL database username */
    define('DB_USER', 'username_here');
    
    /** MySQL database password */
    define('DB_PASSWORD', 'password_here');
    
    /** MySQL hostname */
    define('DB_HOST', 'localhost');
    

     

    The instructions above is based on the fact that you have Wordpress files uploaded to your host (hostgator), created a database and applied the database credentials to your wp-config.php file.

     

    If you are still having problems, send us a Private Message and provide the code from your wp-config.php file and a screen capture of your hostgator database credentials.

  7. This is error that i get when i try to visit the url of the site..

     

    according to lessson 6 i need to get past this to create a database via my cpanel (hostgator)

     

    This has not been a great buying experience for me thus far...can anyone help...is there any support available?

     

     

    Index of /

     

    cgi-bin/

    wordpress/

    Apache mod_fcgid/2.3.6 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.delawarebarbershops.com Port 80

  8. After following the dreamweaver and wordpress tutorial like 5 times with 5 different domain names ...

     

    I keep getting errors saying this

     

    Error establishing a database connection

     

    Has anyone done this successfully without errors? can anyone help?

     

    Has anything changed since the video was made that buyers need to be aware of?

     

    i am trying the tutorial with the latest version of wordpress

     

    i went through all steps successfully..and started getting errors on chapter 6/videos

×
×
  • Create New...