wordpress - Multisite on wamp unable to create a new site on first click -


the problem:

i installed multisite on wampserver , when click on "add site" page go blank.

done far:

  • downloaded wampserver.
  • configured virtual host.
  • downloaded acrylic can have wildcard domain.
  • create database , installed normal wp
  • followed http://codex.wordpress.org/create_a_network , updated multisite.
  • logged in.
  • clicked on site -> network admin.
  • clicked on sites->add new.
  • entered required information.
  • clicked on "add site" waited 40-50 sec.
  • page went blank.

if click on backspace or go <- in browser , click "add site" again works , able visit site,create post normal installation.

any ideas wonderful.

here technical details:

my httpd-vhosts.con that:

<virtualhost *:80>   servername smallurl.com   serveralias www.smallurl.com *.smallurl.com   documentroot c:/wamp/www2   errorlog "c:/wamp/www2/logs/error.log"   customlog "c:/wamp/www2/logs/access.log" common    # - few helpful settings...   <directory "c:/wamp/www2">     order allow,deny     allow     # - enables .htaccess files site     allowoverride   </directory> </virtualhost>  <virtualhost *:80>   servername localhost   documentroot c:/wamp/www   errorlog "c:/wamp/www/logs/error.log"   customlog "c:/wamp/www/logs/access.log" common </virtualhost>  

my acrylichost.txt:

127.0.0.1       localhost 127.0.0.1   www.smallurl.com 127.0.0.1   smallurl.com 127.0.0.1   *.smallurl.com 

in httpd.conf:

# virtual hosts #yaniv# include conf/extra/httpd-vhosts.conf 

rewrite_module activated.

basically covers everything.

any highly appreciated.

under apache|modules turn rewrite on


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -