InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What We Do If The Requested Url /account.php Was Not Found On This Server? |
|
Answer» This issue is most commonly caused by incorrectly configured SSL settings for your OS Commerce. If you don not have private SSL and your OS Commerce is enabled you will receive this error. Enabling/disabling SSL in osCommerce is quite straightforward. You have to edit /includes/configure.php to disable SSL and the CODE takes CARE of the rest. This is an example of SSL enabled configuration: // Define the webserver and path PARAMETERS define('HTTP_SERVER', 'HTTP://www.yourdomain.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://yourdomain.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.yourdomain.com'); This issue is most commonly caused by incorrectly configured SSL settings for your OS Commerce. If you don not have private SSL and your OS Commerce is enabled you will receive this error. Enabling/disabling SSL in osCommerce is quite straightforward. You have to edit /includes/configure.php to disable SSL and the code takes care of the rest. This is an example of SSL enabled configuration: // Define the webserver and path parameters define('HTTP_SERVER', 'http://www.yourdomain.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://yourdomain.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.yourdomain.com'); |
|
| 2. |
How To Install A Different Template To An Existing Oscommerce? |
|
Answer» osCommerce does not support a template installer option, as Joomla CMS or phpBB forum do, for INSTANCE. Installing a NEW template for osCommerce is actually a new installation of the osCommerce files. The installation of the template will not affect your database which MEANS you will not lose your DATA and products. osCommerce does not support a template installer option, as Joomla CMS or phpBB forum do, for instance. Installing a new template for osCommerce is actually a new installation of the osCommerce files. The installation of the template will not affect your database which means you will not lose your data and products. |
|
| 3. |
Zencart / Oscommerce / Creloaded Shows Security Warnings.? |
|
Answer» After a ZenCart / OSCOMMERCE / CRELoaded installation you may RECEIVE the following warning: "Warning: I am able to write to the configuration file: /home/user/public_html/includes/configure.php. This is a POTENTIAL security risk..." In order to fix this issue you can follow these steps:
After a ZenCart / osCommerce / CRELoaded installation you may receive the following warning: "Warning: I am able to write to the configuration file: /home/user/public_html/includes/configure.php. This is a potential security risk..." In order to fix this issue you can follow these steps: |
|
| 4. |
Oscommerce Does Not Use The Private Ssl? |
|
Answer» After PURCHASING your private SSL you have to manually reconfigure your application to USE it. After purchasing your private SSL you have to manually reconfigure your application to use it. |
|
| 5. |
How To Install Ecommerce On My Hosting Account? |
|
Answer» By default all Siteground accounts COME with no pre-installed APPLICATIONS. An ECOMMERCE pack may include several features and most OFTEN begins with an OsCommerce, a CreLoaded or a ZENCART installation. By default all Siteground accounts come with no pre-installed applications. An Ecommerce pack may include several features and most often begins with an OsCommerce, a CreLoaded or a Zencart installation. |
|
| 6. |
How To Configure Oscommerce To Work With Ssl? |
|
Answer» In order to configure osCommerce to work with SSL you should OPEN the file public_html/catalog/includes/configure.php and make the following changes: define('HTTP_SERVER', 'HTTP://www.yourdomain.com'); // EG, http://localhost - should not be empty for productive servers Similar to the above changes have to be made in the file public_html/catalog/admin/includes/configure.php which is RESPONSIBLE for the admin area configuration. In the above example we are configuring an osCommerce installation in the catalog directory with domain yourdomain.com. You should adjust the above settings to your details. In order to configure osCommerce to work with SSL you should open the file public_html/catalog/includes/configure.php and make the following changes: define('HTTP_SERVER', 'http://www.yourdomain.com'); // eg, http://localhost - should not be empty for productive servers Similar to the above changes have to be made in the file public_html/catalog/admin/includes/configure.php which is responsible for the admin area configuration. In the above example we are configuring an osCommerce installation in the catalog directory with domain yourdomain.com. You should adjust the above settings to your details. |
|
| 7. |
How To Generate The Necessary Certificates For Paypal Ipn? |
|
Answer» The PayPal IPN contribution for osCommerce offers OpenSSL public/private KEY encryption to securely send the order information to PayPal during checkout. Here is information on how to generate the necessary certificates:
The PayPal IPN contribution for osCommerce offers OpenSSL public/private key encryption to securely send the order information to PayPal during checkout. Here is information on how to generate the necessary certificates: |
|
| 8. |
How To Add A Banner In Oscommerce? |
|
Answer» You can EASILY add a custom banner to your OSCOMMERCE shop from the APPLICATION's ADMIN area > Tools > Banner Manager. You can easily add a custom banner to your osCommerce shop from the application's admin area > Tools > Banner Manager. |
|
| 9. |
How To Transfer My Oscommerce From One Host To Another? |
|
Answer» Transferring your osCommerce application INCLUDES copying your files and database and modifying the two configure.php files in includes/ and ADMIN/includes/ folders to work with the new server settings. The most IMPORTANT settings which should be MODIFIED in includes/configure.php are:
Transferring your osCommerce application includes copying your files and database and modifying the two configure.php files in includes/ and admin/includes/ folders to work with the new server settings. The most important settings which should be modified in includes/configure.php are: |
|
| 10. |
I’m Getting A 1054 Error In My Oscommerce After A Website/account Transfer? |
|
Answer» Sometimes, after a website or account transfer, your osCommerce may give a 1054 - Unknown column 'p.products_id' in 'on clause' error when browsing your products or when using the SEARCH tool. The most common reason for this issue is that your account has been moved from a server running MySQL 4 to a server running MySQL 5. As a solution, you can try applying this osCommerce contribution. In most cases, this will RESOLVE the 1054 problem. If, however, the problem persists, the best solution would be to have your account migrated to a server running MySQL 4. Sometimes, after a website or account transfer, your osCommerce may give a 1054 - Unknown column 'p.products_id' in 'on clause' error when browsing your products or when using the search tool. The most common reason for this issue is that your account has been moved from a server running MySQL 4 to a server running MySQL 5. As a solution, you can try applying this osCommerce contribution. In most cases, this will resolve the 1054 problem. If, however, the problem persists, the best solution would be to have your account migrated to a server running MySQL 4. |
|
| 11. |
How Can I See The Exact Version Of My Oscommerce? |
|
Answer» In ORDER to check the VERSION of your osCommerce, you should open the includes/application_top.php FILE located in your osCommerce installation folder. Look for these two lines: // define the project version define('PROJECT_VERSION', 'osCommerce Online Merchant v2.2 RC2a'); The VALUE after PROJECT_VERSION defines your CURRENT osCommerce version. In order to check the version of your osCommerce, you should open the includes/application_top.php file located in your osCommerce installation folder. Look for these two lines: // define the project version define('PROJECT_VERSION', 'osCommerce Online Merchant v2.2 RC2a'); The value after PROJECT_VERSION defines your current osCommerce version. |
|
| 12. |
E-commerce Application Comparison: Oscommerce Vs Zen Cart? |
|
Answer» osCommerce and Zen Cart are two of the most popular free shopping cart solutions. But which one is better? Which one of these two would be more suitable for your needs. In this article we have TRIED to make a comparison between osCommerce and Zen Cart. osCommerce: pros:
CONS:
Zen Cart: pros:
cons:
osCommerce and Zen Cart are two of the most popular free shopping cart solutions. But which one is better? Which one of these two would be more suitable for your needs. In this article we have tried to make a comparison between osCommerce and Zen Cart. osCommerce: pros: cons: Zen Cart: pros: cons: |
|
| 13. |
E-commerce Application Comparison: Oscommerce Vs Cre Loaded? |
|
Answer» In this we will list the most important pros and cons of osCommerce and CRE Loaded Standard. Hopefully, this will help you in your choice of a free shopping cart application. CRE Loaded: pros:
cons:
osCommerce: pros:
cons:
In this we will list the most important pros and cons of osCommerce and CRE Loaded Standard. Hopefully, this will help you in your choice of a free shopping cart application. CRE Loaded: pros: cons: osCommerce: pros: cons: |
|
| 14. |
How To Configure Oscommerce To Work With A New Domain? |
|
Answer» In order to CONFIGURE OSCOMMERCE to work properly with another DOMAIN, you should modify the two configure.php files in includes/ and admin/includes/ folders to reflect the new domain. The settings that should be changed in includes /configure.php are: HTTP_SERVER - you should CHANGE this to your new domain name, e.g. http://newdomain.com: HTTPS_SERVER - for example: define('HTTPS_SERVER', 'https://newdomain.com'); In order to configure osCommerce to work properly with another domain, you should modify the two configure.php files in includes/ and admin/includes/ folders to reflect the new domain. The settings that should be changed in includes /configure.php are: HTTP_SERVER - you should change this to your new domain name, e.g. http://newdomain.com: HTTPS_SERVER - for example: define('HTTPS_SERVER', 'https://newdomain.com'); |
|
| 15. |
How To Optimize Oscommerce For Better Performance? |
|
Answer» osCommerce is one of the most popular free shopping cart APPLICATIONS currently available. Here are some tips on how to improve the performance of your osCommerce shopping cart:
osCommerce is one of the most popular free shopping cart applications currently available. Here are some tips on how to improve the performance of your osCommerce shopping cart: |
|
| 16. |
What Are Oscommerce Admin Login Problems? |
|
Answer» If you cannot log into your OsCommerce admin area try the following:
If you cannot log into your OsCommerce admin area try the following: |
|
| 17. |
Oscommerce Security Check? |
|
Answer» If you have any doubts that your OsCommerce security has been compromised PLEASE follow these steps:
If you have any doubts that your OsCommerce security has been compromised please follow these steps: |
|
| 18. |
How To Secure Oscommerce? |
|
Answer» In order to secure OsCommerce please follow these steps:
In order to secure OsCommerce please follow these steps: |
|
| 19. |
How To Setup Oscommerce To Use Smtp? |
|
Answer» osCommerce COULD be setup to use the SMTP functionality inside its back-end, but there are some manual modifications needed in order to fully setup the SMTP functionality of this application. Follow these steps to complete the setup:
osCommerce could be setup to use the SMTP functionality inside its back-end, but there are some manual modifications needed in order to fully setup the SMTP functionality of this application. Follow these steps to complete the setup: |
|
| 20. |
In The Class Method I.e Set_extensions($extensions), $extensions Can Either Be A String Containing One Extension Type, Or An Array Containing Many Extension Types? |
|
Answer» YES, In the CLASS METHOD i.e set_extensions($extensions), $extensions can either be a string containing one extension type, or an ARRAY containing many extension types. Yes, In the class method i.e set_extensions($extensions), $extensions can either be a string containing one extension type, or an array containing many extension types. |
|
| 21. |
Which Class Property Is An Array Containing One Or More Allowable File Upload Types? |
|
Answer» $extensions class property is an array CONTAINING ONE or more ALLOWABLE file upload types. $extensions class property is an array containing one or more allowable file upload types. |
|
| 22. |
By Default, Oscommerce Saves All Uploaded Image Files To The Images Folder? |
|
Answer» YES, By default, OSCOMMERCE SAVES all UPLOADED image files to the images folder. Yes, By default, osCommerce saves all uploaded image files to the images folder. |
|