Being employed in the ICT, I still am a novice at Collective Access. Trying to install a developers-environment, I ran into a problem. Setting up this environment, I started with XAMP 1.7.4 for windows on a laptop with OS: Windows 7. At first I had trouble with Apache unable to run, because the default port (80) was occupied by a system service. Searching on the Internet, I found a solution for that, but on implementing that solution, I decided to reinstall XAMP first and after that I no longer needed to implement the solution. XAMP is running smoothly ever since; Apache using the default port (80).
Next I followed the installation-manual on http://wiki.collectiveaccess.org/index.php?title=Installation_(Providence)#column-one
Configuration of PHP.ini was setup with the following parameters:
post_max_size = 128M
upload_max_filesize = 128M
memory_limit = 512M
display_errors = On
An empty MySql database named ‘collaccess’ with user ‘AC_admin’ with full access rights was setup.
The contents of the CollectiveAccess software distribution was copied to the root of the web server instance, that is C:\xampp\www.
Configuration of setup.php was setup with the following parameters:
<?php
define("CA_BASE_DIR",“C:/xampp/www");
define("CA_URL_ROOT","/www");
define("CA_SITE_HOSTNAME","www.ca_oertijdmuseum.org");
define("CA_APP_NAME","collectiveaccess_oertijdmuseum1");
define("CA_APP_DISPLAY_NAME","CollectiveAccess Oertijdmuseum");
define("CA_DB_HOST",'localhost');
define("CA_DB_USER",'AC_admin');
define("CA_DB_PASSWORD",'************');
define("CA_DB_TYPE", 'mysql');
date_default_timezone_set('Europe/Amsterdam');
define("CA_SMTP_SERVER", 'localhost');
define("CA_SMTP_PORT", 25);
#define("CA_SMTP_AUTH", 'login');
#define("CA_SMTP_USER", 'my_smtp_username');
#define("CA_SMTP_PASSWORD", 'my_smtp_password');
Generic site admin email - used as the "from" address
define("CA_ADMIN_EMAIL", 'info@oertijdmuseum.nl');
/
?>
When I try to access the URL ‘http://www.ca_oertijdmuseum.org/’, I get ‘the webpage cannot be displayed’ or ‘object not found! Please contact your webmaster’ and
Error 404
localhost
4-6-2011 10:19:08
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1
I also tried adjusting the global.conf in C:\xampp\www\app\conf
Configuration of global.conf was setup with the following parameters:
app_name = <collectiveaccess_oertijdmuseum1>
app_display_name = <CollectiveAccess Oertijdmuseum>
window_title = <CA_Oertijdmuseum>
locale_default = en_US
ca_base_dir =< C:/xampp/www >
ca_conf_dir =< C:/xampp/www/app/conf>
ca_app_dir = <C:/xampp/www/app>
ca_lib_dir = <C:/xampp/www/app/lib>
ca_models_dir = <C:/xampp/www/app/models>
site_protocol = <http>
site_hostname = <localhost
site_host = <site_protocol>://<site_hostname>
ca_url_root = <CA_root>
ca_media_url_root = <ca_url_root>/media/<app_name>
ca_media_root_dir = <ca_base_dir>/media/<app_name>
db_host = <localhost>
db_user = <AC_admin>
db_password = <************>
db_database = <collaccess>
db_type = <mysql>
smtp_server = CA_SMTP_SERVER
#smtp_auth = CA_SMTP_AUTH
#smtp_username = CA_SMTP_USER
#smtp_password = CA_SMTP_PASSWORD
ca_admin_email = CA_ADMIN_EMAIL
password_email_from = <ca_admin_email>
But the problem remains. What am I missing? Who can put me on the right track?
Henri