Installing Etomite I got :
Checking PHP version: OK!
Checking if sessions are properly configured:
Notice: Undefined index: session_test in c:\programmi\easyphp\www\etomite\install\newinstallstart.php on line 67
Failed!
Please which config file I have to change ?
Installation Problem Form A Etomite Newbie
Started by edivad, Apr 15 2005 11:01 AM
6 replies to this topic
#1
Posted 15 April 2005 - 11:01 AM
#2 Guest_TScafa_*
Posted 15 April 2005 - 11:42 AM
edivad, on Apr 15 2005, 01:01 PM, said:
Installing Etomite I got :
Checking PHP version: OK!
Checking if sessions are properly configured:
Notice: Undefined index: session_test in c:\programmi\easyphp\www\etomite\install\newinstallstart.php on line 67
Failed!
Please which config file I have to change ?
Checking PHP version: OK!
Checking if sessions are properly configured:
Notice: Undefined index: session_test in c:\programmi\easyphp\www\etomite\install\newinstallstart.php on line 67
Failed!
Please which config file I have to change ?
SESSION['session_test'] in line 67 of the file newInstallStart.php in the install directory returns the error.
Look at the php.ini and proof the settings of the session vars.
My settings are:
[Session]
; Handler used to store/retrieve data.
session.save_handler = files
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
session.save_path= ".;C:\xampp\tmp"
; Whether to use cookies.
session.use_cookies = 1
; This option enables administrators to make their users invulnerable to
; attacks which involve passing session ids in URLs; defaults to 0.
; session.use_only_cookies = 1
; Name of the session (used as cookie name).
session.name = PHPSESSID
; Initialize session on request startup.
session.auto_start = 0
; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0
; The path for which the cookie is valid.
session.cookie_path = /
; The domain for which the cookie is valid.
session.cookie_domain =
; Handler used to serialize data. php is the standard serializer of PHP.
session.serialize_handler = php
; Define the probability that the 'garbage collection' process is started
; on every session initialization.
; The probability is calculated by using gc_probability/gc_dividend,
; e.g. 1/100 means 1%.
session.gc_probability = 1
session.gc_dividend = 1000
; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440
; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope, albeit register_globals
; is disabled. PHP 4.3 and later will warn you, if this feature is used.
; You can disable the feature and the warning seperately. At this time,
; the warning is only displayed, if bug_compat_42 is enabled.
session.bug_compat_42 = 0
session.bug_compat_warn = 1
; Check HTTP Referer to invalidate externally stored URLs containing ids.
; HTTP_REFERER has to contain this substring for the session to be
; considered as valid.
session.referer_check =
; How many bytes to read from the file.
session.entropy_length = 0
; Specified here to create the session id.
session.entropy_file =
;session.entropy_length = 16
;session.entropy_file = /dev/urandom
; Set to {nocache,private,public,} to determine HTTP caching aspects.
; or leave this empty to avoid sending anti-caching headers.
session.cache_limiter = nocache
; Document expires after n minutes.
session.cache_expire = 180
; trans sid support is disabled by default.
; Use of trans sid may risk your users security.
; Use this option with caution.
; - User may send URL contains active session ID
; to other person via. email/irc/etc.
; - URL that contains active session ID may be stored
; in publically accessible computer.
; - User may access your site with the same session ID
; always using URL stored in browser's history or bookmarks.
session.use_trans_sid = 0
; The URL rewriter will look for URLs in a defined set of HTML tags.
; form/fieldset are special; if you include them here, the rewriter will
; add a hidden <input> field with the info which is otherwise appended
; to URLs. If you want XHTML conformity, remove the form entry.
; Note that all valid entries require a "=", even if no value follows.
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
; Select a hash function
; 0: MD5 (128 bits)
; 1: SHA-1 (160 bits)
session.hash_function = 0
; Define how many bits are stored in each character when converting
; the binary hash data to something readable.
;
; 4 bits: 0-9, a-f
; 5 bits: 0-9, a-v
; 6 bits: 0-9, a-z, A-Z, "-", ","
session.hash_bits_per_character = 4
; The URL rewriter will look for URLs in a defined set of HTML tags.
; form/fieldset are special; if you include them here, the rewriter will
; add a hidden <input> field with the info which is otherwise appended
; to URLs. If you want XHTML conformity, remove the form entry.
; Note that all valid entries require a "=", even if no value follows.
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
#3
Posted 15 April 2005 - 12:43 PM
I don't know exactly why but now Installation was succesfull ( I didn't change anyrhing )
But now afeter I looked the manager when I trying to launch site I got
« Etomite Parse Error »
Etomite encountered the following error while attempting to parse the requested resource:
« `` is not numeric and may not be passed to makeUrl() »
This Etomite seems to be very powerful but installation and managing it's rather complicated
But now afeter I looked the manager when I trying to launch site I got
« Etomite Parse Error »
Etomite encountered the following error while attempting to parse the requested resource:
« `` is not numeric and may not be passed to makeUrl() »
This Etomite seems to be very powerful but installation and managing it's rather complicated
#4
Posted 15 April 2005 - 12:50 PM
Installation is usually smooth - I only encounter errors when sessions are not configured correctly, or the end user has a weird PHP configuration - have you tried searching the forums for the makeURL problem?
EDIT: Also, make sure once you have installed it, you go into the manager and check over the Etomite Settings, and at least press the save button if everything looks ok.
EDIT: Also, make sure once you have installed it, you go into the manager and check over the Etomite Settings, and at least press the save button if everything looks ok.
#5
Posted 17 September 2010 - 06:02 PM
Does this problem still occur with version 1.1 using PHP5, or is it fixed if the php.ini session config is correct?
( I have the same problem with a new Etomite install on Apache2.2, PHP5 on my development server.)
Regards.
( I have the same problem with a new Etomite install on Apache2.2, PHP5 on my development server.)
Regards.
#6
Posted 18 September 2010 - 02:04 PM
This issue should be resolved considering the age of this topic without additional posts in over 5.5 years...
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users












