Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

Hi,

 

Firstly just want to say. I'm a new user of osCommerce and to the forums, so Hi to everyone.

 

Also I'm very impressed with osCommerce, the flexibility and potential for growth really has kinda shocked me. It's brilliant.

 

I'm a developer but totally microsoft (please don't hit me) so I'm just trying to get my head round php and I've only been at it for a couple of days so I appologise for any silly questions I ask.

 

So to my problem. I have installed osCommerce and a few mods, but right from the off the modules page errored for me. The error I get is

 

Warning: main(/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/languages/english/modules/payment/authorizenet.php): failed to open stream: No such file or directory in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 128

Warning: main(): Failed opening '/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/languages/english/modules/payment/authorizenet.php' for inclusion (include_path='.;c:\php4\pear') in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 128

Warning: main(/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/modules/payment/authorizenet.php): failed to open stream: No such file or directory in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 129

Warning: main(): Failed opening '/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/modules/payment/authorizenet.php' for inclusion (include_path='.;c:\php4\pear') in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 129

 

Now I know that this error is telling me that the files are in the wrong place, or atleast not found. But they are in the required location and you can test it yourself. Unless I'm missing something the path the files need to be in are;

www.knookie.co.uk/includes/modules/payment/authorizenet.php

 

I get these 4 errors repeated for every single module, in either payments/shipping or order total.

 

I would assume that as it's every module then there must be a problem with my admin/includes/configure.php or another base page.

 

Here is the file mentioned (minus my database settings);

  define('HTTP_SERVER', 'http://www.knookie.co.uk'); // eg, http://localhost - should not be empty for productive servers
 define('HTTP_CATALOG_SERVER', 'http://www.knookie.co.uk');
 define('HTTPS_CATALOG_SERVER', '');
 define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', '/nas31ent/domains/k/knookie.co.uk/user/htdocs/'); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/nas31ent/domains/k/knookie.co.uk/user/htdocs/admin/'); // absolute pate required
 define('DIR_WS_CATALOG', '/'); // absolute path required
 define('DIR_FS_CATALOG', '/nas31ent/domains/k/knookie.co.uk/user/htdocs/'); // absolute path required
 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/');

 

As far as I can tell every other area of the system works fine and I've installed a few contributions fine.

 

I'm hosted by Fasthosts standard, basic package, if this helps.

 

Thanks in advance,

Mike

Posted
Hi,

 

Firstly just want to say. I'm a new user of osCommerce and to the forums, so Hi to everyone.

 

Also I'm very impressed with osCommerce, the flexibility and potential for growth really has kinda shocked me. It's brilliant.

 

I'm a developer but totally microsoft (please don't hit me) so I'm just trying to get my head round php and I've only been at it for a couple of days so I appologise for any silly questions I ask.

 

So to my problem. I have installed osCommerce and a few mods, but right from the off the modules page errored for me. The error I get is

 

Warning: main(/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/languages/english/modules/payment/authorizenet.php): failed to open stream: No such file or directory in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 128

Warning: main(): Failed opening '/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/languages/english/modules/payment/authorizenet.php' for inclusion (include_path='.;c:\php4\pear') in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 128

Warning: main(/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/modules/payment/authorizenet.php): failed to open stream: No such file or directory in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 129

Warning: main(): Failed opening '/nas31ent/domains/k/knookie.co.uk/user/htdocs/includes/modules/payment/authorizenet.php' for inclusion (include_path='.;c:\php4\pear') in \\nas31ent\domains\k\knookie.co.uk\user\htdocs\admin\modules.php on line 129

 

Now I know that this error is telling me that the files are in the wrong place, or atleast not found. But they are in the required location and you can test it yourself. Unless I'm missing something the path the files need to be in are;

www.knookie.co.uk/includes/modules/payment/authorizenet.php

 

I get these 4 errors repeated for every single module, in either payments/shipping or order total.

 

I would assume that as it's every module then there must be a problem with my admin/includes/configure.php or another base page.

 

Here is the file mentioned (minus my database settings);

  define('HTTP_SERVER', 'http://www.knookie.co.uk'); // eg, http://localhost - should not be empty for productive servers
 define('HTTP_CATALOG_SERVER', 'http://www.knookie.co.uk');
 define('HTTPS_CATALOG_SERVER', '');
 define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', '/nas31ent/domains/k/knookie.co.uk/user/htdocs/'); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/nas31ent/domains/k/knookie.co.uk/user/htdocs/admin/'); // absolute pate required
 define('DIR_WS_CATALOG', '/'); // absolute path required
 define('DIR_FS_CATALOG', '/nas31ent/domains/k/knookie.co.uk/user/htdocs/'); // absolute path required
 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/');

 

As far as I can tell every other area of the system works fine and I've installed a few contributions fine.

 

I'm hosted by Fasthosts standard, basic package, if this helps.

 

Thanks in advance,

Mike

 

 

Mike

 

I am having the same problems let me know if you solve it an I will do the same....

 

 

James

Posted
Mike

 

I am having the same problems let me know if you solve it an I will do the same....

James

 

Will do James, no luck yet but I'll keep trying and googling.

 

Let me know if you solve it too :)

Posted (edited)
I would assume that as it's every module then there must be a problem with my admin/includes/configure.php or another base page.

You have two configure pages - one in admin (as posted above) and one for the front-end /includes/configure.php. I'd check out the frontend one, it's more likely to be the culprit.

 

all the best, Terra

 

PS: And as far as I know, Fasthosts is a big problem with osCommerce, I think especially regarding SSL. Good luck - you'll need it.

Edited by Terra

My code for combining PayPal IPN with ** QTPro 4.25 ** osC Affiliate ** CCGV(trad)

and how to solve the invoice already paid error

General info: Allow customer to delete order comment ** FTP Programs & Text Editors ** Amending order email **

Posted
Check out Vger's post regarding Fasthosts:

http://www.oscommerce.com/forums/index.php?s=&...st&p=873497

 

Terra

 

Thanks, I given that a read. I think I'm going to move hosting companies while I'm still in the 30 day money back guarantee. I've already got issues with fasthosts security policy and using EasyPopulate.

 

I understand there is a policy about restricting discussions about hosting companies in the forums. Is it against the rules to simply say who you're using? Like I have done above. If its not can you let me know who you use, please.

 

Thanks,

Mike

Posted (edited)
Thanks, I given that a read. I think I'm going to move hosting companies while I'm still in the 30 day money back guarantee. I've already got issues with fasthosts security policy and using EasyPopulate.

 

I understand there is a policy about restricting discussions about hosting companies in the forums. Is it against the rules to simply say who you're using? Like I have done above. If its not can you let me know who you use, please.

 

Thanks,

Mike

 

Never mind I've found one, googled osCommerce and Hosting.

Edited by knookie.co.uk
Posted
Mike

 

I am having the same problems let me know if you solve it an I will do the same....

James

 

James, I've solved my problems. Went with a different hosting company. Got everything setup within 30 mins or so. Couple of permission issues, but nothing too complicated. If you want to know who I went with send me a personal message.

 

Cheers,

Mike

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...