Forum Replies Created

Viewing 15 replies - 121 through 135 (of 147 total)
  • WOW this kick Opera and Mozilla’s asses. This is the only other program that doesn’t stuff up when viewing my webpage!!!
    I recommend it to anyone.
    Marzar00

    Forum: Fixing WordPress
    In reply to: Skinning site

    Its my opinion that WP should incorporate stylesheet switching. It would be a nice and easy feature to implement.
    Also does anyone know of any good webhost? I been developing my weblog on my home computer, and now I’m ready to go public. Any recommendations, just email me at wokdrgon @ yahoo dot com
    Thanks

    @mrwok, I have a really good reliable host. They charge 1 pound a month for 30Mb Web Space and 750Mb Bandwidth. The website address is:https://www.finditmax.com
    Regards
    Marzar00

    Thread Starter marzar00

    (@marzar00)

    Cool thanks,
    Regards
    Marzar00

    Fair enough than NM.
    Marzar00

    @nm, By the way I even found your post to be rather rude. Sure some of those things I agree with but just because they may be true doesn’t give you or anyone the right to say them. After reading that post I feel that by what you were saying was unconsciously trying to put down the new users of WP. I am all for having pride in one persons self but no to the extent that you would be choking in it.
    @giles, Sorry I didn’t know what you were asking for, I now do. And thank you for that site.
    Regards
    Marzar00

    G’Day mate, you forgot downunder the greatest nation in the world, Australia.
    Regards
    Marzar00

    Yeah its very impressive!!!
    Regards
    Marzar00

    Here is the one in the table:
    Start code:—————
    <?php /* Don’t remove these lines, they call the b2 function files ! */<br>
    $blog = 1;<br>
    require_once(‘blog.header.php’);<br>
    require_once($abspath.’wp-links/links.php’);<br>
    // not on by default: require_once($abspath.’wp-links/links.weblogs.com.php’);<br>
    ?><br>
    <html><br>
    <head><br>
    <title><?php single_post_title(‘ – ‘) ?><?php single_cat_title(‘
    – ‘) ?><?php single_month_title(‘ – ‘) ?></title><br>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br>
    <link rel="alternate" type="text/xml" title="RDF"
    href="<?php bloginfo(‘rdf_url’); ?>" /><br>
    <link rel="alternate" type="text/xml" title="RSS"
    href="<?php bloginfo(‘rss2_url’); ?>" /><br>
    <link rel="pingback" href="<?php bloginfo(‘pingback_url’);
    ?>" /><br>
    <?php get_archives(‘monthly’, ”, ‘link’); ?><br>
    <?php // comments_popup_script(); // off by default ?><br>
    </head>
    <body><br>
    <div id="post-<?php the_ID(); ?>"><br>
    <?php if ($posts) { foreach ($posts as $post) { start_b2(); ?><br>
    <table width="90%" border="0" cellspacing="0"
    cellpadding="0"><br>
    <tr> <br>
    <td> <br>
    <?php the_date(”,”,”); ?><br>
    </td><br>
    </tr><br>
    <tr> <br>
    <td>" rel="bookmark"
    title="Permanent Link: <?php the_title(); ?>"> <br>
    <?php the_title(); ?><br>
    &nbsp;</td><br>
    </tr><br>
    <tr> <br>
    <td><span>"
    title="Category: <?php the_category() ?>">[ <br>
    <?php the_category() ?><br>
    ]
    — <br>
    <?php the_author() ?><br>
    </span>&nbsp;</td><br>
    </tr><br>
    <tr> <br>
    <td> <br>
    <?php the_content(); ?><br>
    </td><br>
    </tr><br>
    <tr><br>
    <td> <br>
    <?php link_pages(‘
    Pages: ‘, ‘
    ‘, ‘number’); ?><br>
    <?php comments_popup_link(‘Comments (0)’, ‘Comments (1)’, ‘Comments (%)’);
    ?><br>
    </td><br>
    </tr><br>
    </table>
    <br>
    <div align="center"><br> <!–<br>
    <?php trackback_rdf(); ?><br>
    –><br>
    <?php include($abspath . ‘b2comments.php’); ?><br>
    <?php } } // end foreach, end if any posts ?><br>
    <br></div><br>
    <table width="90%" border="0" cellspacing="0"
    cellpadding="0"><br>
    <tr><br>
    <td><br>
    Page Generation took: <?php timer_stop(1); ?><br>
    </td><br>
    </tr><br>
    </table><br>
    </body><br>
    </html>
    End Code:———————————
    If you need any help just reply or contact me at [email protected]
    Regards
    Marzar00

    Here is a basic page:
    Start Page ———————————–
    <?php /* Don’t remove these lines, they call the b2 function files ! */
    $blog = 1;
    require_once(‘blog.header.php’);
    require_once($abspath.’wp-links/links.php’);
    // not on by default: require_once($abspath.’wp-links/links.weblogs.com.php’);
    ?>
    <html>
    <head>
    <title><?php single_post_title(‘ – ‘) ?><?php single_cat_title(‘ – ‘) ?><?php single_month_title(‘ – ‘) ?></title>
    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
    <link rel=”alternate” type=”text/xml” title=”RDF” href=”<?php bloginfo(‘rdf_url’); ?>” />
    <link rel=”alternate” type=”text/xml” title=”RSS” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php get_archives(‘monthly’, ”, ‘link’); ?>
    <?php // comments_popup_script(); // off by default ?>
    </head>
    <body>
    <?php if ($posts) { foreach ($posts as $post) { start_b2(); ?><?php the_date(”,”,”); ?>
    <div id=”post-<?php the_ID(); ?>”>
    ” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?>
    <span>” title=”Category: <?php the_category() ?>”>[<?php the_category() ?>] — <?php the_author() ?></span><?php the_content(); ?><?php link_pages(‘
    Pages: ‘, ‘
    ‘, ‘number’); ?>
    <?php comments_popup_link(‘Comments (0)’, ‘Comments (1)’, ‘Comments (%)’); ?><div align=”center”><br> <!–
    <?php trackback_rdf(); ?>
    –>
    <?php include($abspath . ‘b2comments.php’); ?>
    <?php } } // end foreach, end if any posts ?>
    <br></div><?php timer_stop(1); ?>
    </body>
    </html>
    End Page ————————
    That is a really hard way if doing it but if you keep everything in the right order and read the tags you should be ok. I will post a better copy of the script soon.
    Regards
    Marzar00

    I will get them for you in just a sec

    Thread Starter marzar00

    (@marzar00)

    Kool thats great. Well when I get my new computer networked up to this one I will download it as this one is running dangersously out of ram. And I can’t be bothered getting more for it.
    Regards
    Marzar00

    Thread Starter marzar00

    (@marzar00)

    Well thanks so much about the comments. How do you think I could fix the header?
    Regards
    Marzar00

    Thread Starter marzar00

    (@marzar00)

    Oh yep it added the ./ in the link so here it is https://www.marzar00.finditmax.com and to enter https://www.marzar00.finditmax.com/index.php

    Hey now … the bottom of the front page says, “WORDPRESS 0.73”. ??
    GFM <– notes that the forum says .71 ??

    When ever a new version of software is coming out the developers always install it before they release it. Its basicly so that when released the general public can already have seen and used the software (sometimes).
    Hope that helps gfmorris.
    Regards
    MWP
    c o m i n g | j a n 2 0 0 4

    Forum: Plugins
    In reply to: You searched for…
    marzar00

    (@marzar00)

    What would be really good is that if the result of the search returned no results instead of the blank boring page with no content a message saying _____ could not be found. And then the search feild again so you can research.
    MWP
    Coming Jan 2004

Viewing 15 replies - 121 through 135 (of 147 total)