Install ok DB ERROR


(Avi Miller) #41

So, you’re specifying:


http://192.168.25.153/_admin



In the browser?


(Astro Mikel) #42

[quote]So, you’re specifying:


http://192.168.25.153/_admin



In the browser?

[right][post=“7276”]<{POST_SNAPBACK}>[/post][/right][/quote]





Thats correct.

when i enter 192.168.25.153 it says mysource URL not found, im guessing its because i havent set up a site yet.

But the _admin should work.


(Eric Blanchi) #43

What's the location of the pictures?


(Avi Miller) #44

[quote]Thats correct.
when i enter 192.168.25.153 it says mysource URL not found, im guessing its because i havent set up a site yet.

But the _admin should work.

[right][post=“7277”]<{POST_SNAPBACK}>[/post][/right][/quote]



Yup, the error is correct. Can you post the contents of your main.inc file? Also, if you’re getting missing icons, can you take a look at the HTML source of the page and see what URL Matrix is generating?


(Astro Mikel) #45

[quote]Yup, the error is correct. Can you post the contents of your main.inc file? Also, if you’re getting missing icons, can you take a look at the HTML source of the page and see what URL Matrix is generating?
[right][post=“7279”]<{POST_SNAPBACK}>[/post][/right][/quote]



HTML Source;



<html>

<head>

<title>Squiz MySource v3.6.0 (Matrix) Backend</title>

<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1”>

</head>

<frameset rows=“28," frameborder=“0” border=“0”>

<frame src="/_admin/?SQ_BACKEND_PAGE=header" name=“sq_header” scrolling=“no” marginwidth=“0” marginheight=“0”>

<frameset cols="280,10,
” frameborder=“0” border=“0” id =“main_frameset”>



<frame src="/_admin/?SQ_BACKEND_PAGE=sidenav" name=“sq_sidenav” scrolling=“no” marginwidth=“0” marginheight=“0”>

<frame src="/_admin/?SQ_BACKEND_PAGE=resizer" name=“sq_resizer” scrolling=“no” marginwidth=“0” marginheight=“0”>

<frame src="/_admin/?SQ_BACKEND_PAGE=main" name=“sq_main” marginwidth=“0” marginheight=“0” scrolling=“yes”>

</frameset>

</frameset>

</html>



That is once logged in, i cant see to find the logout to give you the first page.



Main.inc;



?php

