Hi, I'm trying to save an uploaded file and I'm getting a SuspiciousOperation exception. It says "attempted access to E:/htdocs/crm/upload/file_name denied"
I'm not sure if that's Django denying me access because I'm doing something dangerous, or something at my file system level denying access to Django
Debnet has quit
Anyone know?
ojh joined the channel
nedbat has quit
windyhouser joined the channel
SmileyChris has quit
sxn joined the channel
sivy has quit
SmileyChris joined the channel
mordonez has quit
windyhouser has quit
djapo
bluesnow: does the user running the django and or file server have write access
?
bluesnow
djapo: Yes.
_steve joined the channel
jayne joined the channel
rubemlrm joined the channel
sjms joined the channel
devhost joined the channel
olasd joined the channel
tobias1 joined the channel
Hien joined the channel
ctaloi joined the channel
narthollis joined the channel
hvdklauw joined the channel
thisisthechris joined the channel
yeshuah joined the channel
jslootbeek joined the channel
bgyss joined the channel
srijay|away joined the channel
TylerE joined the channel
avelino joined the channel
aarose joined the channel
sudobangbang has quit
RandomGuy5432 has quit
waawal has quit
stickperson joined the channel
freakboy3742 joined the channel
meisth0th
i have an app named 'contact' and i am trying to render a template main.html from this app, but when I use render(request, "main.html") it looks into another app's templates folder and says template does not exist, what am i missing?
waawal joined the channel
al1o has quit
cewing joined the channel
forgot to add that app to INSTALLED_APPS, moving on thanks :)
Weird question...is it possible to go up the reverse relation chain more than once? So, I have a Bookstore that has Books that have Authors. I want to do something like author.books.all().bookstores.all()?