None Of The Links Work With Furl Enabled, what did I miss? |
This topic is about None Of The Links Work With Furl Enabled, the author, airsoftcore, wrote about: I believe I have installed everything correctly as I have now gone through the process twice. I had a previous version of minerva on my board, I believe it was 0.5 and now I have the 1.0 beta version ... To read more just scroll down
Hey all!
Please report all bugs and errors to our iptracker it will be much more organised!
![]() ![]() |
None Of The Links Work With Furl Enabled, what did I miss? |
Aug 25 2007, 05:19 PM
Post
#1
|
|
|
Member ![]() ![]() Group: Members Posts: 16 Joined: 27-June 07 Member No.: 2 |
I believe I have installed everything correctly as I have now gone through the process twice. I had a previous version of minerva on my board, I believe it was 0.5 and now I have the 1.0 beta version installed. The installer seemed to go fine, I replaced all of the files chmodded properly, etc. The links appear to look the way they should but I get a missing page error for every link I click on my forums now. Any ideas on what I could have slipped up on?
|
|
|
|
Aug 25 2007, 05:47 PM
Post
#2
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
check that .htaccess has been created. if not create a blank .htaccess in your forum root and chmod to 777 or 755
-------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Aug 25 2007, 07:48 PM
Post
#3
|
|
|
Member ![]() ![]() Group: Members Posts: 16 Joined: 27-June 07 Member No.: 2 |
That was the problem but now I am faced with a new problem... my header, and javascript navigation bar don't show up on any page besides the index, and my forum takes a very long time to load. Any ideas on what could improve on this?
|
|
|
|
Aug 25 2007, 10:21 PM
Post
#4
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
on step4 it tells you do something with the settings do them
-------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Aug 25 2007, 10:49 PM
Post
#5
|
|
|
Member ![]() ![]() Group: Members Posts: 16 Joined: 27-June 07 Member No.: 2 |
I already did them.
All the things not coming up are set up to be relative so header.gif instead of http://www.mysite.com/header.gif but I need them to be that way for some other parts of my website so I can not change that. |
|
|
|
Aug 26 2007, 08:20 AM
Post
#6
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
instead of using / you could use different stuff like:
in seo_settings.php CODE <?php
/** * @package Minerva SEO (minervaseo.com) * @author Bhavesh Ramburn, icelabz.net <nitr021@icelabz.net> * @copyright 2007 icelabz.net, this is not an opensource software. Please see license section on minervaseo.com * */ /** * topic rule */ $topic_rule = array( 'content_(.*?)_([0-9]+)_(.*?)/$', 'content_$forum_title_$topic_id_$topic_title/', 'showtopic=$matches[2]' ); /** * topic multi page rule */ $topic_multipage_rule = array( 'content-page_(.*?)_(.*?)_page_(.*?)/$', 'content-page_$topic_id_$topic_title_page_$topic_st/', 'showtopic=$matches[1]&st=$matches[3]' ); /** * forum page rule */ $forum_rule = array( 'category_([0-9]+)_(.*?)/$', 'category_$forum_id_$forum_title/', 'showforum=$matches[1]' ); /** * forum multi page rule */ $forum_multipage_rule = array( 'category-page_(.*?)_(.*?)_page_(.*?)/$', 'category-page_$forum_id_$forum_title_page_$forum_st/', 'showforum=$matches[1]&st=$matches[3]' ); /** * user profile rules */ $showuser_rule = array( 'user_([0-9]+)_(.*?)/$', 'user_$user_id_$user_title/', 'showuser=$matches[1]' ); $topic_view_getnewpost = array( 'content_(.*?)_([0-9]+)_(.*?)_getnewpost/$', 'content_$forum_title_$topic_id_$topic_title_getnewpost/', 'showtopic=$matches[2]&view=getnewpost' ); $topic_view_getlastpost = array( 'content_(.*?)_([0-9]+)_(.*?)_getlastpost/$', 'content_$forum_title_$topic_id_$topic_title_getlastpost/', 'showtopic=$matches[2]&view=getlastpost' ); ?> -------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Aug 26 2007, 07:47 PM
Post
#7
|
|
|
Member ![]() ![]() Group: Members Posts: 16 Joined: 27-June 07 Member No.: 2 |
How would I do it to call upon files in the forum root?
|
|
|
|
Aug 26 2007, 08:50 PM
Post
#8
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
you mean as images? just type the full url to the image rather than leaving it just with the file name.
like: http://xxx.com/image.gif rather than image.gif -------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Aug 26 2007, 10:33 PM
Post
#9
|
|
|
Member ![]() ![]() Group: Members Posts: 16 Joined: 27-June 07 Member No.: 2 |
I can't do that though. I leave them to be relative because I have the forum at more than one location, and the different locations have different images.
|
|
|
|
Aug 27 2007, 07:02 AM
Post
#10
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
use the above seo_Settings.php then you wouldn't need the image settings enabled.
-------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
Aug 27 2007, 08:46 PM
Post
#11
|
|
|
Member ![]() ![]() Group: Members Posts: 16 Joined: 27-June 07 Member No.: 2 |
When I used that seo_settings.php the links only would refresh the forum index
|
|
|
|
Aug 27 2007, 10:05 PM
Post
#12
|
|
![]() Administrator ![]() ![]() ![]() Group: Root Admin Posts: 905 Joined: 25-June 07 From: London Member No.: 1 |
very weird bug. i may need to improve the furls to include both flat file and folder file
-------------------- Remember to please use the bug tracker for all bugs and errors, it is more organised that way.
Support in french and english If I reply in French please excuse my spelling & grammar, i haven't written in french for a long time. DO NOT PM ME TO ASK ME TO GO ON MSN, post the query on the support forums! |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Sitemap | SEO by MinervaSEO © Icelabz.net | Time is now: 8th January 2009 - 07:22 PM |