rfp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Specified file failed upload test 2.5Hi jackfussell,
Might be a privileges issue.
the .htaccess file must be in the site root folder.
Also, have you chmod your upload directory to something like 755?
If still no success, can you upload any other kind of file, or just photos?
Good luck…
Forum: Fixing WordPress
In reply to: dashboard isn’t working ?Hi ameo,
The first thing that comes to mind is a PHP error.
Try looking at error log to see if it helps. If any message suspicous, post it here!
Forum: Plugins
In reply to: Postie – error messageForum: Fixing WordPress
In reply to: Unable to navigate to 3rd pageI had already! π
But I think our situation is not quite the same. I want to show 8 posts per page in every page BUT the home page (5 posts).
But thanks anyway!
Forum: Fixing WordPress
In reply to: Unable to navigate to 3rd pageHi dream size,
I just removed the nav links on the index.php.
Now, when you go to http://blog, wordpress gives you the index page, with my manually added link to http://blog/headlines/page/2.
the “headlines” is a template, exactly the same as index, but with the normal nav links, to http://blog/headlines/page/3, or http://blog.
Any luck?
Forum: Fixing WordPress
In reply to: WordPress will not generate a “Next Page”Hi, please check this: http://wordpress.org/support/topic/167305
HTH
Forum: Fixing WordPress
In reply to: ‘Previous entries’ gives 404Hi,
while benjette don’t post the magic recipe, I kinda solve this problem.
Please check http://wordpress.org/support/topic/167305.
HTH
Forum: Fixing WordPress
In reply to: next/prev entries link won’t go passed page 3Hi,
I kinda solved this issue. Check the the link hakre posted.
HTH
Forum: Fixing WordPress
In reply to: Unable to navigate to 3rd pageHi!
I previously closed this thread, but it was still failling. Not on page 3 but on page 5………..
Anyway, I solved this for good now.
I created a new template, exactly like the theme’s index.php and I call it headlines (the slug). The I removed the next and previous_posts_links from the index and hard-coded:
a href="/headlines/page/2"From then on, all the navigation will happen from /headlines…
In the reading pane (from the options menu) I had tried to mark headlines as home_page, but it didn’t work, because only the first page was templated right, the next ones were templated by the index template.
Thanks for the help. I will link the other threat to this one.
Forum: Fixing WordPress
In reply to: Unable to navigate to 3rd pageit seems that this is working now…
The Options > Reading > Blog Pages was intencionaly set to 8.
As I was asking for 5 posts per page, for some reason (anyone care to explain?) it was cutting the navigation to the 2nd page only.
Since I have 35 posts in this category, I changed it to 50 and it is working fine (for now, anyway…)
Let’s see in some weeks for now…
Forum: Fixing WordPress
In reply to: adding a user to add posts but nothing else?hi eddyj
in the admin panel, on the users tab, you can add users. There are 5 default profiles.
Check out this page for more help:
http://codex.wordpress.org/Roles_and_Capabilities
HTH,
rfpForum: Fixing WordPress
In reply to: Unable to navigate to 3rd pagehello hakre,
nop… it’s a typo on the post…
there’s no comma in the link (on the page/2 link to page 3).
Forum: Fixing WordPress
In reply to: WordPress will not generate a “Next Page”i am having a same kind of problem. In my index, i only display posts from a specific category, 5 at a time:
$page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=3&showposts=5&paged=$page");I’m able to navigate to the second page (<blog_name>/page/2), but not further. From <blog_name>/page/3 I get a 404 error.
Any one have ideas?