Zona6 Posted September 30, 2006 Posted September 30, 2006 Hello, I would like to say thanks in advance to anyone helping me! I?m not beeing able to open my shop - www.zona6.org/webshop does anyone knows what is the problem in line 29? The problem: Warning: main(includes/configure.php) [function.main]: failed to open stream: No such file or directory in /home/zona6/public_html/loja/includes/application_top.php on line 29 Warning: main(includes/configure.php) [function.main]: failed to open stream: No such file or directory in /home/zona6/public_html/loja/includes/application_top.php on line 29 Fatal error: main() [function.require]: Failed opening required 'includes/configure.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/zona6/public_html/loja/includes/application_top.php on line 29 Thanks!
mtechama Posted September 30, 2006 Posted September 30, 2006 Hello, I would like to say thanks in advance to anyone helping me! I?m not beeing able to open my shop - www.zona6.org/webshop does anyone knows what is the problem in line 29? The problem: Warning: main(includes/configure.php) [function.main]: failed to open stream: No such file or directory in /home/zona6/public_html/loja/includes/application_top.php on line 29 Warning: main(includes/configure.php) [function.main]: failed to open stream: No such file or directory in /home/zona6/public_html/loja/includes/application_top.php on line 29 Fatal error: main() [function.require]: Failed opening required 'includes/configure.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/zona6/public_html/loja/includes/application_top.php on line 29 Thanks! you need to make sure that your (catalog)/includes/configure.php is configured right Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP!
Zona6 Posted September 30, 2006 Author Posted September 30, 2006 My Permissios code look like this, does anybody knows waht i have to do to access www.zona6.org/webshop? cause i don't understand much about PHP... Thanks! <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://zona6.org'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'zona6.org'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/loja/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/loja/'); define('DIR_WS_HTTPS_CATALOG', ''); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/zona6/public_html/loja'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'zona6_osc1'); define('DB_SERVER_PASSWORD', 'rsJ59OwZdpbF'); define('DB_DATABASE', 'zona6_osc1'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?>
Chris Smith Posted September 30, 2006 Posted September 30, 2006 My Permissios code look like this, does anybody knows waht i have to do to access www.zona6.org/webshop? cause i don't understand much about PHP... Thanks! <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://zona6.org'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'zona6.org'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/loja/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/loja/'); define('DIR_WS_HTTPS_CATALOG', ''); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/zona6/public_html/loja'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', ''); define('DB_SERVER_PASSWORD', ''); define('DB_DATABASE', ''); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', ''); define('DB_SERVER_PASSWORD', ''); define('DB_DATABASE', ''); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' Mate, go and quickly change your username and password as you have just posted it to everyone!!!!
Zona6 Posted September 30, 2006 Author Posted September 30, 2006 thanks for the tip, but i did not get it...where's my password and username? How can i edit the file to be viewable?
Chris Smith Posted September 30, 2006 Posted September 30, 2006 Mate, go and quickly change your username and password as you have just posted it to everyone!!!! Also change LOJA as we also know that path aswell!
Chris Smith Posted September 30, 2006 Posted September 30, 2006 thanks for the tip, but i did not get it...where's my password and username? How can i edit the file to be viewable? define('DB_SERVER_USERNAME', 'zona6_osc1'); define('DB_SERVER_PASSWORD', 'rsJ59OwZdpbF');
Chris Smith Posted September 30, 2006 Posted September 30, 2006 This is not an answer to your question!!!! this is much more important.
Zona6 Posted September 30, 2006 Author Posted September 30, 2006 OK..i was trying to put the store better, but someone remembered to fu** up my shop...now i can?t do nothing... ADMINISTRATOR PLEASE REMOVE THIS STUPID POST I DID... what a day....
pyramids Posted October 1, 2006 Posted October 1, 2006 Zona6, I suggest you make sure that you: Change the password and username in the database (if you didn't yet)? I noticed that your admin folder is not password protected. This should be done ASAP PM me if you need help.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.