History of Troubleshooting

Differences from version 4 to 9



@@ -1,7 +1,7 @@

 {maketoc}
 
-!!Hey, No Body's Perfect
-Bitweaver is constantly improving and occassionally we all run into one problem or another. Sometimes the problems you encounter can be caused by a typo or error in the code and other times it may very well be the way your webhosting environment is configured. To help you narrow the list of possible causes down here are some recommended steps that will help you to determine and possibly resolve any problems you are encountering while using Bitweaver:
+!!Hey, Nobody Is Perfect
+Bitweaver is constantly improving and occasionally we all run into one problem or another. Sometimes the problems you encounter can be caused by a typo or error in the code and other times it may very well be the way your webhosting environment is configured. To help you narrow the list of possible causes down here are some recommended steps that will help you to determine and possibly resolve any problems you are encountering while using Bitweaver:
 
 !!On Screen Errors
 If you have no idea what it means when your bitweaver installation produces an error message on your website you can usually ask for help and get an answer from a community volunteer. Copy and past the error in the support forum. Be patient, we all do what we can.

@@ -16,7 +16,40 @@

 Unknown at this time.
 
 !!RSS
-Using bitweaver in a subdirectory may result in RSS feed topic link errors. We are working on a solution.
+Using bitweaver in a subdirectory may result in RSS feed topic link errors. We are working on a solution. And what do you know, a few hours later we have a solution. Edit the following 3 files.
+
+rss_inc.php line 29 comment out .BIT_ROOT_URL. don't miss the concatination or it won't help (:wink:)
+{code}
+$rss->syndicationURL = 'http://'.$_SERVER['HTTP_HOST']/*.BIT_ROOT_URL.'/'*/.$_SERVER['PHP_SELF'];
+{/code}
+
+articles_rss.php line 44
+{code}
+//old
+/*$item->link = BIT_BASE_URI.$articles->getDisplayUrl( $feed['article_id'] );*/
+
+// subdirectory fix
+$item->link = 'http://'.$_SERVER['HTTP_HOST'].$articles->getDisplayUrl( $feed['article_id'] );
+{/code}
+
+blogs_rss.php line 52 or 53
+{code}
+//old
+/*$item->link = BIT_BASE_URI.$blogPost->getDisplayUrl( $feed['content_id'] );*/
+// subdirectory fix
+$item->link = 'http://'.$_SERVER['HTTP_HOST'].$blogPost->getDisplayUrl( $feed['content_id'] );
+{/code}
+
+wiki_rss.php line 40
+{code}
+//old
+/*$item->link = BIT_BASE_URI.$wiki->getDisplayUrl( $feed['title'] );*/
+// subdirectory fix
+$item->link = 'http://'.$_SERVER['HTTP_HOST'].$wiki->getDisplayUrl( $feed['title'] );
+{/code}
+
+That fixed everything, hopefully in the next release it will be a config option. Editing multiple files, while fun the first time, gets difficult to keep track of come upgrade time.
+
 
 !!Custom Environment Configurations.
 
Page History
Date/CommentUserIPVersion
02 May 2008 (11:53 UTC)
fix spelling
Will69.203.72.1619
Current • Source
SV1206.105.169.1608
View • Compare • Difference • Source
SV1206.105.169.1607
View • Compare • Difference • Source
SV1206.105.169.1606
View • Compare • Difference • Source
SV1206.105.169.1605
View • Compare • Difference • Source
SV1206.105.169.1604
View • Compare • Difference • Source
SV1206.105.169.1603
View • Compare • Difference • Source
spiderr66.93.240.922
View • Compare • Difference • Source