osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

Warnings on admin side of osCommerce

This is a discussion on Warnings on admin side of osCommerce within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; Hi All, I am getting these 2 warnings. With my all efforts, still i am not able to fix it. ...


Go Back   osCommerce and osCMax shopping cart software forums > osCommerce 2.2 Forums > osCommerce 2.2 Modification Help

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Reply

 

LinkBack Thread Tools
  #1  
Old 04-10-2008, 11:42 PM
Lurker
 
Join Date: Apr 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
shahzad@balianti.com is on a distinguished road
Default Warnings on admin side of osCommerce

Hi All,

I am getting these 2 warnings. With my all efforts, still i am not able to fix it. Can any buddy help me for this problem

Warning: include(includes/languages/english/) [function.include]: failed to open stream: No such file or directory in /usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/admin/includes/application_top.php on line 133

Warning: include() [function.include]: Failed opening 'includes/languages/english/' for inclusion (include_path='.:') in /usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/admin/includes/application_top.php on line 133


Front end of website is working fine
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 04-11-2008, 07:11 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,243
Thanks: 66
Thanked 294 Times in 280 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default Re: Warnings on admin side of OsCommerc

includes/languages/english/ is missing the filename it is trying to open. There should be a file name appended to that path. Since there isn't osC is trying to include a directory, which of course will fail. Your admin configure.php file is not correct.
__________________
Michael Sasek
osCMax Developer


osCMax Templates - Hundreds of premium quality templates. New designs every month!

xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience


osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 04-16-2008, 02:26 AM
Lurker
 
Join Date: Apr 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
shahzad@balianti.com is on a distinguished road
Default Re: Warnings on admin side of OsCommerc

Can you please help me to find what am i doing wrong
PHP Code:
  define('HTTP_SERVER''http://www.imwiththedog.com/');
  
define('HTTP_CATALOG_SERVER''http://www.imwiththedog.com/');
  
define('HTTPS_CATALOG_SERVER''http://www.imwiththedog.com/');
  
define('ENABLE_SSL_CATALOG''false');
  
define('DIR_FS_DOCUMENT_ROOT''http://www.imwiththedog.com/catalog/');
  
define('DIR_WS_ADMIN''/usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/admin/');
  
define('DIR_FS_ADMIN''http://www.imwiththedog.com/catalog/admin/');
  
define('DIR_WS_CATALOG''/catalog/');
  
define('DIR_FS_CATALOG''http://www.imwiththedog.com/catalog/');
  
define('DIR_WS_IMAGES''images/');
  
define('DIR_WS_ICONS'DIR_WS_IMAGES 'icons/');
  
define('DIR_WS_CATALOG_IMAGES'DIR_WS_CATALOG 'images/');
  
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_CATALOG_LANGUAGES'DIR_WS_CATALOG 'includes/languages/');
  
define('DIR_FS_CATALOG_LANGUAGES'DIR_FS_CATALOG 'includes/languages/');
  
define('DIR_FS_CATALOG_IMAGES'DIR_FS_CATALOG 'images/');
  
define('DIR_FS_CATALOG_MODULES'DIR_FS_CATALOG 'includes/modules/');
  
define('DIR_FS_BACKUP'DIR_FS_ADMIN 'backups/'); 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 04-16-2008, 05:19 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,243
Thanks: 66
Thanked 294 Times in 280 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default Re: Warnings on admin side of osCommerce

All the paths are completely wrong. An absolute path is not a url. There should never be an http:// in an absolute path. It should look like this:

PHP Code:
  define('HTTP_SERVER''http://www.imwiththedog.com/');
  
define('HTTP_CATALOG_SERVER''http://www.imwiththedog.com/');
  
define('HTTPS_CATALOG_SERVER''http://www.imwiththedog.com/');
  
define('ENABLE_SSL_CATALOG''false');
  
define('DIR_FS_DOCUMENT_ROOT''/usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/');
  
define('DIR_WS_ADMIN''/imwiththedog.com/httpdocs/catalog/admin/');
  
define('DIR_FS_ADMIN''/usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/admin/');
  
define('DIR_WS_CATALOG''/imwiththedog.com/httpdocs/catalog/');
  
define('DIR_FS_CATALOG''/usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/');
  
define('DIR_WS_IMAGES''images/');
  
define('DIR_WS_ICONS'DIR_WS_IMAGES 'icons/');
  
define('DIR_WS_CATALOG_IMAGES'DIR_WS_CATALOG 'images/');
  
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_CATALOG_LANGUAGES'DIR_WS_CATALOG 'includes/languages/');
  
