Jump to content

how to open and write to a zone file


tomfmason

Recommended Posts

I have tried to open a zone file but I keep getting the error

[code]Parse error: parse error, unexpected T_STRING in test_open.php on line 3[/code]

here is the simple fopen() script

[code=php:0]<?php
$filename ="mysite.com.zone"
fopen("C:\\windows\\system32\\dns\\etc\\$filename", "r")
?>[/code]

In this example I am just trying to open the zone file with the read permissions.
Also, which would be the best way to reload bind in a windows environment? Would that be some sort of socket or?
Link to comment
Share on other sites

Use this: [code]<?php
$filename ="mysite.com.zone";
$file = "C:\\windows\\system32\\dns\\etc\\$filename";
$fp = fopen($file, "r");
$contents = fread($fp,filesize($file));
fclose($fp);
?>[/code] or this: [code]<?php
$filename ="mysite.com.zone";
$contents = file_get_contents("C:\\windows\\system32\\dns\\etc\\$filename");
?>[/code] to get the contents of the file.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.