Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Just moved to a new server... now having problems


cplus

Recommended Posts

Posted

Ok, so I just moved our company's website to a new webserver with GoDaddy. Everything seemed to be working fine BUT when I go log in I run into a problem. It looks like it's anytime I try and access an SSL page, such as login, account info, checkout, ect.

 

What it is doing is adding an additional coinsplus.com to the URL. Here is an example:

 

https://coinsplus.com/coinsplus.com/catalog...2vdcqr8rk3fgvh3

 

Now, if I take the first coinsplus.com out of the URL it goes just fine. What is causing this? Here is my config file:

<?php
 define('HTTP_SERVER', 'http:');
 define('HTTPS_SERVER', 'https:');
 define('ENABLE_SSL', true);
 define('HTTP_COOKIE_DOMAIN', 'coinsplus.com');
 define('HTTPS_COOKIE_DOMAIN', 'coinsplus.com');
 define('HTTP_COOKIE_PATH', 'oscommerce');
 define('HTTPS_COOKIE_PATH', 'oscommerce');
 define('DIR_WS_HTTP_CATALOG', '/coinsplus.com/catalog/');
 define('DIR_WS_HTTPS_CATALOG', '/coinsplus.com/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', '/usr/www/sites/coinsplus.com/www/catalog/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Any help would be awesome! Oh and here is the link to the catalog portion of the site so feel free to mess around with it. Also don't actually order anything. It WILL charge your CC.

 

Josh

COINSPlus

Posted

Anything that is under the SSL part of the website, IE begins HTTPS://, is having errors. It looks like the CSS styles are not being transfered either for some reason on the SSL side.

 

Josh

Posted

Change these

 

define('DIR_WS_HTTP_CATALOG', '/coinsplus.com/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/coinsplus.com/catalog/');

 

To these

 

define('DIR_WS_HTTP_CATALOG', '/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/catalog/');

Posted
Change these

 

define('DIR_WS_HTTP_CATALOG', '/coinsplus.com/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/coinsplus.com/catalog/');

 

To these

 

define('DIR_WS_HTTP_CATALOG', '/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/catalog/');

 

Ok, I just tried this and now on some pages, once again the SSL pages, it's doing the double coinsplus.com in the URL.

 

HOWEVER, if i am using firefox everything works fine. I can go to any page regardless if it's an SSL page or not. Why is this??????

 

Josh

Posted

Try these defines:

 

define('HTTP_SERVER', 'http://www.coinsplus.com');
define('HTTPS_SERVER', 'https://www.coinsplus.com');
define('ENABLE_SSL', true);
define('HTTP_COOKIE_DOMAIN', '.coinsplus.com');
define('HTTPS_COOKIE_DOMAIN', '.coinsplus.com');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

GREAT!!!! Thank you! Why did it do that to me in the first place?

 

Now can you help me with the admin side of things? I am getting a "Error: Catalog images directory does not exist: /usr/www/sites/coinsplus.com/www/catalog/images/"

 

Here is the config code from catalog/admin/includes folder:

<?php
 define('HTTP_SERVER', 'http://coinsplus.com');
 define('HTTP_CATALOG_SERVER', 'http://coinsplus.com');
 define('HTTPS_CATALOG_SERVER', 'https://coinsplus.com');
 define('ENABLE_SSL_CATALOG', 'true');
 define('DIR_FS_DOCUMENT_ROOT', '/usr/www/sites/coinsplus.com/www/catalog/');
 define('DIR_WS_ADMIN', '/catalog/admin/');
 define('DIR_FS_ADMIN', '/usr/www/sites/coinsplus.com/www/catalog/admin/');
 define('DIR_WS_CATALOG', 'catalog/');
 define('DIR_FS_CATALOG', '/usr/www/sites/coinsplus.com/www/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/');

 define('DB_SERVER', 'xxx');
 define('DB_SERVER_USERNAME', 'xxx');
 define('DB_SERVER_PASSWORD', 'xxx');
 define('DB_DATABASE', 'xxxs');
 define('USE_PCONNECT', 'false');
 define('STORE_SESSIONS', 'mysql');
?>

 

Josh

Posted

Try these changes:

 

define('HTTP_SERVER', 'http://www.coinsplus.com');
define('HTTP_CATALOG_SERVER', 'http://www.coinsplus.com');
define('HTTPS_CATALOG_SERVER', 'https://www.coinsplus.com');
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Is this path new to this server, or is this what it was on your old server?

 

/usr/www/sites/coinsplus.com/www

I guess what I'm asking is have you changed the lines that contain that string since the server move, or is what's there the same as it was on the old server?

:unsure:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

should be the same as the old server.

 

Also I just looked at the payment module and there is nothing there. Here is a screenshot of it:

moduleoz3.jpg

 

 

Josh

Posted

I don't have a clue about the payment modules.

 

The reason I ask about the path is you have the warning on your home page about being able to write to the config file, but the path is:

 

/home/content/c/o/i/coinsplus/html/coinsplus/catalog/includes/configure.php

That doesn't look anything like the path you have in the config file.

 

What makes you think it's the same as the old server?

:unsure:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

just figured it would be. The old server was Coinsplus.com and now the new one is Coinsplus.com.

 

We moved from one server to another. Thats it. I updated all the database info. I now locked the config file down also. What else can I do to try and figure this all out?

 

Josh

 

Oh... before on the old server the SSL went through securespike.net/coinsplus.com/catalog. Now it's just coinsplus.com/catalog with the HTTPS in front of it. Would that do anything? Is there any other file or files you want me to post for you to look at? I am sort of new at this whole coding thing and have just been limping around trying to figure stuff out.

Posted

Login to your Admin.

 

Click on "Tools" then "Server Info"

 

On the page that displays, under Apache Environment post what it says to the right of DOCUMENT_ROOT

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

OK.

 

In the admin config file, try these:

 

define('DIR_FS_DOCUMENT_ROOT', '/home/content/c/o/i/coinsplus/html/coinsplus/catalog');
define('DIR_FS_ADMIN', '/home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin');
define('DIR_FS_CATALOG', '/home/content/c/o/i/coinsplus/html/coinsplus/catalog');

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Ok, still not working.

 

Here is the error now:

"Error: Catalog images directory does not exist: /home/content/c/o/i/coinsplus/html/coinsplus/catalogimages/"

 

Here is my config file again:

<?php
 define('HTTP_SERVER', 'http://www.coinsplus.com');
 define('HTTP_CATALOG_SERVER', 'http://www.coinsplus.com');
 define('HTTPS_CATALOG_SERVER', 'https://www.coinsplus.com');
 define('ENABLE_SSL_CATALOG', 'true');
 define('DIR_FS_DOCUMENT_ROOT', '/home/content/c/o/i/coinsplus/html/coinsplus/catalog');
 define('DIR_WS_ADMIN', '/catalog/admin/');
 define('DIR_FS_ADMIN', '/home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin');
 define('DIR_WS_CATALOG', '/catalog/');
 define('DIR_FS_CATALOG', '/home/content/c/o/i/coinsplus/html/coinsplus/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/');

 

 

Josh

Posted

Change this one:

 

define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');

to

 

define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . '/images/');

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Great that works now! Thanks again.

 

