Search results

  1. N

    Roadmap

    Can I request that DA creates a sticky thread here please with a roadmap of what feature requests you've accepted or other features you are planning to add? Not expecting ETA's or anything, just what to expect in the next version or two. Some of us are planning migrations but looking for...
  2. N

    cPanel -> DirectAdmin script development

    Following on from lots of offers of help here: http://www.webhostingtalk.com/showthread.php?t=1770337 I'm starting to think no one person is going to do it regardless of $$, so it'll have to be a community effort. Basic concept is this: 1) Do a yum update and reboot, make sure cPanel is up...
  3. N

    Connect DirectAdmin server to cPanel DNS cluster servers

    If you're not keen on just rsyncing whole zone files or running other daemons etc, here's a script I wrote to connect a DA server to an existing cPanel DNS cluster. It still needs further work for things in the TODO list but it is functional. In case there's some people that want to at least...
  4. N

    Bulk add domain pointer script

    Trying to make script to add in domain pointers from a textarea field: $data_array = explode("\n", $_REQUEST['domains']); for ( $i=0, $size = count($data_array); $i<$size; $i++ ) { $mydata = $data_array[$i]; $sock = new HTTPSocket; $sock->connect('example.com',2222)...
  5. N

    Apache 2.2 module list

    Hiya, Where abouts in the httpd conf files does it say which modules to load as it does in 1.3? I cant seem to find any reference to the modules etc anywhere, just the php module. Nick
  6. N

    Mod_perl issues

    I try to build mod_perl and get this: host# ./build mod_perl Found /usr/local/directadmin/custombuild/mod_perl-2.0.3.tar.gz Extracting ... Done. Configuring mod_perl-2.0.3... Reading Makefile.PL args from @ARGV MP_APXS = /usr/sbin/apxs no conflicting prior mod_perl version found - good...
  7. N

    Apache 2.2 worker vs prefork with custombuild

    Hiya, Thought I'd try and install apache 2.2 with worker module instead of prefork, do I just add: --with-mpm=worker \ after line 2363 in the build script? Cheers, Nick
  8. N

    Error somewhere in httpd.conf after rebuild apache

    Hiya, After doing a ./build, none of my sites would load. I restored an old copy of http.conf. Then when trying to restart apache, I got errors saying SuEexec etc wasnt recognised in the users included .conf files. So I commented out the lines in the users conf files, and apache starts...
Back
Top