Notes |
|
|
|
|
(0002907)
|
GQQSER
|
2013-05-23 14:39
|
|
I am still getting the hash marks after I have applied the fix. I tried clearing my cache, I updated the file several times and I still have this issue. There maybe some other reason I am not familiar with. |
|
|
|
What version of PHP are you using? Do you have magic quotes or something similar enabled?
Also, my fix will not undo previously modified data.. just prevent it from being modified in the future. |
|
|
(0002925)
|
GQQSER
|
2013-06-02 06:40
|
|
Apache version 2.2.24
PHP version 5.2.17
MySQL version 5.5.31-log
Architecture x86_64
Operating system linux
You were right, problem was resolved had this in my php.ini file:
; Magic quotes
magic_quotes_gpc =on ; magic quotes for incoming GET/POST/Cookie data
magic_quotes_runtime =Off ; magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_sybase =Off ; Use Sybase-style magic quotes (escape ' with '' instead of \')
Problem resolved the first time. Sometimes I feel like caveman beating on a stone tablet. Sorry for the doubting. |
|
|
|
Absolutely no worries. It took me a while to come up with that possibility, so it was a good reminder of what else could be out there that I should watch for. :) |
|