ps2cho
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site is slow and gives me 500 Errors….I have a lot of images, but they are all 1024×768 and no bigger than like 400kb each…That cannot be the issue.
I increased my memory available using that php code and installed a WP-Cache plugin.
I don’t notice any difference and am still getting the 500 errors.
I can’t seem to login to my phpmyadmin to repair the DB possibly. No idea why I’ll have to call godaddy in the AM.
Forum: Fixing WordPress
In reply to: Stats not working?It is a self hosted WP blog. I was using the wordpress.com stats plugin. It was working fine up until 4 days ago…
I host it at godaddy…. w124-zone.com
Forum: Fixing WordPress
In reply to: Stats not working?bump?
Forum: Fixing WordPress
In reply to: Stats not working?WordPress.com Stats
I installed a “whos online” plugin earlier today and it shows I have had tons of views today, yet WordPress.com stats shows nothing.
Forum: Themes and Templates
In reply to: How to have the theme extend whole resolution?bump nobody?
Forum: Themes and Templates
In reply to: How to have the theme extend whole resolution?bump
Forum: Fixing WordPress
In reply to: Making a page that lists all ‘posts topics’ ?Oh damn I managed to find a perfect plugin that does the trick!
http://www.skepo.info/web-development/wordpress/simple-posts-listFor future search reference!
Forum: Fixing WordPress
In reply to: Making a page that lists all ‘posts topics’ ?Well that got me half the page to display…but no links or anything else. I’ll leave it as it is so you can see what I mean:
http://ps2cho.net/vs:
Thanks for the help though.
Forum: Fixing WordPress
In reply to: Making a page that lists all ‘posts topics’ ?t-p:
The link is invalid:
Sorry, an error has occurred. Reason: That is an invalid ID, or the post has expired.
Forum: Fixing WordPress
In reply to: Making a page that lists all ‘posts topics’ ?I managed to find a ‘template’ which does exactly what i want…
<?php /* Template Name: All posts */ ?> <?php $debut = 0; //The first article to be displayed ?> <?php while(have_posts()) : the_post(); ?> <h2><?php the_title(); ?></h2> <ul> <?php $myposts = get_posts('numberposts=-1&offset=$debut'); foreach($myposts as $post) : ?> <li><?php the_time('d/m/y') ?>: <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> <?php endwhile; ?>—
But it does not integrate with the page. It just links to a blank page. How do I intergrate it into my site with the layout etc..?
Forum: Fixing WordPress
In reply to: Making a page that lists all ‘posts topics’ ?That is exactly what I am trying to do, but there is no code on that page for it π
I just want a list of all my ‘posts’
I am not very good at any sort of coding at all.
Forum: Themes and Templates
In reply to: The sidebar doesnt change right…bump?