ispCP - Board - Support
[1.0.3] Add DNS Zone Record - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Development Area (/forum-1.html)
+--- Forum: Tickets / Roadmap / Timeline (/forum-50.html)
+--- Thread: [1.0.3] Add DNS Zone Record (/thread-8517.html)

Pages: 1 2


[1.0.3] Add DNS Zone Record - cobra - 11-22-2009 12:39 PM

Hi, Im a Linux novice and having a little problem with manual DNS records section, when i click to add an "A" record i get
Deprecated: Assigning the return value of new by reference is deprecated in /var/www/ispcp/gui/include/Net_DNS/DNS/RR.php on line 92, on line 110 & on line 203

if i tail -f /var/log/messages i see the zones reload but nothing is written to the zone records,
i am using a VPS running Centos 5.4 i have set my resolve.conf to my local DNS IP,
I have searched everywhere for someone else having this problem but it seems im the only one


RE: Add DNS Zone Record - cobra - 11-23-2009 07:21 PM

Ok, well, I got rid of the php error, not sure if I did right but at lines 92 etc removed the & in the &new, this module is still not writing to the zone files though,
has everybody got this facility working? i have installed ispCP nightly builds many times and its not worked as yet on my VPS, how does this module function? Any pointers, I would love to find out,
Thanks,
Nick.


RE: Add DNS Zone Record - gOOvER - 11-23-2009 07:24 PM

Which Trunk do you use?


RE: Add DNS Zone Record - cobra - 11-23-2009 08:47 PM

(11-23-2009 07:24 PM)gOOvER Wrote:  Which Trunk do you use?

Thanks gOOvER, trunk is from 21/11/09


RE: Add DNS Zone Record - Nuxwin - 11-23-2009 09:19 PM

Hello ;

Well, I'll inspect it Wink.


RE: [1.0.3] Add DNS Zone Record - RatS - 11-24-2009 08:16 AM

It's a PHP 5.3 issue will be fixed in 1.1.0


RE: [1.0.3] Add DNS Zone Record - cobra - 11-25-2009 06:46 AM

(11-24-2009 08:16 AM)RatS Wrote:  It's a PHP 5.3 issue will be fixed in 1.1.0

Thanks RatS, Great work with ispCP, really impressed, cant wait for the next Stable, best regards.


RE: [1.0.3] Add DNS Zone Record - bpratt - 12-21-2009 09:39 AM

I've found that when I add a

mail IN A ip.x.x.x


It adds it okay to the end of the zone file, however it does not replace the original mail record, as I believe this was intended to do.

This will no doubt upset the spf settings as well.

Yes, I know it is experimental at the moment.


Also, you need to manually add "yes" in to the db to allow an existing user to update their dns manually. Altering it via the gui doesn't work, I'm assuming it would if you changed the users hosting plan, but that's more work than altering the db directly.

Personally, I don't think I'd worry about changing things, as you'd only change existing clients once, and new ones should have that done as they get added.


RE: [1.0.3] Add DNS Zone Record - RatS - 12-21-2009 07:20 PM

Hi bpratt,

please open tickets for the bugs you found. (Everything that is not working as expected might be a bug.)

We need your help there we cannot test everything ourself.

P.S.: For replacing mail a ticket exists.


RE: [1.0.3] Add DNS Zone Record - datacompboy - 12-23-2009 10:43 PM

One more problem with DNS edit is unable to create name with dash in.
dev-site.mysite.com
is correct, but can't add:
Use of disallowed char("-") in NAME

p.s.: i can't log into trac Sad( it shows "Redirecting..." page and nothing more

preg_match('~([^a-z,A-Z,0-9\.])~u', $domain['name'], $e)
wrong regexp. it will allow "," but reject "-" Smile
preg_match('~([^-a-zA-Z0-9.])~u', $domain['name'], $e)
this are correct one