-
AuthorPosts
-
November 18, 2012 at 5:15 pm #182370
I can not add pictures and amendment Appears instead of images, symbols
http://emultimedia.be/new/index.php/shop.html
Thank you
- Ninja Lead Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 19, 2012 at 10:15 am #473438I would need to check it directly on your site. Please send pm me with the admin access and ftp account of your site. I will help you out with it.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 22, 2012 at 2:16 am #473862Hi nassimalasfour,
The problem came from the magic_quotes_gpc in php.ini from your server, it is required to be enabled, pls ask your hosting provider to help to turn it on if you don’t have right to edit it or apply following fix:
<blockquote>Open administrator/index.php file</blockquote>
add new script
// turn off Magic Quotes
if (get_magic_quotes_gpc()) {
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
while (list($key, $val) = each($process)) {
foreach ($val as $k => $v) {
unset($process[$key][$k]);
if (is_array($v)) {
$process[$key] = $v;
$process[] = &$process[$key];
} else {
$process[$key] = stripslashes($v);
}
}
}
unset($process);
}
<blockquote>Open index.php file</blockquote>
add new script
// turn off Magic Quotes
if (get_magic_quotes_gpc()) {
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
while (list($key, $val) = each($process)) {
foreach ($val as $k => $v) {
unset($process[$key][$k]);
if (is_array($v)) {
$process[$key] = $v;
$process[] = &$process[$key];
} else {
$process[$key] = stripslashes($v);
}
}
}
unset($process);
}
However, this is only temporary fix, the error would come back if you upgrade new version JOOMLA CORE, so you need to fix it on php.ini fileAbout content error show your site, i fixed it on position-2 , please open module which have the same error and apply the same, save it and clean all cache.
Regards.
Jason Hill FriendJason Hill
- Join date:
- September 2014
- Posts:
- 32
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 4
- Thanked:
- 4 times in 1 posts
November 22, 2012 at 1:20 pm #473938I think what you meant is that magic_quotes needs to be OFF. Not ‘enabled’;.
I fixed the issue by adding a php.ini file to both joomla root and joomla admin root. With the line listed below.
magic_quotes_gpc = OffI then added the code below to the htaccess file.
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/myusername/public_html/yourJ3folder
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>Change “myusername” and “yourJ3folder” to your respective folders.
Hope this helps someone else.
AuthorPostsViewing 4 posts - 1 through 4 (of 4 total)This topic contains 4 replies, has 3 voices, and was last updated by Jason Hill 11 years, 12 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum