installation

Please post all install related problems here. Visit this forum first for troubleshooting.
Post Reply
thauthim
Posts: 8
Joined: Thu 29. Jul 2004, 22:14

installation

Post by thauthim »

Hello!
I need your help. I downloaded phpwcms few houres ago so i'm begginner in it. I have trouble with installation...

I have uploaded all files to my account. Then change chmod...

chmod 777 phpwcms_tmp/thumb_list
chmod 777 phpwcms_tmp/thumb_preview
chmod 777 phpwcms_ftp
chmod 777 phpwcms_filestorage/1
chmod 777 phpwcms_filestorage/2
chmod 777 phpwcms_filestorage/3
chmod 777 phpwcms_filestorage/4
chmod 777 phpwcms_filestorage/5
chmod 777 phpwcms_filestorage/6
chmod 777 phpwcms_filestorage/7
chmod 777 phpwcms_filestorage/8
chmod 777 phpwcms_filestorage/9
chmod 777 phpwcms_filestorage/10
chmod 777 content/images
chmod 777 phpwcms_filestorage
chmod 777 phpwcms_template
chmod 777 content
chmod 666 setup/setup.conf.inc.php
chmod 666 phpwcms_template/inc_css/frontend.css
chmod 666 phpwcms_template/inc_default/startup.html


then i run setup...

.../setup/index.php

i have changed all things what should be changed and then... on last step of installation i have errors:

filestorage: phpwcms_filestorage FALSE (not existing)
temporary: phpwcms_tmp FALSE (not existing)
templates: phpwcms_template FALSE (not existing)
thumbnail list: thumb_list FALSE (not existing)
preview images: thumb_preview FALSE (not existing)
frontend content: content FALSE (not existing)
frontend images: images FALSE (not existing)
ftp takeover: phpwcms_ftp FALSE (not existing)

OK PROBLEM


what am i doing wrong?

can somebody help me, please?
Pappnase

Post by Pappnase »

hello

you have a pathproblem. could you send you post your conf.inc.php here please without password and username.
thauthim
Posts: 8
Joined: Thu 29. Jul 2004, 22:14

Post by thauthim »

thats my setup.conf.inc.php file:


<?php

// database values
$phpwcms["db_host"] = "localhost";
$phpwcms["db_user"] = "...";
$phpwcms["db_pass"] = "...";
$phpwcms["db_table"] = "cms";
$phpwcms["db_prepend"] = "";
$phpwcms["db_pers"] = 1;

// site values
$phpwcms["site"] = "http://cms.vircon.futuro.net.pl/";
$phpwcms["admin_email"] = "info@mail.com";

// paths
$phpwcms["root"] = ""; //default: ""
$phpwcms["file_path"] = "phpwcms_filestorage"; //default: "phpwcms_filestorage"
$phpwcms["file_tmp"] = "phpwcms_tmp"; //default: "phpwcms_tmp"
$phpwcms["templates"] = "phpwcms_template"; //default: "phpwcms_template"
$phpwcms["dir_thlist"] = "thumb_list"; //default: "thumb_list"
$phpwcms["dir_preview"] = "thumb_preview"; //default: "thumb_preview"
$phpwcms["content_path"] = "content"; //default: "content"
$phpwcms["cimage_path"] = "images"; //default: "images"
$phpwcms["ftp_path"] = "phpwcms_ftp"; //default: "phpwcms_ftp"

// content values
$phpwcms["file_maxsize"] = 2097152; //Bytes (50 x 1024 x 1024)
$phpwcms["content_width"] = 538; //max width of the article content column - important for rendering multi column images
$phpwcms["img_list_width"] = 100; //max with of the list thumbnail image
$phpwcms["img_list_height"] = 75; //max height of the list thumbnail image
$phpwcms["img_prev_width"] = 538; //max width of the large preview image
$phpwcms["img_prev_height"] = 400; //max height of the large preview image
$phpwcms["max_time"] = 1800; //logout after max_time/60 seconds

