wmatos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't access the wp-admin areaI access this page: http://www.easyforyouservices.co.uk/wp-login.php but once I type the login details, it goes to http://www.easyforyouservices.co.uk/wp-admin and shows the same error message.
Any more ideas?
Forum: Fixing WordPress
In reply to: Can't access the wp-admin areaHi Esmi, Thanks for your reply.
I don’t there is anything wrong with the hosting as the website still is live. I just can’t access the admin area. Again, I can’t deactivate the plugins or switch to the default theme as I can’t access the admin area. However, if you go to the main address: http://www.easyforyouservices.co.uk the site is live.
Any suggestions?
Thanks again for your help.
Forum: Plugins
In reply to: Using Javascript with a custom pluginAnyone, any luck?
Forum: Fixing WordPress
In reply to: Can’t upload images WP 2.9.2I’ve installed a second blog in my domain (using a subdomain and separate database) and in this second blog, the upload function does work. How weird is that? I don’t know what else to do… getting a bit desperate now. Any more suggestions? Anyone?
Thanks
Forum: Fixing WordPress
In reply to: Can’t upload images WP 2.9.2Well, I’ve tried changing it’s name, deleting but nothing. The problem still persists… Any more suggestions? And thanks for your help. Much appreciated.
Forum: Fixing WordPress
In reply to: Can’t upload images WP 2.9.2Any ideas of what I could do?
Forum: Fixing WordPress
In reply to: Can’t upload images WP 2.9.2Currently I still have my drupal site working. I’ve installed WP in a subdirectory and created a database for it. So yes, I still have the .htaccess file. Why? Do I need to do something about it?
I’ve found the solution:
<!-- start the loop excluding cat 16--> <?php query_posts($query_string . '&cat=-16'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> <?php the_excerpt('Read the rest of this entry »'); ?> <!-- end the loop --> <?php endwhile; else: ?> <?php endif; ?>Where
‘&cat=-16’
is the category I Don’t want to show. If you want display a specific category, all you need to do is remove “-” and replace 16 for the category you want.