Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
English
Hello,
After installation, I can't login as root : "ERROR : Invalid access attempt".
Do you have any idea to solve it ?
Français
Bonjour,
Après l'installation, j'essaie de m'identifie en root.
L'erreur est la suivante : "ERROR : Invalid access attempt"
Avez-vous une idée pour résoudre ca ?
config
Debian 2.6.26-2-686
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0
MySQL 5.0.51a
parameters.php
<?php
// =======================================================================================
// Automatically generated parameter file
// =======================================================================================
$paramDbType = 'mysql';
$paramDbHost = 'localhost';
$paramDbUser = 'root';
$paramDbPassword = 'xxx';
$paramDbName = 'projectorria';
$paramDbDisplayName = 'xxxx';
$paramDbPrefix = '';
$paramMailSender = '';
$paramMailReplyTo = '';
$paramAdminMail = '';
$paramMailSmtpServer = 'localhost';
$paramMailSmtpPort = '25';
$paramMailSendmailPath = '';
$paramMailTitle = '[Project\'Or RIA] ${item} #${id} moved to status ${status}';
$paramMailMessage = 'The status of ${item} #${id} [${name}] has changed to ${status}';
$paramMailShowDetail = 'true';
$paramDefaultPassword = 'xxxx';
$paramPasswordMinLength = '5';
$lockPassword = 'false';
$paramDefaultLocale = 'fr';
$paramDefaultTimezone = 'Europe/Paris';
$currency = 'â¬';
$currencyPosition = 'after';
$paramFadeLoadingMode = 'true';
$paramRowPerPage = '50';
$paramIconSize = '22';
$defaultTheme = 'blue';
$paramPathSeparator = '/';
$paramAttachementDirectory = '../files/attach/';
$paramAttachementMaxSize = '2097152';
$paramReportTempDirectory = '../files/report/';
$logFile = '../files/logs/projector_${date}.log';
$logLevel = '4';
$paramDebugMode = 'true';
log
2011-04-12 22:08:28 ..... SCRIPT .... 192.168.179.2/projectorria/tool/loginCheck.php
2011-04-12 22:08:28 ===== TRACE ===== NEW CONNECTED USER 'admin'
2011-04-12 22:08:28 ..... SCRIPT .... 192.168.179.2/projectorria/view/main.php
2011-04-12 22:08:28 ===== TRACE ===== 'user' is not an instance of User class. May be a hacking attempt from IP 192.168.179.2
2011-04-12 22:08:28 ===== TRACE ===== IP CLient=192.168.179.2
2011-04-12 22:08:28 ===== TRACE ===== $_REQUEST[PHPSESSID]=6c512133a8af836f30a3272b1564e063
2011-04-12 22:08:28 ** ERROR ** EXCEPTION **
2011-04-12 22:08:28 ** ERROR ** on file '/var/www/projectorria/tool/projector.php' at line (91)
2011-04-12 22:08:28 ** ERROR ** cause = Invalid access attempt
2011-04-12 22:08:28 ** ERROR ***** => #0 /var/www/projectorria/view/main.php (10) -> require_once()
Version Project'Or RIA
1.5.5 build 0031
Hi,
Check the register_globals parameter in your php configuration (php.ini).
It must be off.
you can have a look at : http://projectorria.toolware.fr/forum/viewtopic.php?id=88
Regards.
Babynus.
Hi,
Thx for your response.
In php.ini : register_globals parameter = Off.
I've tried with ".htaccess".
I've the same problem 🙁
UnHAmI.
In the file "view/main.php", I wrote
var_dump($_SESSION);
before
require_once "../tool/projector.php";
The result is :
array(11) { ["lang"]=> string(2) "en" ["user"]=> object(__PHP_Incomplete_Class)#1 (21) { ["__PHP_Incomplete_Class_Name"]=> string(4) "User" ["_col_1_2_Description"]=> NULL ["id"]=> string(1) "1" ["name"]=> string(5) "admin" ["email"]=> NULL ["description"]=> NULL ["password"]=> string(32) "21232f297a57a5a743894a0e4a801fc3" ["_spe_buttonSendMail"]=> NULL ["idProfile"]=> string(1) "1" ["isResource"]=> string(1) "0" ["resourceName"]=> NULL ["isContact"]=> string(1) "0" ["locked"]=> string(1) "0" ["idle"]=> string(1) "0" ["_col_2_2"]=> NULL ["_arrayFilters"]=> NULL ["_accessControlRights:private"]=> NULL ["_accessControlVisibility"]=> NULL ["_affectedProjects:private"]=> NULL ["_visibleProjects:private"]=> NULL ["_hierarchicalViewOfVisibleProjects:private"]=> NULL } ["appRoot"]=> string(13) "/projectorria" ["destinationWidth"]=> string(3) "847" ["theme"]=> string(4) "blue" ["currentLocale"]=> string(2) "en" ["project"]=> string(1) "*" ["displayAttachement"]=> string(10) "YES_CLOSED" ["displayNote"]=> string(10) "YES_CLOSED" ["displayHistory"]=> string(10) "YES_CLOSED" ["refreshUpdates"]=> string(3) "YES" } ERROR : Invalid access attempt
=> __PHP_Incomplete_Class_Name
=> has anyone had the problem ?
=> solution
in php.ini
session.auto_start = 0