| | #1 |
| Veteran ![]() Join Date: Oct 2005
Posts: 652
![]() ![]() ![]() ![]() ![]() ![]() | Apostrophes turning into quotes? On my forum, whenever I type an apostrophe, it turns into a quotation mark after I post the message. Anyone have any idea what could be causing this?
__________________ To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
| | |
| | #2 |
| Member | Sounds like a problem with the magic_quotes settings in PHP. Your host has both magic_quotes_runtime and magic_quotes_sybase enabled. The magic_quotes_runtime setting causes PHP to automatically escape any quotes in a string. The magic_quotes_sybase setting causes PHP to escape single quotes with another single quote instead of a backslash. The "sybase" part refers to the name of a company that makes a database system using such a format (www.sybase.com for more info). PostgreSQL also uses this format (which is apparently the SQL standard). Fortunately, you can fix things by adding these two lines to index.php (right after the opening PHP tag): Code: ini_set('magic_quotes_runtime', '0');
ini_set('magic_quotes_sybase', '0');
Code: php_value magic_quotes_gpc On
__________________ The Oldiesmann To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. Compliance Manager / Marketing Team member To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - RC1 now available! |
| | |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Turning the welcome message into an image | TrumpetMaster | Creating Interest | 31 | 04-25-2007 08:15 AM |
| Turning lurkers into posters? | dmoore | Creating Interest | 9 | 04-02-2007 11:35 PM |
| phpBB quotes issue | forumbulge | phpBB | 6 | 03-08-2006 04:04 AM |
