Zen Cart Logo
Forums / General Questions / Please Help, Urgent!

Please Help, Urgent!

Locked

Views: 878

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
26 Sep 2009, 21:42
#1
dooblehorn avatar

dooblehorn

New Zenner

Join Date:
Jul 2008
Posts:
2
Plugin Contributions:
0

Please Help, Urgent!

I'm getting the following 3 errors on main page of my site:

Warning: main(DIR_WS_INCLUDESapplication_bottom.php): failed to open stream: No such file or directory in /home/content/c/a/r/cardsbymartin/html/index.php on line 12

Warning: main(DIR_WS_INCLUDESapplication_bottom.php): failed to open stream: No such file or directory in /home/content/c/a/r/cardsbymartin/html/index.php on line 12

Fatal error: main(): Failed opening required 'DIR_WS_INCLUDESapplication_bottom.php' (include_path='.:/usr/local/lib/php') in /home/content/c/a/r/cardsbymartin/html/index.php on line 12

So it does not like line 12 of the index.php, for some reason...meanwhile the site does not work...Any ideas???
Thanks in advance for any suggestions!

Index.php

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body> <?php /** * Load general code run before page closes */ ?><?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> tag in the on_load="" parameter. * Looking in "/includes/modules/pages" for files named "on_load_*.js" */ $directory_array = $template->get_template_part(DIR_WS_MODULES . 'pages/' . $current_page_base, '/^on_load_/', '.js'); foreach ($directory_array as $value) { $onload_file = DIR_WS_MODULES . 'pages/' . $current_page_base . '/' . $value; $read_contents=''; $lines = @file($onload_file); foreach($lines as $line) { $read_contents .= $line; } $za_onload_array[] = $read_contents; } /** * now read "includes/templates/TEMPLATE/jscript/on_load/on_load_*.js", which would be site-wide settings */ $directory_array=array(); $tpl_dir=$template->get_template_dir('.js', DIR_WS_TEMPLATE, 'jscript/on_load', 'jscript/on_load_'); $directory_array = $template->get_template_part($tpl_dir ,'/^on_load_/', '.js'); foreach ($directory_array as $value) { $onload_file = $tpl_dir . '/' . $value; $read_contents=''; $lines = @file($onload_file); foreach($lines as $line) { $read_contents .= $line; } $za_onload_array[] = $read_contents; } // set $zc_first_field for backwards compatibility with previous version usage of this var if (isset($zc_first_field) && $zc_first_field !='') $za_onload_array[] = $zc_first_field; $zv_onload = ""; if (isset($za_onload_array) && count($za_onload_array)>0) $zv_onload=implode(';',$za_onload_array); //ensure we have just one ';' between each, and at the end $zv_onload = str_replace(';;',';',$zv_onload.';'); // ensure that a blank list is truly blank and thus ignored. if (trim($zv_onload) == ';') $zv_onload=''; /** * Define the template that will govern the overall page layout, can be done on a page by page basis * or using a default template. The default template installed will be a standard 3 column layout. This * template also loads the page body code based on the variable $body_code. */ require($template->get_template_dir('tpl_main_page.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_main_page.php'); ?> <br> </body> </html>
27 Sep 2009, 02:31
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Please Help, Urgent!

Warning: main(DIR_WS_INCLUDESapplication_bottom.php): failed to open stream: No such file or directory in /home/content/c/a/r/cardsbymartin/html/index.php on line 12

It only errors in that file on that line but is spawned by the lack of or a corrupt application_bottom.php

27 Sep 2009, 04:16
#3
tino_schlegel avatar

tino_schlegel

Totally Zenned

Join Date:
Nov 2007
Location:
Melbourne, Australia
Posts:
532
Plugin Contributions:
0

Re: Please Help, Urgent!

It looks like there is a slash in DIR_WS_INCLUDES/application_bottom.php missing. Check your configure.php files for a trailing slash in the zencart folder definition.

27 Sep 2009, 06:46
#4
dooblehorn avatar

dooblehorn

New Zenner

Join Date:
Jul 2008
Posts:
2
Plugin Contributions:
0

Re: Please Help, Urgent!

Thanks, Tino and Kobra, I'll check it out!