Now... on to the payment module problem. Any ideas on that one?

 

josh

Posted

Check them again.

 

We corrected the path, they may show up now.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Ok, I just added a "/" to the beginning of the backups, that wasn't working either, and the module folder path's. Now I get this on the payment module:

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/authorizenet_cc_aim.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/authorizenet_cc_aim.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/authorizenet_cc_sim.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/authorizenet_cc_sim.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/cc.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/cc.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/chronopay.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/chronopay.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/cod.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/cod.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/ipayment_cc.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/ipayment_cc.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/moneyorder.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/moneyorder.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/nochex.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/nochex.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_direct.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_direct.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_express.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_express.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_standard.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_standard.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_uk_direct.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_uk_direct.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_uk_express.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/paypal_uk_express.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/pm2checkout.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/pm2checkout.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/psigate.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/psigate.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/secpay.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/secpay.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/sofortueberweisung_direct.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/sofortueberweisung_direct.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/viaklix.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/viaklix.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/virtualmerchant_cc.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/virtualmerchant_cc.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include(/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/worldpay_junior.php) [function.include]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

Warning: include() [function.include]: Failed opening '/home/content/c/o/i/coinsplus/html/coinsplus/catalogincludes/languages/english/modules/payment/worldpay_junior.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/modules.php on line 128

 

I will look around because I think I remember seeing something like that on the forums already.

 

Josh

Posted

This

 

 define('DIR_WS_INCLUDES', 'includes/');

Change to:

 

 define('DIR_WS_INCLUDES', '/includes/');

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Ok, changed that and it didn't work. Then I cleared my cookies and cache and now I can't get to the backroom at all. Here is my error:

 

 

Warning: require(/includes/functions/compatibility.php) [function.require]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/includes/application_top.php on line 34

 

Fatal error: require() [function.require]: Failed opening required '/includes/functions/compatibility.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/includes/application_top.php on line 34

 

 

Josh

Posted

OK.

 

Change the last one back the way it was, then post your whole admin configure file again.

 

We should have added the slash somewhere else, I think.

:blush:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Just changed it back and I am still getting those errors:

 

Warning: require(/includes/functions/compatibility.php) [function.require]: failed to open stream: No such file or directory in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/includes/application_top.php on line 34

 

Fatal error: require() [function.require]: Failed opening required '/includes/functions/compatibility.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin/includes/application_top.php on line 34

 

Here is the config file:

<?php
 define('HTTP_SERVER', 'http://www.coinsplus.com');
 define('HTTP_CATALOG_SERVER', 'http://www.coinsplus.com');
 define('HTTPS_CATALOG_SERVER', 'https://www.coinsplus.com');
 define('ENABLE_SSL_CATALOG', 'true');
 define('DIR_FS_DOCUMENT_ROOT', '/home/content/c/o/i/coinsplus/html/coinsplus/catalog');
 define('DIR_WS_ADMIN', '/catalog/admin/');
 define('DIR_FS_ADMIN', '/home/content/c/o/i/coinsplus/html/coinsplus/catalog/admin');
 define('DIR_WS_CATALOG', '/catalog/');
 define('DIR_FS_CATALOG', '/home/content/c/o/i/coinsplus/html/coinsplus/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/');

 

josh

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...