// other stuff
$phpwcms["compress_page"] = 0; //0 = OFF, 1-9: page compression ON (1 = low level, 9 = highest level)
$phpwcms["imagick"] = 0; //0 = GD, 1 = ImageMagick, 2 = ImageMagick 4.2.9
$phpwcms["imagick_path"] = ""; //Path to ImageMagick (default="" - none)
$phpwcms["use_gd2"] = 1; //0 = GD1, 1 = GD2
$phpwcms["rewrite_url"] = 0; //whether URL should be rewritable
$phpwcms["wysiwyg_editor"] = 3; //0 = no wysiwyg editor, 1 = HTMLarea, 2 = FCKeditor, 3 = browser based
$phpwcms["phpmyadmin"] = 1; //enable/disable phpMyAdmin in Backend
$phpwcms["default_lang"] = "en"; //default language
$phpwcms["charset"] = "iso-8859-1"; //default charset 'iso-8859-1'
$phpwcms["allow_remote_URL"] = 0; //0 = no remote URL in {PHP:...} replacement tag allowed, 1 = allowed
$phpwcms["gt_mod"] = 0; //0 = Graphical Text MOD disabled, 1 = enabled

// dynamic ssl encryption engine
$phpwcms["site_ssl_mode"] = '0'; // tuns the SSL Support of WCMS on(1) or off (0) DEFAULT '0'
$phpwcms["site_ssl_url"] = ''; //URL assigned to the SSL Certificate. DON'T add a slash at the End! Exp. "https://www.yourdomainhere.tld"
$phpwcms["site_ssl_port"] = '443'; //The Port on which you SSL Service serve the secure Sites. Servers DEFAULT is '443'

// smtp values
$phpwcms['SMTP_FROM_EMAIL'] = 'info@mail.com'; // reply/from email address
$phpwcms['SMTP_FROM_NAME'] = 'phpwcms webmaster'; // reply/from name
$phpwcms['SMTP_HOST'] = 'localhost'; // SMTP server (host/IP)
$phpwcms['SMTP_PORT'] = 25; // SMTP-Server port (default 25)
$phpwcms['SMTP_MAILER'] = 'mail'; // default phpMailer: smtp, mail (default), sendmail
$phpwcms['SMTP_AUTH'] = 0; // sets SMTP_AUTH to ON/OFF
$phpwcms['SMTP_USER'] = ''; // default SMTP login (user) name
$phpwcms['SMTP_PASS'] = ''; // default SMTP password


// Try to check and uncomment the DOCUMENT_ROOT if you have problems
// often neccessary on IIS or default MacOS X webserver settings
// Do not use backslash "\" on Windows - always replace "\" by "/"
//$_SERVER['DOCUMENT_ROOT'] = '/usr/htdocs';


?>


whats wrong?
Pappnase

Post by Pappnase »

hello

please try this, change this line in your conf.inc.php

Code: Select all

//$_SERVER['DOCUMENT_ROOT'] = '/usr/htdocs';
to this

Code: Select all

$_SERVER['DOCUMENT_ROOT'] = '/home/www/cms.vircon.futuro.net.pl/www';
thauthim
Posts: 8
Joined: Thu 29. Jul 2004, 22:14

Post by thauthim »

i have changed it for
/home/www/cms.vircon.futuro.net.pl/www

and after that for /usr/htdocs (installing script shows: v4.3.4 path: /usr/htdocs)

and still nothing :?
Pappnase

Post by Pappnase »

hello

if you want send me the ftp access and i the url via e-mail or pm then i will take a look.
Pappnase

Post by Pappnase »

hello

so your system still running.

you made a several errors.

you don't upload the conf.inc.php :wink:
and in case of that it can't work.

also you place the wrong document root in the conf.inc.php not the one i wrote you. :wink:

but now it's all fixed and you can work with PHPWCMS.

have a lot of fun and if you have any questions ask we all will help you.
thauthim
Posts: 8
Joined: Thu 29. Jul 2004, 22:14

Post by thauthim »

thank you for everything.

everything is now working just like it should working :D
Post Reply