Added exception for non-writable entries_dir
This commit is contained in:
parent
76e671fcfe
commit
a1cf3893a9
@ -38,6 +38,8 @@ def errorpage(string):
|
|||||||
print ' Directory <b>"' + staticpages_dir + '"</b> does not exist!'
|
print ' Directory <b>"' + staticpages_dir + '"</b> does not exist!'
|
||||||
elif string == "linklist":
|
elif string == "linklist":
|
||||||
print ' File <b>"linklist"</b> does not exist!'
|
print ' File <b>"linklist"</b> does not exist!'
|
||||||
|
elif string =="not writable entries_dir":
|
||||||
|
print ' Admin is a dumbass!!! Tell him to make his entries_dir writable.'
|
||||||
else:
|
else:
|
||||||
print ' <b>' + string + '</b> is not set in configuration, please check your installation!'
|
print ' <b>' + string + '</b> is not set in configuration, please check your installation!'
|
||||||
print '</body>'
|
print '</body>'
|
||||||
@ -155,8 +157,11 @@ if cname and ctext and ctitle:
|
|||||||
else:
|
else:
|
||||||
comments_file = glob.glob(entries_dir + ctitle + '.comments')
|
comments_file = glob.glob(entries_dir + ctitle + '.comments')
|
||||||
if not comments_file:
|
if not comments_file:
|
||||||
content = open(entries_dir + ctitle + '.comments', "w")
|
try:
|
||||||
content.close()
|
content = open(entries_dir + ctitle + '.comments', "w")
|
||||||
|
content.close()
|
||||||
|
except:
|
||||||
|
errorpage('not writable entries_dir')
|
||||||
comments_file = glob.glob(entries_dir + ctitle + '.comments')
|
comments_file = glob.glob(entries_dir + ctitle + '.comments')
|
||||||
content = open(comments_file[0], "a+")
|
content = open(comments_file[0], "a+")
|
||||||
content.write("-." + cname + "\n")
|
content.write("-." + cname + "\n")
|
||||||
|
Loading…
Reference in New Issue
Block a user