Bonjour,

J'ai une erreur au moment où je clique pour lancer une action
Code x : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
An error occurred
Page not found
Exception information:

Message: Invalid controller specified (TicketAdslSdsl)
Stack trace:

#0 /var/www/ticket_incident/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#1 /var/www/ticket_incident/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()
#2 /var/www/ticket_incident/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap->run()
#3 /var/www/ticket_incident/public/index.php(28): Zend_Application->run()
#4 {main}  

Request Parameters:

array (
  'controller' => 'TicketAdslSdsl',
  'action' => 'add',
  'module' => 'default',
)

voici mon index.php
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
<?php
 
 
 
// Define path to application directory
 
defined('APPLICATION_PATH')
 
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
 
 
 
// Define application environment
 
defined('APPLICATION_ENV')
 
    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
 
 
 
// Ensure library/ is on include_path
 
set_include_path(implode(PATH_SEPARATOR, array(
 
    realpath(APPLICATION_PATH . '/../library'),
 
    realpath(APPLICATION_PATH . '/models'),
 
    get_include_path(),
 
)));
 
 
 
/** Zend_Application */
 
require_once 'Zend/Application.php';
 
 
 
// Create application, bootstrap, and run
 
$application = new Zend_Application(
 
    APPLICATION_ENV,
 
    APPLICATION_PATH . '/configs/application.ini'
 
);
 
 
 
$application->bootstrap()
 
            ->run();
quelqu'un a une idée et merci d'avance