Hi Tod,
Solution with magic quotes is:
if (get_magic_quotes_gpc())
{
return stripslashes($value);
}
else
{
return $value;
}
If Joomla source at some code has unsupported magic quotes enabled, there
Need to be disable magic quotes in php.ini or over command:
PHP.INI:
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
or add this line of code to Joomla index.php:
<?php
ini_set("magic_quotes_gpc "," Off ");
?>
If none of solutions work please let me know.
Best regards,
Sasa
From: [email protected] [mailto:[email protected]]
On Behalf Of Todd
Sent: Tuesday, February 07, 2012 7:12 PM
To: NYPHP SIG: Joomla
Subject: Re: [joomla] Joomla 2.5.1 (External URL)
Yea I have tried that. I think it's something do with the magic quotes, I
need something to over ride that specific instance.
From: Stephen Britton <[email protected]>
Reply-To: "NYPHP SIG: Joomla" <[email protected]>
Date: Tue, 7 Feb 2012 13:02:59 -0500
To: "NYPHP SIG: Joomla" <[email protected]>
Subject: Re: [joomla] Joomla 2.5.1 (External URL)
Have you tried clearing your browser cache?
That seems to fix everything Joomla these days. The admin menus on all
Joomla 1.6 to 2.5 sites that I upgraded did not work but I was able to
quickly fix the problem by just flushing out the browser cache.
On Tue, Feb 7, 2012 at 12:59 PM, Todd <[email protected]> wrote:
Hi,
I updated from 1.6.2 to 2.5.1 (locally) as a test. But noticed that my
menus stopped working because:
1. the menu id were changed to classes
2. Because my quotes in Eternal URL - link were changed to '"'
I was able to update my CSS to fix the 1st issue, but I'm not able to
figure out how to over ride the '"' to display as ". I tried to add a
'\ ' in front of the " but it still changed the HTML to '"'
Any suggestions would be greatly appreciated.
I would like to upgrade the live site to 2.5.1 eventually because I've
noticed it's MUCH FASTER!!!
Thanks,
Todd
_______________________________________________
New York PHP SIG: Joomla! Mailing List
http://lists.nyphp.org/mailman/listinfo/joomla
NYPHPCon 2006 Presentations Online
http://www.nyphpcon.com
Show Your Participation in New York PHP
http://www.nyphp.org/show_participation.php
--
Stephen Britton
Technology Consultant
[email protected]
Twitter: @StephenBritton
ph: 914-661-0040
"Life isn't about finding yourself. Life is about creating yourself." -
George Bernard Shaw
_______________________________________________ New York PHP SIG: Joomla!
Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006
Presentations Online http://www.nyphpcon.com Show Your Participation in New
York PHP http://www.nyphp.org/show_participation.php
_______________________________________________
New York PHP SIG: Joomla! Mailing List
http://lists.nyphp.org/mailman/listinfo/joomla
NYPHPCon 2006 Presentations Online
http://www.nyphpcon.com
Show Your Participation in New York PHP
http://www.nyphp.org/show_participation.php