Go Back   Pligg CMS Forum > Pligg Help > General Help

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 01-07-2008, 01:30 PM
Banned
Pligg Version: 9.9.5
 
Join Date: Oct 2007
Location: Canada
Posts: 914
Thanks: 169
Thanked 17 Times in 17 Posts
What would I change it too? Any clue and also I just found another pligg site facing this issue look here, Goboz - Cyclists, Mark Your Calendars

Last edited by bbrian017; 01-07-2008 at 01:44 PM..
Reply With Quote
  #12 (permalink)  
Old 01-07-2008, 01:31 PM
Banned
Pligg Version: 9.8.
Pligg Template: Custom
 
Join Date: Feb 2007
Location: Canada
Posts: 849
Thanks: 74
Thanked 49 Times in 45 Posts
Do you know what character is causing the problems and what the character is suppose to be?

Geoserv.
Reply With Quote
The Following User Says Thank You to Geoserv For This Useful Post:
  #13 (permalink)  
Old 01-07-2008, 01:44 PM
Banned
Pligg Version: 9.9.5
 
Join Date: Oct 2007
Location: Canada
Posts: 914
Thanks: 169
Thanked 17 Times in 17 Posts
Quote:
Originally Posted by Geoserv View Post
Do you know what character is causing the problems and what the character is suppose to be?

Geoserv.
yes it's the apostrophe so all the following words

Who's She's Anyone's People's and etc...

This also happens when sending mas e-mails :)
Reply With Quote
  #14 (permalink)  
Old 01-07-2008, 02:11 PM
Banned
Pligg Version: 9.8.
Pligg Template: Custom
 
Join Date: Feb 2007
Location: Canada
Posts: 849
Thanks: 74
Thanked 49 Times in 45 Posts
Do you have this in libs/utils.php

Code:
function remove_error_creating_chars($chars) { 
	$replace=array( 
	'Á' => 'A',
	'Å' => 'A', 
	'ä' => 'a',
	'á' => 'a2',
	'à' => 'a3',
	'â' => 'a4',
	'ã' => 'a5',
	'ä' => 'a',
	'å' => 'a',
	'æ' => 'ae',
	'æ' => 'ae',
	'é' => 'e',
	'È' => 'E',
	'É' => 'E',
	'Ì' => 'I', 
	'ì' => 'i', 
	'Í' => 'I',
	'í' => 'i',
	'¼' => '',
	'¾' => '',
	'¿' => '',
	'ñ' => 'n',
	'Ñ' => 'N',
	'Ò' => 'O',
	'ò' => 'o',
	'Ö' => 'O',
	'Õ' => 'O',
	'Ó' => 'O',
	'ô' => 'o',
	'ó' => 'o',
	'õ' => 'o',
	'ö' => 'o',
	'Š' => 's',
	'š' => 's',
	'Û' => 'U',
	'Ú' => 'U',
	'Ü' => 'U',
	'û' => 'u',
	'ú' => 'u',
	'ü' => 'u',
	'Ý' => 'Y',
	'ý' => 'y',
	'Ž' => 'Z', 
	'ž' => 'z', 
	'€' => ''
	);
Geoserv
Reply With Quote
The Following User Says Thank You to Geoserv For This Useful Post:
  #15 (permalink)  
Old 01-07-2008, 02:16 PM
Banned
Pligg Version: 9.9.5
 
Join Date: Oct 2007
Location: Canada
Posts: 914
Thanks: 169
Thanked 17 Times in 17 Posts
yes line 320 - 367 should I add the " there?
Reply With Quote
  #16 (permalink)  
Old 01-07-2008, 02:18 PM
Banned
Pligg Version: 9.8.
Pligg Template: Custom
 
Join Date: Feb 2007
Location: Canada
Posts: 849
Thanks: 74
Thanked 49 Times in 45 Posts
Its actually two ' '

Geoserv
Reply With Quote
The Following User Says Thank You to Geoserv For This Useful Post:
  #17 (permalink)  
Old 01-07-2008, 02:20 PM
Banned
Pligg Version: 9.9.5
 
Join Date: Oct 2007
Location: Canada
Posts: 914
Thanks: 169
Thanked 17 Times in 17 Posts
Quote:
Originally Posted by Geoserv View Post
Its actually two ' '

Geoserv
no no what I meant was should I add the " in between the 2? Also I just noticed mine is different than the one you added here,

Code:
function remove_error_creating_chars($chars) { 
	$replace=array( 
	'?' => 'A',
	'?' => 'A', 
	'?' => 'a',
	'?' => 'a2',
	'?' => 'a3',
	'?' => 'a4',
	'?' => 'a5',
	'?' => 'a',
	'?' => 'a',
	'?' => 'ae',
	'?' => 'ae',
	'?' => 'e',
	'?' => 'E',
	'?' => 'E',
	'?' => 'I', 
	'?' => 'i', 
	'?' => 'I',
	'?' => 'i',
	'?' => '',
	'?' => '',
	'?' => '',
	'?' => 'n',
	'?' => 'N',
	'?' => 'O',
	'?' => 'o',
	'?' => 'O',
	'?' => 'O',
	'?' => 'O',
	'?' => 'o',
	'?' => 'o',
	'?' => 'o',
	'?' => 'o',
	'?' => 's',
	'?' => 's',
	'?' => 'U',
	'?' => 'U',
	'?' => 'U',
	'?' => 'u',
	'?' => 'u',
	'?' => 'u',
	'?' => 'Y',
	'?' => 'y',
	'?' => 'Z', 
	'?' => 'z', 
	'?' => ''
	);
Reply With Quote
  #18 (permalink)  
Old 01-07-2008, 02:23 PM
Banned
Pligg Version: 9.8.
Pligg Template: Custom
 
Join Date: Feb 2007
Location: Canada
Posts: 849
Thanks: 74
Thanked 49 Times in 45 Posts
Why do you have ? marks all the way down in that file? Thos are suppose to be characters like mine.

Perhaps paste mine over yours.

Geoserv.
Reply With Quote
The Following User Says Thank You to Geoserv For This Useful Post:
  #19 (permalink)  
Old 01-07-2008, 02:27 PM
Banned
Pligg Version: 9.9.5
 
Join Date: Oct 2007
Location: Canada
Posts: 914
Thanks: 169
Thanked 17 Times in 17 Posts
What version are you running I am running 9.8.2
Reply With Quote
  #20 (permalink)  
Old 01-07-2008, 02:30 PM
Banned
Pligg Version: 9.8.
Pligg Template: Custom
 
Join Date: Feb 2007
Location: Canada
Posts: 849
Thanks: 74
Thanked 49 Times in 45 Posts
Same here.

Geoserv
Reply With Quote
The Following User Says Thank You to Geoserv For This Useful Post:
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Similar Threads
Thread Thread Starter Forum Replies Last Post
Text encoding - which should i be using? revolver General Help 1 01-07-2008 02:58 PM
9.6 error xbizsky Bug Report 28 07-04-2007 03:54 AM
Need help setting text in header dinki Template Support 0 06-30-2007 05:32 PM
Safari underlining all of the text... kevinD General Help 2 05-29-2007 12:51 PM
Installation - Tables never created julientarta Installation and Upgrade Help 28 02-02-2007 11:04 PM


Search Engine Friendly URLs by vBSEO 3.2.0