usmile0926
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: error: file exceeds the maximum upload size for this siteHello Kat,
Actually, I tried another browser, chrome, and it worked. I was using firefox. Maybe I just needed to close firefox after I cleared the cache? I have not checked if that would work.Have you tried everything I listed in my original post? like, writing to the theme functions file, the php.ini file, or .htaccess? Have you tried the plugin, ‘Increase Upload Max Filesize’? Also, have you contacted your hosting service? Maybe they would have some ideas about what’s wrong. Sometimes, with some shared hosting service, they don’t let you increase the max.
I couldn’t go your route, bc I have to hand over the uploading to my clients, and I don’t think they want to (or know how to) upload via ssh. But thanks so much for posting and sharing your experience. I appreciate it. If you need more details on the steps that I took, let me know.
Forum: Plugins
In reply to: [NextGEN Download Gallery] [Not a valid template]Oh, sorry. I just try it with a gallery, and it works. Thanks.
Sue
Forum: Plugins
In reply to: [NextGEN Download Gallery] [Not a valid template]Oh, btw, I’m using NextGen Gallery version 2.0.66.29.
That did it! It’s working now. Thanks so much!
Forum: Fixing WordPress
In reply to: How to display posts in a table?Thanks a million!
Now I got it working!
Yay!
You have a great day!Forum: Fixing WordPress
In reply to: How to display posts in a table?Hello,
Thanks for responding so quickly.
I thought that’s what I did. Here is my code.<?php
/*
Template Name: PostTable Template
*/
?><table>
<tr>
<th>Title</th>
<th>Created Date</th>
<th>Author</th>
<th>Hits</th>
</tr>
<?php while ( have_posts() ) : the_post(); ?>
<tr>
<td>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></td>
<td><?php the_time(‘F jS, Y’); ?></td>
<td><?php the_author_posts_link(); ?></td>
<td><?php get_HitsMechanic();?></td>
</tr>
<?php endwhile; ?>
</table>Isn’t this enough?
karkei,
I had the same problem as yours. It’s a very easy fix. Go to the file, cool-author-box.php. And you’ll see this code from line 48 to line 50:<div>
‘;
Just change it to this:
<div>’
;
That’s it. Now, when you go to activate the plug-in, it should work. It worked for me.