Tagged Questions
The magic-quotes tag has no wiki summary.
8
votes
10answers
20k views
How to turn off magic quotes on shared hosting?
I want to turn off php's magic quotes. I don't have access to php.ini.
When I tried to add php_flag magic_quotes_gpc off to my .htaccess file, i get a 500 internal server error. This is what my ...
7
votes
3answers
980 views
What are magic quotes runtime in PHP?
I'm totally aware of the aberration of Magic Quotes in PHP, how it is evil and I avoid them like pest, but what are magic_quotes_runtime? From php.ini:
Magic quotes for runtime-generated
data, ...
7
votes
5answers
3k views
How can I disable PHP magic quotes at runtime?
I'm writing a set of PHP scripts that'll be run in some different setups, some of them shared hosting with magic quotes on (the horror). Without the ability to control PHP or Apache configuration, ...
5
votes
4answers
1k views
Work around magic quotes, or just make sure they're off?
Is it worth changing my code to be "more portable" and able to deal with the horror of magic quotes, or should I just make sure that it's always off via a .htaccess file?
if (get_magic_quotes_gpc()) ...
4
votes
3answers
1k views
PHP magic_quotes_gpc vulnerability
I've been assigned to one of my company's legacy webapps, and after a day or two of poking around the source, I've found an SQL injection vector similar to the following:
mysql_query("SELECT * FROM ...
4
votes
2answers
233 views
Which superglobals are affected by magic_quotes_gpc = 1?
By looking at the name of this directive one may think that magic_quotes are only applied to $_GET, $_POST and $_COOKIE superglobals but there is one perturbing comment on the PHP Manual:
Please ...
4
votes
11answers
3k views
Magic quotes in PHP
According to the PHP manual, in order to make code more portable, they recommend using something like the following for escaping data:
if (!get_magic_quotes_gpc()) {
$lastname = ...
3
votes
2answers
157 views
PHP Magic Quotes Question
I've never programmed in an environment with magic quotes turned on before. Now I'm working on a project where it is. This is how I've been setting up user accepted data situations:
$first_name = ...
3
votes
3answers
275 views
Escaping Quotes in SQL
I'm a bit confused about this topic so I decided to ask about it from you guys :)
As of php.net I should use mysql_real_escape_string() and turn off magic quotes because it's deprecated.
So I ...
3
votes
2answers
437 views
PHP: how to (correctly) remove escaped quotes in arrays when Magic Quotes are ON
As you know when Magic Quotes are ON, single quotes are escaped in values and also in keys. Most solutions to remove Magic Quotes at runtime only unescape values, not keys. I'm seeking a solution that ...
3
votes
5answers
2k views
Understanding input escaping in PHP
One thing that's always confused me is input escaping and whether or not you're protected from attacks like SQL injection.
Say I have a form which sends data using HTTP POST to a PHP file. I type the ...
2
votes
1answer
153 views
convert JSON object to query string and then back to an object
I know this has been asked a few times but please bear with me.
I have a google maps object which is rather complex (it contains various nodes, coordinates, etc) and I am trying to pass it as a query ...
2
votes
2answers
219 views
Questions switching to PDO from mysql_query
I am switching to PDO from traditional mysql_query() parameterized queries to make use of it's security advantages and I have a few questions. First off, does anything need to be done as far as ...
2
votes
1answer
144 views
Although magic_quotes are turned off still escaped strings?
I disabled magic_quotes in my php.ini.
But I still get escaped strings in my form.
Note: I'm running this in a theme in Wordpress.
2
votes
3answers
5k views
Mysql Real Escape String PHP Function Adding “\” to My Field Entry
I am submitting a form to my mySql database using PHP.
I am sending the form data through the
mysql_real_escape_string($content);
function.
When the entry shows up in my database (checking in ...
2
votes
2answers
260 views
Magic quotes on older and new versions of PHP
this code is supposed to ensure that clean code gets to the database
it is supposed to work in earlier versions of PHP (earlier than 4.3.0) and later versions of php (older than 4.3.0)
it works well ...
2
votes
4answers
145 views
which one will be better to use default magic quotes or user defined addslash/stripslash in PHP?
which one will be better to use default magic quotes or user defined addslash/stripslash in PHP?
I want use the best one. please help me.
2
votes
7answers
3k views
why can't php just convert quotes to html entities for mysql?
PHP uses "magic quotes" by default but has gotten a lot of flak for it. I understand it will disable it in next major version of PHP.
While the arguments against it makes sense, what I don't get it ...
1
vote
0answers
46 views
From magic quotes on to off… Best strategy for the transition on the long run
Basically my old framework and all my pages are built using magic quotes = on.
This means I have everywhere mysql_query("... id = '{$_GET['id']}' ...");
Consider I can't refactor everything because ...
1
vote
0answers
52 views
Script to undo php Magic Quotes and mysql_real_escape_string combination
For the last 4 years I've run a site mistakenly using both magic quotes and mysql_real_escape_string simultaneously.
This has resulted in all manner of different format strings being stored where in ...
1
vote
1answer
55 views
Do i have to disable magic quotes when using PDO
Simple question and i want simple answer.
I'm using PDO prepared statements to make sure my data are safely processed to the database.
But im confused. Do i have to disable magic quotes or use ...
1
vote
1answer
37 views
After moving TinyMCEditor around
I moved ModX to a new location. Inside ModX there is a TinyMCEditor.
After the move, if I paste html into it, TinyMCEditor is replacing all my content with strange words and backslashes.
Old content ...
1
vote
3answers
198 views
Best method of disabling php magic quotes without php.ini or .htaccess
I am needing to write portable code that will run on a shared server with magic_qoutes_gpc enabled and I am unable to change that in php.ini or .htaccess. (the server is running php 5.2)
It seems ...
1
vote
4answers
417 views
PHP 5.3 automatically escapes $_GET/$_POST from form strings?
My server admin recently upgraded to PHP 5.3 and I'm getting a weird "bug" (or feature, as the PHP folks have it). I had mysql_real_escape_string around most of my string form data for obvious safety ...
1
vote
2answers
487 views
Using get_magic_quotes_gpc on PHP Version 5.2.14 or equivalent for PHP Version 6
Our site is using PHP Version 5.2.14
Lately our hoster probably changed magic-quote defenition, and I came up with the suggested solution [code bellow]
Is this solution OK for PHP Version 5.2.14 ?
...
1
vote
3answers
379 views
print_r() and mail() in PHP outputs something different, why?
I have a html form where visitors can fill and send me some information, as an e-mail. It sends like this:
$body = print_r($_POST, true);
mail ($to, $subject, $body, $headers);
When they write ...
1
vote
4answers
402 views
Does using magic_quotes() affect the use of mysql_real_escape_string()
If I have magic_quotes switched on and I use mysql_real_escape_string, will the string be double escaped? Will it cause problems?
I assume so based on the get_magic_quotes() function but just ...
1
vote
4answers
364 views
Antidote for magic_quotes_gpc()?
I've seen dozens of PHP snippets that go like this:
function DB_Quote($string)
{
if (get_magic_quotes_gpc() == true)
{
$string = stripslashes($string);
}
return ...
0
votes
3answers
52 views
Having trouble with escape quotes, php
I have a for loop that runs through a set of questions with a text area next to each question. But if the question or answer has an apostrophe in it (as if someone asked "Don't" or "Can't" in the ...
0
votes
3answers
105 views
Is it possible to turn off magic quotes without an .htaccess or a php.ini file?
One of my clients is hosting their site on freeservers.com ( a host that should be avoided at all costs ).
The host does not allow .htaccess files, and has no editable php.ini file on the server to ...
0
votes
4answers
138 views
In PHP 5.3, can “magic_quotes_gpc” be enabled?
I understand that it is deprecated in PHP 5.3, but a PHP script I am installing requires this otherwise it won't work.
0
votes
0answers
69 views
Turning off Magic Quotes, Turns off PDO extension
I am on a shared hosting and I have switched off Magic Quotes by php.ini:-
magic_quotes_gpc=Off
magic_quotes_runtime = Off
magic_quotes_sybase = Off
The Problem is that in doing so the PDO ...
0
votes
1answer
653 views
SQL Injection when magic quote is enabled [closed]
Possible Duplicates:
Are single quotes escaped automatically in PHP? Then what's the need for cleaning?
Successful SQL Injection despite PHP Magic Quotes
Earlier today I asked about ...
0
votes
2answers
364 views
MySQL PHPMyAdmin Localhost to accept Magic Quotes
I'm having a small problem with my localhost on Ubuntu to accept data posted with apostrophes from a PHP file into the MySQL database.
Example:
It's your birthday!
Will not be accepted by my ...
0
votes
4answers
1k views
PHP - Go Daddy and magic_quotes_gpc
Does Go Daddy allow you turn off magic_quotes_gpc? If not, how can I stop them from escaping my data when entered or viewed?
0
votes
2answers
174 views
php special characters problem
I am having a problem with the special characters in my script:
This is what I have so far:
$curlstrip = explode("&", $data);
$filename = substr(htmlEntities($curlstrip[5]), 2);
and if $data ...
0
votes
2answers
92 views
PHP file() adding slashes to single quotes
I have a PHP installation running 5.3.3 and when I use the code below:
$sql = file('sql.txt');
var_dump($sql);
All my single quotes are escaped. Why would this be happening. Magic quotes ...
0
votes
3answers
645 views
disabling php magic_quotes_gpc
I have a site, locally setup. It's application development framework is Kohana.
I have an error displaying the following:
Unknown Error
An error was detected which prevented the loading of this ...
0
votes
3answers
436 views
Using single 'smart quote' in my JSON data is breaking PHP script
I've got a PHP script that is reading in some JSON data provided by a client. The JSON data provided had a single 'smart quote' in it.
Example:
{
"title" : "Lorem Ipsum’s Dolar"
}
In ...
0
votes
4answers
136 views
Seeking quoted string generator
Does anyone know of a free website or program which will take a string and render it quoted with the appropriate escape characters?
Let's say, for instance, that I want to quote
It's often said ...
0
votes
5answers
164 views
PHP keeps escaping my form's input (adding \ behind my ')
So basically when I type something with an apostrophe, such as John's bike it will echo John\'s bike. The code below:
<?php
$searchname = $_POST["name"] ;
echo "$searchname";
My form uses the ...
0
votes
6answers
688 views
Why turning magic_quotes_gpc on in PHP is considered a bad practice?
Why turning magic_quotes_gpc on in PHP is considered a bad practice?
0
votes
4answers
544 views
PHP - Shorter Magic Quotes Solution
I'm writing a app that needs to be portable. I know I should disable magic quotes on the PHP configuration but in this case I don't know if I can do that, so I'm using the following code:
if ...
0
votes
1answer
654 views
How to turn off magic quotes in PHP configuration file? I am using XAMPP
What is the file? I have php.ini and php.ini-dist on my computer.
0
votes
3answers
208 views
Function escaping quote is not working correctly [Solved]
(Php & MySQL)
I'm trying to figure out how come this function does not work correctly.
It's add extra \ everytime I edit my entries.
Online server have these settings:
magic_quotes_gpc On
...
0
votes
2answers
535 views
Is there any value in PHP checking a bool vs an int?
I have the following line:
$this->magicQuotes = (bool) get_magic_quotes_gpc();
I am taking the get_magic_quotes_gpc() storing it in my object as it's used many times as I generate the SQL. I am ...
-1
votes
1answer
64 views
Special characters problem with database
I am trying to add special characters into database with JavaScript using encodeURIComponent but it works in localhost and in server adding ' an extra / is also added infront of ' .
How to prevent ...