Skip to content

Commit d714853

Browse files
committed
Relocated the session save path
Moved the session save path from the server default to a new folder. this increases security for those on shared hosts, and ensures that there are no permissions problems (or problems with the session save path not being set in the PHP config) for those who have been experiencing login problems due to sessions not being saved.
1 parent 324d5e3 commit d714853

64 files changed

Lines changed: 120 additions & 100 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ admin/unused/*
99
!admin/downloads
1010
admin/downloads/*
1111
!admin/downloads/index.html
12+
admin/sessions/*
13+
!admin/sessions/index.html
1214
config/global_config.php
1315
config/global_config*.php
1416
config/uploads/*

CHANGELOG

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/***************************************
22
* http://www.program-o.com
33
* PROGRAM O
4-
* Version: 2.4.4
4+
* Version: 2.4.5
55
* FILE: CHANGELOG
66
* AUTHOR: Elizabeth Perreau and Dave Morton
77
* DATE: MAY 17TH 2014
@@ -10,7 +10,13 @@
1010

1111
Version History:
1212

13-
2.4.4 Multiple bug fixes, consolidated SELECT type DB queries into calls to teo functions
13+
2.4.5 Relocated the session save path
14+
1.) Moved the session save path from the server default to a new folder. this increases
15+
security for those on shared hosts, and ensures that there are no permissions problems
16+
(or problems with the session save path not being set in the PHP config) for those who
17+
have been experiencing login problems due to sessions not being saved.
18+
19+
2.4. 4 Multiple bug fixes, consolidated SELECT type DB queries into calls to teo functions
1420
1.) Fixed a bug in the core code that allowed fatal errors to be generated if the variable
1521
bot_id is empty or not set
1622
2.) Fixed a bug in the new Search/Edit AIML admin page that caused only the default chatbot's
@@ -19,6 +25,7 @@ Version History:
1925
SELECT type queries, resulting in fewer lines of code to the tune of over 150
2026
4.) Fixed a security bug where users could directly access certain admin pages without actually
2127
being logged in.
28+
5.) Changed the download admin page to enable downloading multiple files as a zip arcvhive.
2229

2330
2.4.3 Multiple bug fixes, started adding internal documentation with descriptions
2431
1.) Fixed a bug in the XML GUI that was creating fatal errors when called from the admin page

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/***************************************
22
* http://www.program-o.com
33
* PROGRAM O
4-
* Version: 2.4.4
4+
* Version: 2.4.5
55
* FILE: README
66
* AUTHOR: Elizabeth Perreau and Dave Morton
77
* DATE: MAY 17TH 2014

TODO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/***************************************
22
* http://www.program-o.com
33
* PROGRAM O
4-
* Version: 2.4.4
4+
* Version: 2.4.5
55
* FILE: TODO
66
* AUTHOR: Elizabeth Perreau and Dave Morton
77
* DATE: 02-18-2013

admin/aiml.dtd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ value CDATA #IMPLIED>
5555
<!ELEMENT input (#PCDATA)>
5656
<!ATTLIST input index CDATA #IMPLIED>
5757
<!ELEMENT img EMPTY>
58-
<!ATTLIST img src CDATA #REQUIRED alt CDATA #IMPLIED title CDATA #IMPLIED>
58+
<!ATTLIST img src CDATA #REQUIRED alt CDATA #IMPLIED title CDATA #IMPLIED width CDATA #IMPLIED height CDATA #IMPLIED>
5959
<!ELEMENT id EMPTY>
6060
<!ELEMENT response (#PCDATA)>
6161
<!ATTLIST response index CDATA #IMPLIED>

admin/botpersonality.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/***************************************
33
* http://www.program-o.com
44
* PROGRAM O
5-
* Version: 2.4.4
5+
* Version: 2.4.5
66
* FILE: botpersonality.php
77
* AUTHOR: Elizabeth Perreau and Dave Morton
88
* DATE: 05-26-2014

admin/bugs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
//-----------------------------------------------------------------------------------------------
3-
//My Program-O Version: 2.4.4
3+
//My Program-O Version: 2.4.5
44
//Program-O chatbot admin area
55
//Written by Elizabeth Perreau and Dave Morton
66
//DATE: MAY 17TH 2014

admin/clear.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?PHP
22
//-----------------------------------------------------------------------------------------------
3-
//My Program-O Version: 2.4.4
3+
//My Program-O Version: 2.4.5
44
//Program-O chatbot admin area
55
//Written by Elizabeth Perreau and Dave Morton
66
//DATE: MAY 17TH 2014

admin/demochat.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
//-----------------------------------------------------------------------------------------------
3-
//My Program-O Version: 2.4.4
3+
//My Program-O Version: 2.4.5
44
//Program-O chatbot admin area
55
//Written by Elizabeth Perreau and Dave Morton
66
//DATE: MAY 17TH 2014

admin/download.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?php
2+
/***************************************
3+
* http://www.program-o.com
4+
* PROGRAM O
5+
* Version: 2.4.5
6+
* FILE: download.php
7+
* AUTHOR: Elizabeth Perreau and Dave Morton
8+
* DATE: 12-08-2014
9+
* DETAILS: Provides the ability to download a chatbot's AIML filesm either in AIML or SQL format.
10+
***************************************/
11+
212
$content = '';
313
$status = '';
414
$bot_id = ($bot_id == 'new') ? 0 : $bot_id;

0 commit comments

Comments
 (0)