- Posts: 2
- Thank you received: 0
DigiOz Guestbook error
- quinox1976
- Topic Author
- Offline
- New Member
Less
More
10 years 1 week ago - 10 years 1 week ago #13875
by quinox1976
DigiOz Guestbook error was created by quinox1976
Hello,
For 2 years now I'm using DigiOZ guestbook on a site. My client is very happy with it.
My customer resports nobody can post a reaction on the guestbook anymore.
This is the error message when adding a reaction:
It was working fine and didn't changed anything on the guestbook.
Please help.
Regards,
Roland
For 2 years now I'm using DigiOZ guestbook on a site. My client is very happy with it.
My customer resports nobody can post a reaction on the guestbook anymore.
This is the error message when adding a reaction:
Code:
$max))) return FALSE; return $string; } // sanitize a string in prep for passing a single argument to system() (or similar) function sanitize_system_string($string, $min='', $max='') { $pattern = '/(;|\||`|>|<|&|^|"|'."\n|\r|'".'|{|}|[|]|\)|\()/i'; // no piping, passing possible environment variables ($), // seperate commands, nested execution, file redirection, // background processing, special commands (backspace, etc.), quotes // newlines, or some other special characters $string = preg_replace($pattern, '', $string); $string = '"'.preg_replace('/\$/', '\\\$', $string).'"'; //make sure this is only interpretted as ONE argument $len = strlen($string); if((($min != '') && ($len < $min)) || (($max != '') && ($len > $max))) return FALSE; return $string; } // sanitize a string for SQL input (simple slash out quotes and slashes) function sanitize_sql_string($string, $min='', $max='') { $string = nice_addslashes($string); //gz $pattern = "/;/"; // jp $replacement = ""; $len = strlen($string); if((($min != '') && ($len < $min)) || (($max != '') && ($len > $max))) return FALSE; return preg_replace($pattern, $replacement, $string); } // sanitize a string for SQL input (simple slash out quotes and slashes) function sanitize_ldap_string($string, $min='', $max='') { $pattern = '/(\)|\(|\||&)/'; $len = strlen($string); if((($min != '') && ($len < $min)) || (($max != '') && ($len > $max))) return FALSE; return preg_replace($pattern, '', $string); } // sanitize a string for HTML (make sure nothing gets interpretted!) function sanitize_html_string($string) { $pattern[0] = '/\&/'; $pattern[1] = '//"; $pattern[3] = '/\n/'; $pattern[4] = '/"/'; $pattern[5] = "/'/"; $pattern[6] = "/%/"; $pattern[7] = '/\(/'; $pattern[8] = '/\)/'; $pattern[9] = '/\+/'; $pattern[10] = '/-/'; $replacement[0] = '&'; $replacement[1] = '<'; $replacement[2] = '>'; $replacement[3] = '
'; $replacement[4] = '"'; $replacement[5] = '''; $replacement[6] = '%'; $replacement[7] = '('; $replacement[8] = ')'; $replacement[9] = '+'; $replacement[10] = '-'; return preg_replace($pattern, $replacement, $string); } // make int int! f.....................
It was working fine and didn't changed anything on the guestbook.
Please help.
Regards,
Roland
Last edit: 10 years 1 week ago by Pete.
Please Log in or Create an account to join the conversation.
- quinox1976
- Topic Author
- Offline
- New Member
Less
More
- Posts: 2
- Thank you received: 0
10 years 1 week ago #13876
by quinox1976
Replied by quinox1976 on topic DigiOz Guestbook error
Solved!
There was already a post about this error with the solution.
This topic can be closed.
There was already a post about this error with the solution.
This topic can be closed.
Please Log in or Create an account to join the conversation.
10 years 1 week ago #13877
by Pete
DigiOz Webmaster
www.digioz.com
Replied by Pete on topic DigiOz Guestbook error
Glad you found the answer to your question.
DigiOz Webmaster
www.digioz.com
Please Log in or Create an account to join the conversation.
Time to create page: 0.115 seconds