By yaoweizhen on
I have a website code and imported the sql file. When i opened the website, it's blank, just 'skip the content' on the top. On the browser title, displayed '<?= $head_title; ?>'. If installed the default drupal system, it can run. I dont know what's the problem. What else need to configure apache, mysql, or php?
Comments
<?= $head_title; ?> would
<?= $head_title; ?>would suggest you do not have a drupal system installed at the url you are using to access your web site. For requirements see http://drupal.org/requirements, but basically you need a web server (apache or IIS), mysql and php. Once you install (untar) the drupal files in your websites root/home directory and make the database you should be able to point your browser there and see the installation screen. Note you do not need to import any sql files, just create the database and during install point drupal there and it will handle the import.I have set the basic
I have set the basic configuration on linux server and the basic drupal system can run as well. I want to copy the existed website to my server for developing. So i don't know what else to set on server.