By sjames on
drupal-5.2
http://www.shreemaa.org
The home page has 2 additional pages(see bottom) which give an access denied.
Can anyone let me know how I can get the additional 2 pages to be accessed by viewers?
thanks,
Susan
drupal-5.2
http://www.shreemaa.org
The home page has 2 additional pages(see bottom) which give an access denied.
Can anyone let me know how I can get the additional 2 pages to be accessed by viewers?
thanks,
Susan
Comments
Something is wrong with your pager links
Something is wrong with your pager links, they are of the form: http://www.shreemaa.org/drupal/node/?page=1 but should be something like http://www.shreemaa.org/drupal/node?page=1 (with clean URLs) or http://www.shreemaa.org/drupal/index.php?q=node&page=1 (without clean URLs)
How is the page constructed?
I have clean URLS turned on...
thanks for the quick response.
the pages are blog entries.
no fancy html is there.
any ideas to get them viewable?
How do you have the front page defined
How do you have the front page defined? Other paths work just fine so there is something odd going on as just http://www.shreemaa.org/drupal/node does not work which makes me wonder if you have aliased something to 'node'.
front page...
I haven't made any aliases so far. Drupal-5.2 has a component for 'URL ALIASES' and makes it's own.
where would I check for the settings on the front page definition? the front page is made up of blog entries.
should I 'rebuild permissions' in Post settings?
thanks for the quick help and response.
Front page setting
For the front page setting look under "Administer" > "Site configuration" > "Site information", look down for "Default front page", it is probably set to the default value of 'node'.
Also check under "Administer" > "Site bulding" > "URL aliases" and make sure you do not have 'node' as an alias.
It may also be that you have made a directory under your sites root called 'node' that is causing problems.
node directory...
that indeed was the problem.
I have a node directory inside the drupal tree which was confusing the home page.
However, I put that node directory there to hold the sample_100kbit.mov for my playlists at http://www.shreemaa.org/playlists
none of the playlists will play unless they all find the sample_100kbit.mov inside a directory named 'node'. It's some Quicktime thing.
a full playlist path URL is http://www.shreemaa.org/drupal/node/number_of_node
my drupal tree and document_root is http://www.shreemaa.org/drupal
so a Playlist URL with http://www.shreemaa.org/drupal/node/node_number requires to find the sample_100kbit.mov file in the $DRUPAL_HOME/node/ directory.
my playlist code(<> removed) for one sample playlist is:
============
object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="10" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" param name="src" value="sample_100kbit.mov"
param name="qtsrc" value="rtsp://65.98.35.106:554/mahamantra"
param name="autoplay" value="true"
param name="loop" value="false"
param name="controller" value="true"
embed src="sample_100kbit.mov" qtsrc="rtsp://65.98.35.106:554/mahamantra" width="240" height="10" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/" /embed
/object
============
but, this opens a new problem. you've solved the first one. and, thank you!
Something to try
Try changing
embed src="/movies/sample_100kbit.mov", make a 'movies' directory under you sites root directory and place the movie in the new directory.movies directory...
yep, I tried making a different directory for the sample_100kbit.mov, changed the path in the code, and Quicktime wants to see it in the document_root: $DRUPAL_HOME.
it didn't work.