I make new instalation subdomain 5.x-1.5 with pathauto-5.x-2.3 and usernode-5.x-1.4 on Drupal 5.12

Follow the instalation step on readme.txt

1. do patch for common.inc

2. do patch for htaccess

3. do patch for setting.php

4. edit setting.php, changed to $cookie_domain = "test.cok";

5. setting httpd-vhosts.conf

  <virtualhost test.cok:80>
       ServerAdmin admin@test.cok
       DocumentRoot htdocs/test.cok
       ServerName test.cok
       ServerAlias *.test.cok 
    </virtualhost>

6. edit httpd.conf

  <VirtualHost test.cok:80>
      DocumentRoot "C:/Program Files/xampp/htdocs/test/"
      ServerName  test.cok
      ServerAlias *.test.cok test.cok
      <Directory "C:/Program Files/xampp/htdocs/test/">
        AllowOverride All
      </Directory>
   </VirtualHost>

7. enabled the subdomain modules, and go to setting

here's what i got :

DNS server - show/hide details	Not working yet
test-1.test.cok failed to resolve
test-2.test.cok failed to resolve
test-3.test.cok failed to resolve

It appears your DNS server is not setup to handle wildcard subdomains (*.test.cok) for test.cok. Edit the DNS zone file or settings for your server to fix.

PHP caches DNS lookups, so you'll want to restart your web server after making changes to your DNS server to see the results of your changes on this page.

and

Web server	unable to test
Unable to test Apache settings until DNS wildcard subdomains are working

test 1 & 2 still error ?

note : already edit Pathauto- "Punctuation Settings" so step 3 and 4 working good.

any clue how to make it work ?

TIA

Comments

acakadut’s picture

no one ?

netbear’s picture

try to put manually your subdomains to hosts file of your windows

acakadut’s picture

already did it before, and doesn't work too

127.0.0.1	      test.cok
127.0.0.1	      *.test.cok
setvik’s picture

Status: Active » Postponed (maintainer needs more info)

Hi,

The windows host file doesn't support wildcard subdomains, so you'll have to manually enter each subdomain you want to test into the host file...

For example:

127.0.0.1      test.cok
127.0.0.1      test-1.test.cok
127.0.0.1      test-2.test.cok
127.0.0.1      test-3.test.cok
127.0.0.1      mysubdomain1.test.cok
127.0.0.1      mysubdomain2.test.cok
127.0.0.1      mysubdomain3.test.cok

... and so on...

Hope that helps.

acakadut’s picture

Status: Postponed (maintainer needs more info) » Fixed

wow.. thanks setvik, it's working now... but i try on verison 6.x since i'm using it now... once again thanks for the help ;)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.