define(‘SQ_CONF_DB_DSN’, ‘pgsql://michael@unix()/matrix’);

define(‘SQ_CONF_DB2_DSN’, ‘pgsql://michael@unix()/matrix’);

define(‘SQ_CONF_PEAR_PATH’, SQ_SYSTEM_ROOT.’/php_includes’);

$inc_dir = ini_get(‘include_path’);

$inc_dir = (substr($inc_dir, 0, 2) == ‘.:’) ? ‘.:’.SQ_CONF_PEAR_PATH.’:’.substr($inc_dir, 2) : SQ_CONF_PEAR_PATH.’:’.$inc_dir;

ini_set(‘include_path’, $inc_dir);



define(‘SQ_CONF_BACKEND_SUFFIX’, ‘_admin’);

define(‘SQ_CONF_LIMBO_SUFFIX’, ‘_edit’);

define(‘SQ_CONF_ASSET_TREE_BASE’, 64);

define(‘SQ_CONF_ASSET_TREE_SIZE’, 4);

define(‘SQ_CONF_ASSET_CACHE_SIZE_WEB’, -1);

define(‘SQ_CONF_ASSET_CACHE_SIZE_CLI’, -1);

define(‘SQ_CONF_ROLLBACK_ENABLED’, ‘1’);

define(‘SQ_CONF_DEBUG’, 0);

define(‘SQ_CONF_SYSTEM_NAME’, ‘The System’);

define(‘SQ_CONF_SYSTEM_OWNER’, ‘192.168.25.153’);

define(‘SQ_CONF_SYSTEM_ROOT_URLS’, ‘’);

define(‘SQ_CONF_DEFAULT_EMAIL’, ‘matrix-team@squiz.net’);

define(‘SQ_CONF_TECH_EMAIL’, ‘matrix-team@squiz.net’);

define(‘SQ_CONF_MAX_LOGIN_ATTEMPTS’, 3);

define(‘SQ_CONF_REFRESH_INTERVAL’, 120);

define(‘SQ_CONF_LOCK_LENGTH’, 600);

define(‘SQ_CONF_LOG_FILE’, ‘’);

define(‘SQ_CONF_LOG_ERRORS’, true);

ini_set(‘log_errors’, ‘1’);

define(‘SQ_CONF_ERRORS_HIDE_FRONTEND’, false);

define(‘SQ_CONF_DEFAULT_FRONTEND_LANGUAGE’, ‘en’);

define(‘SQ_CONF_DEFAULT_BACKEND_LOCALE’, ‘en_AU’);

define(‘SQ_CONF_DEFAULT_CHARACTER_SET’, ‘iso-8859-1’);

define(‘SQ_CONF_ALLOW_IP_CHANGE’, ‘0’);

define(‘SQ_CONF_ALLOW_HTTP_LOGIN’, ‘0’);

define(‘SQ_CONF_COMMIT_BUTTON_TEXT’, ‘Commit’);

define(‘SQ_CONF_LOG_EXTENSION’, ‘.log’);

define(‘SQ_CONF_LOG_FILE_SYSTEM’, ‘system’);

define(‘SQ_CONF_LOG_FILE_ERROR’, ‘error’);

ini_set(‘error_log’, SQ_LOG_PATH.’/’.SQ_CONF_LOG_FILE_ERROR.SQ_CONF_LOG_EXTENSION);

define(‘SQ_CONF_SESSION_GC_MAXLIFETIME’, 604800);

ini_set(‘session.gc_maxlifetime’, 604800);

define(‘SQ_CONF_EDITING_TIME’, 3600);

?>



Thank you.


(Avi Miller) #46

Here's your problem:

    define('SQ_CONF_SYSTEM_OWNER', '192.168.25.153');
    define('SQ_CONF_SYSTEM_ROOT_URLS', '');


Should be:

    define('SQ_CONF_SYSTEM_OWNER', 'Your Name Here');
    define('SQ_CONF_SYSTEM_ROOT_URLS', '192.168.25.153');

(Astro Mikel) #47

[quote]HTML Source;


  <html>

  <head>

    <title>Squiz MySource v3.6.0 (Matrix) Backend</title>

    <meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1”>

      </head>

        <frameset rows=“28," frameborder=“0” border=“0”>

      <frame src="/_admin/?SQ_BACKEND_PAGE=header" name=“sq_header” scrolling=“no” marginwidth=“0” marginheight=“0”>

      <frameset cols="280,10,
” frameborder=“0” border=“0” id =“main_frameset”>



      <frame src="/_admin/?SQ_BACKEND_PAGE=sidenav" name=“sq_sidenav” scrolling=“no” marginwidth=“0” marginheight=“0”>

      <frame src="/_admin/?SQ_BACKEND_PAGE=resizer" name=“sq_resizer” scrolling=“no” marginwidth=“0” marginheight=“0”>

      <frame src="/_admin/?SQ_BACKEND_PAGE=main" name=“sq_main” marginwidth=“0” marginheight=“0” scrolling=“yes”>

      </frameset>

    </frameset>

      </html>



That is once logged in, i cant see to find the logout to give you the first page.



Main.inc;



?php

define(‘SQ_CONF_DB_DSN’, ‘pgsql://michael@unix()/matrix’);

define(‘SQ_CONF_DB2_DSN’, ‘pgsql://michael@unix()/matrix’);

define(‘SQ_CONF_PEAR_PATH’, SQ_SYSTEM_ROOT.’/php_includes’);

$inc_dir = ini_get(‘include_path’);

$inc_dir = (substr($inc_dir, 0, 2) == ‘.:’) ? ‘.:’.SQ_CONF_PEAR_PATH.’:’.substr($inc_dir, 2) : SQ_CONF_PEAR_PATH.’:’.$inc_dir;

ini_set(‘include_path’, $inc_dir);



define(‘SQ_CONF_BACKEND_SUFFIX’, ‘_admin’);

define(‘SQ_CONF_LIMBO_SUFFIX’, ‘_edit’);

define(‘SQ_CONF_ASSET_TREE_BASE’, 64);

define(‘SQ_CONF_ASSET_TREE_SIZE’, 4);

define(‘SQ_CONF_ASSET_CACHE_SIZE_WEB’, -1);

define(‘SQ_CONF_ASSET_CACHE_SIZE_CLI’, -1);

define(‘SQ_CONF_ROLLBACK_ENABLED’, ‘1’);

define(‘SQ_CONF_DEBUG’, 0);

define(‘SQ_CONF_SYSTEM_NAME’, ‘The System’);

define(‘SQ_CONF_SYSTEM_OWNER’, ‘192.168.25.153’);

define(‘SQ_CONF_SYSTEM_ROOT_URLS’, ‘’);

define(‘SQ_CONF_DEFAULT_EMAIL’, ‘matrix-team@squiz.net’);

define(‘SQ_CONF_TECH_EMAIL’, ‘matrix-team@squiz.net’);

define(‘SQ_CONF_MAX_LOGIN_ATTEMPTS’, 3);

define(‘SQ_CONF_REFRESH_INTERVAL’, 120);

define(‘SQ_CONF_LOCK_LENGTH’, 600);

define(‘SQ_CONF_LOG_FILE’, ‘’);

define(‘SQ_CONF_LOG_ERRORS’, true);

ini_set(‘log_errors’, ‘1’);

define(‘SQ_CONF_ERRORS_HIDE_FRONTEND’, false);

define(‘SQ_CONF_DEFAULT_FRONTEND_LANGUAGE’, ‘en’);

define(‘SQ_CONF_DEFAULT_BACKEND_LOCALE’, ‘en_AU’);

define(‘SQ_CONF_DEFAULT_CHARACTER_SET’, ‘iso-8859-1’);

define(‘SQ_CONF_ALLOW_IP_CHANGE’, ‘0’);

define(‘SQ_CONF_ALLOW_HTTP_LOGIN’, ‘0’);

define(‘SQ_CONF_COMMIT_BUTTON_TEXT’, ‘Commit’);

define(‘SQ_CONF_LOG_EXTENSION’, ‘.log’);

define(‘SQ_CONF_LOG_FILE_SYSTEM’, ‘system’);

define(‘SQ_CONF_LOG_FILE_ERROR’, ‘error’);

ini_set(‘error_log’,  SQ_LOG_PATH.’/’.SQ_CONF_LOG_FILE_ERROR.SQ_CONF_LOG_EXTENSION);

define(‘SQ_CONF_SESSION_GC_MAXLIFETIME’, 604800);

ini_set(‘session.gc_maxlifetime’, 604800);

define(‘SQ_CONF_EDITING_TIME’, 3600);

?>



Thank you.

[right][post=“7280”]<{POST_SNAPBACK}>[/post][/right][/quote]



Its ok i can see the problem, i rushed the mod of the URL and put it in the wrong place. sorry to trouble everyone.



Thank you to everyone that helped, i am very impressed with the support!

This is working on RHEL3.