jebaloo
Forum Replies Created
-
I tried changing permissions to 777 for all files associated with the plug-in, but no change.
Yes, thanks.
I got the hosting company to revert my wordpress database to a previously backed up version – something went wrong, no idea what!
But it is indeed fine now.
Perhaps when you loaded up the page it coincided with the 10 minutes or so that I was re-deleting, and re-uploading the new version of the site again… I’ve done this a few times now, just to make sure there are no corrupt files.
Could you check again to see if this error message still appears, I don’t know what you did to get this message.
I didn’t change the location of the files on my server, and the address is correct. Like I said, it happened over night – it worked one day and not the next, nothing has been changed by me in between these times – it’s very strange.
Could it be my server?
Hi, I’m still struggling with this problem.
I am wondering whether I should backup the files from my ftp, and install a blank version of 2.5 and start again?
I don’t know how to back-up the data base, would this be a problem?
I totally forgot to leave any links!
http://www.lacrossescotland.com
so, if I were to go to: http://lacrossescotland.com/wp/wp-login.php
this should work, but doesn’t show up, same with wp-admin.php
the files are definitely in the right place, and haven’t moved since last night when I was working on the site – it was working fine damn it! 😉
I’ve tried deleting any plugins from my site to see if that helps, but no luck.
Forum: Fixing WordPress
In reply to: Need to import 60,000 articles into wordpress. Help. Me.Perhaps exporting the file in a recognized format such as CSV, and then importing it through the inbuilt import feature in wordpress would work?
You may need to re-arrange the excel file a little though before hand.
Forum: Fixing WordPress
In reply to: How to keep one post at top?There was a plugin that I used to use that was called ‘Sticky’, it worked well for me! I no longer need sticky posts though, so I removed it.
Resolved.
<li id="Recent"> <h2>Recently Written</h2> <ul> <?php $temp_query = $wp_query; query_posts('showposts=10&cat=-88'); ?> <?php while (have_posts()) { the_post(); ?> <li><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to “<?php the_title(); ?>”"><?php the_title(); ?></a></li> <?php } $wp_query = $temp_query; ?> </ul> </li>Sorry for the previous posts’s scrambled code.
I’ve found out how to exclude just one category (code below), but still can’t work out how to only show one category of news entries:
<li id=”Recent”>
<h2>Recently Written</h2>-
<?php $temp_query = $wp_query; query_posts(‘showposts=10&cat=-88’); ?>
- ” rel=”bookmark” title=”Permanent Link to “<?php the_title(); ?>””><?php the_title(); ?>
<?php while (have_posts()) { the_post(); ?><?php } $wp_query = $temp_query; ?>
Any help on this would be awesome.
Forum: Installing WordPress
In reply to: 2.5 Upgrade, can login, but not access any admin pages.Foolish me, didn’t see en extra plugin – ‘sticky’, was deactivated, but evidently needed deleting, full stop.
Forum: Installing WordPress
In reply to: 2.5 Upgrade, can login, but not access any admin pages.Forum: Installing WordPress
In reply to: 2.5 Upgrade, can login, but not access any admin pages.I forgot to mention that I did manage to get to the login page once, and logged in, but again I ended up at the same ‘not found’ page.
Forum: Fixing WordPress
In reply to: Gap between postsA further question on this topic:
How do you divide posts with an image instead of a line?
(for example, a hand-drawn line).
Also, do you know how to you make each line vary according to the day of the week?
(for example each line says, ‘monday’, or ‘tuesday’ on it etc).