Welcome Guest, Not a member yet? Register   Sign In
CodeExtinguisher v2.0 Release Candidate 12.3
#14

[eluser]got 2 doodle[/eluser]
I can't even pretend to understand how codeextinguisher "works" but if it's any kind of clue I recently changed from apache 2.2 to xampp and I had to make the following changes to my code so that my index.php (not using codeigniter, just plain php that I cobbled together)

Code:
?php
session_start();
include('util.php'); // misc generic utils
/* edit on change to xampp was required to $_GET[ ''] passed vars */
$id=$_GET['id']; /* <----- line added */
if (empty($id)) {$id='0';}
$lang=$_GET['lang']; /* <----- line added */
if (empty($lang)) { $lang='en'; }

This is the contents of util.php
Code:
&lt;?php /*    util.php    */
/* Function to format varibles and not overwrite PHP session variables
sample call:
<a href="session_var.php&lt;?php echo UrlVars("id","1"); ?&gt;">Set id = 1</a>
example result:
session_var.php?lang=eng&id=1&PHPSESSID=afac9a4cf3ba13a3f3c845dfc73279a7
Call this way --&gt; UrlVar("variable name","variable value");
*/
function UrlVar() {
  $arg = array();
  $string = "?";
  $vars = $_GET;
  for ($i = 0; $i < func_num_args(); $i++)
    $arg[func_get_arg($i)] = func_get_arg(++$i);
  foreach (array_keys($arg) as $key)
    $vars[$key] = $arg[$key];
  foreach (array_keys($vars) as $key)
    if ($vars[$key] != "") $string.= $key . "=" . $vars[$key] . "&";
  if (SID != "" && SID != "SID" && $_GET["PHPSESSID"] == "")
    $string.= htmlspecialchars(SID) . "&";

  return htmlspecialchars(substr($string, 0, -1));
}

function VisitorIP()
    {
    if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
        $TheIp=$_SERVER['HTTP_X_FORWARDED_FOR'];
    else $TheIp=$_SERVER['REMOTE_ADDR'];

    return trim($TheIp);
}

?&gt;

(looks horrible I know)

Anyway before xampp the code worked without the
Code:
$_GET['id']

running windows XP and xampp 1.6.6a php5.2.5

Jeff


Messages In This Thread
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-01-2008, 11:52 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 07:12 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:41 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:43 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:53 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:54 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:58 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 09:07 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 09:17 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 10:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 11:18 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 11:21 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 01:08 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 01:35 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 07:39 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 01:51 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 01:55 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-04-2008, 11:33 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-04-2008, 11:38 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:31 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:48 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:50 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 06:02 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 06:05 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 07:31 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 05:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 08:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:00 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:04 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:07 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:08 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 02:05 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 06:29 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 06:42 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:44 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:49 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:51 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:55 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:59 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 10:43 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 10:35 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 10:37 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 02:49 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:21 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:40 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:59 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 05:16 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 05:18 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 11:17 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 02-23-2009, 12:10 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 03-18-2009, 04:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB