Page Cant Be Displayed

Please post all install related problems here. Visit this forum first for troubleshooting.
Post Reply
bobd314
Posts: 44
Joined: Tue 24. Feb 2004, 04:19

Page Cant Be Displayed

Post by bobd314 »

For some reason when I type my pass and stuff in right it goes to the "Page Cannot Be Displayed" thing.. and I have NO clue what's wrong. If I type in the wrong pass it gives me error.
User avatar
pSouper
Posts: 1552
Joined: Tue 11. Nov 2003, 15:45
Location: London
Contact:

Post by pSouper »

hi B,
we are going to need a little more info from you ;)
would you post your config amd a link to phpinfo if pos (or post your server settings ect.)
bobd314
Posts: 44
Joined: Tue 24. Feb 2004, 04:19

Post by bobd314 »

the onlything is that when I go to the page, try to login, it gives me page cant be displayed...... I CAN just in the address bar type "/phpwcms.php" and it goes to the admin screen but I hate it, and it does that too on other pages...



config file

Code: Select all

<?

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

// site values
$phpwcms["site"]              = "http://www.wh0cares.com/_1/";
$phpwcms["admin_email"]       = "bobd314@wh0cares.com";

// paths
$phpwcms["root"]         		= "_1";         //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"]     = 1; //if 1 = page compression, 0 = no compression

// debugging timer
$phpwcms["timer"]             = 0; //is for displaying a how long it needs to create

$phpwcms["imagick"]           = 0; //0 = GD,  1 = ImageMagick convert
$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"]    = 1;  //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'

// 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'


?>
PHP info thingy http://wh0cares.com/_1/include/inc_act/act_phpinfo.php
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

This is your PHP info:
http://wh0cares.com/_1/info.php

Your config.inc.php should be:

Code: Select all

// site values 
$phpwcms["site"]              = "http://www.wh0cares.com/";

// paths 
$phpwcms["root"]               = "_1";         //default: ""
i.e. $phpwcms["site"] + $phpwcms["root"] = path to phpwcms site root

Code: Select all

http://www.wh0cares.com/ + _1 = http://www.wh0cares.com/_1
Post Reply