Question : Php concanation text

i change the code of this file different directory  
so how can change    echo 'picname="' . $row['picname'] . '" ';   to one directory above it


while ($row = @mysql_fetch_assoc($result)){
  // ADD TO XML DOCUMENT NODE
  echo '<marker ';
  echo 'name="' . parseToXML($row['name']) . '" ';
  echo 'address="' . parseToXML($row['address']) . '" ';
  echo 'lat="' . $row['lat'] . '" ';
  echo 'lng="' . $row['lng'] . '" ';
  echo 'type="' . $row['type'] . '" ';
  echo 'picname="' . $row['picname'] . '" ';
  echo '/>';
}

Answer : Php concanation text

In your config - you "any" on the destination for RemoteDesktop and pptp (and now gre). In your static (inside,outside) you reference "MYCOMPANYOfficeInternal"

Is it the same server running your RRAS as what you are remote desktopping to? If not you will need to tune your static(inside,outside) statements because you are directing all allowed ports to MYCOMPANYOfficeInternal ip address.

This will replace what your are already doing:
static (inside,outside) tcp interface www MYCOMPANYOfficeInternal www netmask 255.255.255.255 0 0
static (inside,outside) tcp interface https MYCOMPANYOfficeInternal https netmask 255.255.255.255 0 0
static (inside,outside) tcp interface 3389 MYCOMPANYOfficeInternal 3389 netmask 255.255.255.255 0 0


If you have a different server at RRASServerIP define it and add
static (inside,outside) tcp interface pptp RRASServerIP pptp netmask 255.255.255.255 0 0
static (inside,outside) gre interface RRASServerIP netmask 255.255.255.255 0 0

If it is not a different IP than what your other NATs go to ignore this and let me know.

Good Luck

Random Solutions  
 
programming4us programming4us