Unauthorized user able to parse user.js and look at user profile

While looking through my dbLog I noticed that in spite of my site being configured to show content only to authorized users someone had been able to parse user.js and had been able to see my own user profile. Is this something I should be worried about, and if so, do you know anything I could do about it?

I've noticed that someone has been trying to parse strange URL:s through my site in some way (I'm not very skilled at php/js etc so I'm not sure what has been going on) but with no discernible result so far (except for URLs showing up in my dblog).

Apache wizards - Explanation of RewriteRules

I hope this is the right forum for this question.

The following is my .htaccess that resides in the web root. Drupal core resides in a directory, "drupal-6.1". I'm in the process of attempting to create RewriteRules for a sub-domain.

# accounting for rewriting sub-directory 'drupal-6.1' to be root regarding non wwww use
# http://drupal.org/node/144643#comment-624696
# 
RewriteCond %{HTTP_HOST} ^prime357\.com$ [NC]
RewriteRule ^$ drupal-6.1/index.php [L]
RewriteCond %{HTTP_HOST} ^prime357\.com$ [NC]
RewriteCond %{DOCUMENT_ROOT}/drupal-6.1%{REQUEST_URI} -f
RewriteRule .* drupal-6.1/$0 [L]
RewriteCond %{HTTP_HOST} ^prime357\.com$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* drupal-6.1/index.php?q=$0 [QSA]

Could somebody please explain some of the terms and flags that are occurring.

I'm with it until line 4. I gather that "/drupal-6.1%{REQUEST_URI}" string is being compared with %{DOCUMENT_ROOT}. What is the purpose of the flag " -f ". My understanding is that {REQUEST_URI} is a file, probably something similar to "node/145".

Read More... A Button?

Perhaps this is a question with a simple answer.... but after some searching, I could not figure out how to do this...

I am using Drupal 6/Views module, which is generating a simple view of teasers of a given node type... all of which is beautifully themed and working perfectly... how would I go about making the "read more" text link into an image?

Thanks

Missing content types (Drupal 6)

Hi.

Some time ago I succesfully installed Drupal 6.0, but when i go to Create content -page, there's nothing. Shouldn't there be at least Page and Story as default?

Advanced Views: Need Suggestions for related con-types / arguments

I'm sorry for having to ask this, but I've scoured docs+forums+web and can't seem to get all the pieces to fit together to pull this off. It doesn't help that I'm only 3 months into Drupal and have only created 3 views total so far. But I have years of programming + database experience. I know how I would do this if I were to code it, but trying to do it with the views module not so much.

Anyway if anyone could shed some light on this I'd be greatly appreciated. I'm not looking/asking for full blown solutions just the right hints so I can do it myself.

This site is for managing content for a college professor who puts his course material online.

Here are my content types w/ definitions (only important fields + types show):

ct: Course
-> text: course_number (e.g. cis101)

ct: Lecture
-> noderef: course (i.e. the course this lecture is assigned to)
-> integer: lecture_number (e.g. 1)

ct: Lecture_Unit (a lecture is made up of units)
-> noderef: lecture (i.e. the lecture this lecture_unit is assigned to)

I would like to create a View that displays all Lecture_Units and filter them using URL arguments like so:

server/lectureunits/{course_number}/{lecture_number}
-or-
server/lectureunits/{course_number}/all **most important**
-or-
server/lectureunits/all/all

Pages

Subscribe with RSS Subscribe to RSS - Drupal 6.x