define('DIR_FS_CATALOG_LANGUAGES'DIR_FS_CATALOG 'includes/languages/');
  
define('DIR_FS_CATALOG_IMAGES'DIR_FS_CATALOG 'images/');
  
define('DIR_FS_CATALOG_MODULES'DIR_FS_CATALOG 'includes/modules/');
  
define('DIR_FS_BACKUP'DIR_FS_ADMIN 'backups/'); 
__________________
Michael Sasek
osCMax Developer


osCMax Templates - Hundreds of premium quality templates. New designs every month!

xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience


osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 04-16-2008, 05:55 AM
Lurker
 
Join Date: Apr 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
shahzad@balianti.com is on a distinguished road
Default Re: Warnings on admin side of OsCommerc

Unfortunately it is still not working and I am getting same errors

Warning: include(includes/languages/english/) [AABox Web Hosting | Web Hosting for the 21st centrury]: failed to open stream: No such file or directory in /usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/admin/includes/application_top.php on line 133

Warning: include() [AABox Web Hosting | Web Hosting for the 21st centrury]: Failed opening 'includes/languages/english/' for inclusion (include_path='.:') in /usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/admin/includes/application_top.php on line 133
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 04-16-2008, 07:58 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,243
Thanks: 66
Thanked 294 Times in 280 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default Re: Warnings on admin side of OsCommerc

Based on how every setting was incorrect, I am almost certain that the path in your configure.php file that you provided is wrong too.

This is probably incorrect:
Code:
/usr/local/www/vhosts/imwiththedog.com/httpdocs/catalog/admin/


If you dont know how to determine the correct path to your files, ask your host what it is.

__________________
Michael Sasek
osCMax Developer


osCMax Templates - Hundreds of premium quality templates. New designs every month!

xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience


osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 04-17-2008, 01:44 AM
Lurker
 
Join Date: Apr 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
shahzad@balianti.com is on a distinguished road
Default Re: Warnings on admin side of osCommerce

Hi,

I am really grateful for your co-operation. Many many thanks for your help. I print the server info and looks like this

PHP Code:
Array ( [UNIQUE_ID] => t0BWq87hUR8AAJgdrLgAAAAI [nokeepalive] => [ssl-unclean-shutdown] => [downgrade-1_0] => [force-response-1_0] => [MvCONFIG_DIR_MIVA] => /usr/local/www/vhosts/imwiththedog.com/httpdocs [MvCONFIG_DIR_DATA] => /usr/local/www/vhosts/imwiththedog.com/mivadata [MvCONFIG_DIR_CA] => /usr/local/share/miva/certs [MvCONFIG_LIBRARY] => /usr/local/lib/miva/config/env.so [MvCONFIG_DIR_BUILTIN] => /usr/local/lib/miva/builtins [MvCONFIG_DATABASE_MIVASQL] => /usr/local/lib/miva/databases/mivasql.so [MvCONFIG_SSL_OPENSSL] => /usr/local/lib/miva/ssl/libssl_psa.so [MvCONFIG_SSL_CRYPTO] => /usr/local/lib/miva/ssl/libcrypto_psa.so [MvCONFIG_COMMERCE_AuthorizeNet] => /usr/local/lib/miva/commerce/authnet.so [MvCONFIG_COMMERCE_CyberCash] => /usr/local/lib/miva/commerce/cybercash.so [MvCONFIG_COMMERCE_LinkPoint] => /usr/local/lib/miva/commerce/linkpoint.so [MvCONFIG_COMMERCE_ICS2] => /usr/local/lib/miva/commerce/ics2.so [MvCONFIG_FLAGS_SECURITY] => 23 [MvCONFIG_DIR_USER] => ./ [HTTP_ACCEPT] => image/gifimage/x-xbitmapimage/jpegimage/pjpegapplication/vnd.ms-excelapplication/vnd.ms-powerpointapplication/mswordapplication/x-shockwave-flash, *
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Show Model Picture (PopUp) Admin side v 1.00 michael_s New osCommerce Contributions 0 02-12-2008 07:14 AM
Show Model Picture (PopUp) Admin side v 1.00 michael_s New osCommerce Contributions 0 02-11-2008 05:30 PM
Modifying Menu System on Admin Side cferge osCommerce 2.2 Modification Help 0 04-07-2005 02:31 PM
how can you list product options side by side Anonymous osCMax v1.7 Discussion 0 09-20-2003 07:16 PM
Please help: Warnings... laonux osCommerce 2.2 Installation Help 3 02-23-2003 09:10 AM


All times are GMT -8. The time now is 06:53 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
Copyright 2008 osCMax