Kohana_404_Exception [ Page Not Found ] --- (Issue Adding Photos)

macleem
macleem's picture

Joined: 2007-06-29
Posts: 7
Posted: Tue, 2011-02-22 14:42

When I select the "Add photos" link from within the desired album, nothing happens. In order for me to get the link to work, I have to right-click on the link and select "Open in a new window". It then opens in a new window with an error

Kohana_404_Exception [ Page Not Found ]:
The page you requested, flash_uploader/app/2695, could not be found.

Platform information

Quote:
Host name: voyager.acenet-inc.net
Operating system: Linux 2.6.18-194.32.1.el5
Apache: Unknown
PHP: 5.2.13
MySQL: 5.0.91-community
Server load: 4.28 4.64 4.26
Graphics toolkit: gd

Gallery stats

Quote:
Version: 3.0 (Santa Fe)
Albums: 57
Photos: 2657

1. SYSPATH/libraries/Kohana_404_Exception.php[ 42 ]

Quote:
37 * @throws Kohana_404_Exception
38 * @return void
39 */
40 public static function trigger($page = NULL)
41 {
42 throw new Kohana_404_Exception($page);
43 }
44
45 /**
46 * Sends 404 headers, to emulate server behavior.
47 *

2. SYSPATH/core/Event.php[ 208 ] » Kohana_404_Exception_Core::trigger( arguments )

Quote:
page
NULL
203 Event::$data =& $data;
204 $callbacks = Event::get($name);
205
206 foreach ($callbacks as $callback)
207 {
208 call_user_func_array($callback, array(&$data));
209 }
210
211 // Do this to prevent data from getting 'stuck'
212 $clear_data = '';
213 Event::$data =& $clear_data;

3. SYSPATH/libraries/Router.php[ 165 ] » Event_Core::run( arguments )

Quote:
160 Event::run('system.post_routing');
161
162 if (Router::$controller === NULL)
163 {
164 // No controller was found, so no page can be rendered
165 Event::run('system.404');
166 }
167 }
168
169 /**
170 * Attempts to determine the current URI using CLI, GET, PATH_INFO, ORIG_PATH_INFO, or PHP_SELF.

4. SYSPATH/core/Event.php[ 208 ] » Router_Core::setup( arguments )

Quote:
203 Event::$data =& $data;
204 $callbacks = Event::get($name);
205
206 foreach ($callbacks as $callback)
207 {
208 call_user_func_array($callback, array(&$data));
209 }
210
211 // Do this to prevent data from getting 'stuck'
212 $clear_data = '';
213 Event::$data =& $clear_data;

5. APPPATH/Bootstrap.php[ 61 ] » Event_Core::run( arguments )

Quote:
56
57// Prepare the system
58Event::run('system.ready');
59
60// Determine routing
61Event::run('system.routing');
62
63// End system_initialization
64Benchmark::stop(SYSTEM_BENCHMARK.'_system_initialization');
65
66// Make the magic happen!

6. DOCROOT/index.php[ 97 ] » require( arguments )

Quote:
92if (file_exists("local.php")) {
93 include("local.php");
94}
95
96// Initialize.
97require APPPATH . "Bootstrap" . EXT;