-
Content count
4,733 -
Joined
-
Last visited
-
Days Won
72
Everything posted by multimixer
-
Try QTpro
-
No it will not
-
I can't tell you this, since I don't know the contents of that file. Does it repeat the process (DB entries, mail etc) like in file checkout_process.php? In case of yes, then you need to do the changes that are done in checkout_process.php (or paypal_standard.php , they are same) also to the paypal file you use. In case you are not sure and have the feeling that you need to show that file to someone, please do not post it here since it s not related to option types itself. You can pm it to me instead
-
Reviews on Product Info Page v1.0
multimixer replied to assembler's topic in General Add-Ons Support
What do you expect to work? Do you have a file named "product_reviews_info.php" in the includes/modules/ directory? Is the file pulling the reviews from the database using the product_id of the product you are on right now? If not, this is what you need to create, then you can include your new module -
In this post you just said that you installed something else
-
Chloe, the error says: Warning: include(includes/modules/option_types.php) [function.include]: failed to open stream: No such file or directory in/home/ixoye97/public_html/giftofnames.com/product_info.php on line 186 Are you sure the file is there? Also, are you sure you get the error when you are in admin? It looks like you have the error when you are on the product info page on the store side
-
Yes, 306 pages are many, but 1 page back not -> the answer on the previews page
-
Chloe, they should be mentioned in the install instructions, can you please check this? Folders to create are images/options/ (in case you want to use the "image" option type) images/temp/ (for fileuploads) images/uploads/ (for fileuploads) Also make sure the folders have the same permissions as the /images/ folder
-
Chloe, do you have a folder /images/temp/ ? The error says there is not. In total there are 3 new folders to create in folder /images/ and they all must have same permissions as the images folder it self
-
Of course it is possible to do it. The tools you need are exactly the above mentioned + of course plain typing into your css file and a couple of others, header.php, footer.php etc You need of course also to have a basic understanding of how this all come together in osCommerce and you need to know a bit of css/html/php If you don't know this, and/or don't have the time or mood to learn it, then maybe the best would be to hire a developer or to purchase a template, your subdomain site is finally also a template
-
Check your pm's the message + links is still there
-
I did pm you a couple of links of sites using option types, both osCommerce versions (RC2a and 2.3.1)
-
Scroll to the top of the page, just 2 posts above yours there are the links !
-
Each addon has instructions about how to install it. Depending on what the addon is supposed to do and on the quality of coding, installation can vary from a simple fileupload to extensive manual modifications to a smaller or bigger number of files Themeroller is not an addon in this meaning, I have however a post about how to install a new theme to your store here A related addon is themeswitcher that is easy to install, has instructions included and has a support topic here for any questions
-
Some of the paypal modules use their "own" "checkout_process.php" file, that means that any changes tone to file catalog/checkout_process.php need to be repeatet accordingly for the paypal module you use, that will be located in catalog/includes/modules/payment/ The otion types v2 version for RC2a, has such a paypal file included, I don't know if this is the case also for the 231 update, anyway, you can check that file and do changes to your paypal file accordingly
-
Custom Boxes Sort order not working
multimixer replied to JakobÆbeløeKjøller's topic in Add-Ons Development
This has nothing to do with any code, complicated or not, it's a question of making the correct settings and has been pointed out a couple of posts above -
Option types v2 work perfectly fine with the version you have (rc2a) Option types for osCommerce RC2a Option types for osCommerce 231
-
How to remove the border around Product Info Image
multimixer replied to a topic in Templates and Images
What thumbnails do you mean? For product listing pages or on the product information page? -
I didn't check the instructions pf the package uploaded by dunweb, maybe something is not clear there, but you have definitely a mistale in includes/application_top.php in case "add_product' Here's the code as it should look like // customer adds a product from the products page case 'add_product' : if (isset($HTTP_POST_VARS['products_id']) && is_numeric($HTTP_POST_VARS['products_id'])) { // BOF Option Types v2 // File uploading: Purge the Temporary Upload Dir $purgeDir = opendir(TMP_DIR) or die ('Could not open '.TMP_DIR); while ($file = readdir($purgeDir)) { if ($file != ('.htaccess') && $file != ('.') && $file != ('..') && filemtime(TMP_DIR . $file) < strtotime(OPTIONS_TYPE_PURGETIME)) { unlink(TMP_DIR . $file); // Delete file from server... tep_db_query("delete from " . TABLE_FILES_UPLOADED . " where files_uploaded_name = '" . $file . "'"); // Remove File's database entry.... } } closedir($purgeDir); // Set real_ids for processing $real_ids = $_POST['id']; // save uploaded files with unique file names, in the proper folder if ($_POST['number_of_uploads'] > 0) { require(DIR_WS_CLASSES . 'upload.php'); for ($i = 1; $i <= $_POST['number_of_uploads']; $i++) { $TEMP_FILE = $_FILES['id']['tmp_name'][TEXT_PREFIX . $_POST[uPLOAD_PREFIX . $i]]; if (tep_not_null($TEMP_FILE) && $TEMP_FILE != 'none') { $products_options_file = new upload('id'); // Set Upload directory (Registered customers in Uploads, other in Temporary folder) if (tep_session_is_registered('customer_id')) { $products_options_file->set_destination(UPL_DIR); } else { $products_options_file->set_destination(TMP_DIR); } if ($products_options_file->parse(TEXT_PREFIX . $_POST[uPLOAD_PREFIX . $i])) { if (tep_session_is_registered('customer_id')) { tep_db_query("insert into " . TABLE_FILES_UPLOADED . " (sesskey, customers_id, files_uploaded_name, date) values('" . tep_session_id() . "', '" . $customer_id . "', '" . tep_db_input($products_options_file->filename) . "', '" . date("d-m-y") . "')"); } else { tep_db_query("insert into " . TABLE_FILES_UPLOADED . " (sesskey, files_uploaded_name, date) values('" . tep_session_id() . "', '" . tep_db_input($products_options_file->filename) . "', '" . date("d-m-y") . "')"); } // Set File Prefix if (OPTIONS_TYPE_FILEPREFIX == 'Database') { // Database ID as File prefix $insert_id = tep_db_insert_id() . '_'; } else { // Date, time or both as File prefix (Change date formatting here) if (OPTIONS_TYPE_FILEPREFIX == 'Date' || OPTIONS_TYPE_FILEPREFIX == 'DateTime') { $insert_id = 'D'.date("d-m-y_"); } $insert_id .= (OPTIONS_TYPE_FILEPREFIX == 'DateTime' || OPTIONS_TYPE_FILEPREFIX == 'Time') ? 'T'.date("H-i_") : ''; } // Update filename in Database with correct prefix (For comparing database names with real files) tep_db_query("update " . TABLE_FILES_UPLOADED . " set files_uploaded_name = '" . tep_db_input($insert_id . $products_options_file->filename) . "' where sesskey = '" . tep_session_id() . "' and files_uploaded_name = '" . tep_db_input($products_options_file->filename) . "' and date = '" . date("d-m-y") . "'"); $real_ids[TEXT_PREFIX . $_POST[uPLOAD_PREFIX . $i]] = $insert_id . $products_options_file->filename; $products_options_file->set_filename($insert_id . $products_options_file->filename); if (!($products_options_file->save())) { break 2; } } else { break 2; } } else { // No file uploaded -- use previously uploaded file (From Dropdown) $real_ids[TEXT_PREFIX . $_POST[uPLOAD_PREFIX . $i]] = $_POST[TEXT_PREFIX . UPLOAD_PREFIX . $i]; } } } $cart->add_cart($_POST['products_id'], $cart->get_quantity(tep_get_uprid($_POST['products_id'], $real_ids))+1, $real_ids); // EOF Option Types v2 } tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters))); break;
-
How to remove the border around Product Info Image
multimixer replied to a topic in Templates and Images
That is not a border but a shadow, set in your stylesheet.css line 125, for #piGal img. #piGal img { -webkit-box-shadow: 0px 0px 1px #000; -moz-box-shadow: 0px 0px 1px #000; } -
How to remove the border around Product Info Image
multimixer replied to a topic in Templates and Images
Not clear where the osCommerce installation is Also, did you add any thumbnail addon, or do you refer to the default? -
The issue appear on some infoboxes. Check if the correspoding language file is encoded in utf-8 itself ps χαλαρωσε φιλε, απεργια σημερα
-
Sophie First of all: You just posted a direct link to your admin, that is, on top, not .htaccess protected !! (also in an other post). First thing is to go and change the admin folder name and add htaccess ptotection to it To your issues 1) The BOX_HEADING_... text mean simply that some language define is missing 2) The missing css, are you sure that the "mail manager" file is for version 2.3.1? Does it include template_top.php? Again, first take care of the admin folder !!
-
Looking for a new image viewing module
multimixer replied to vashichino7's topic in Templates and Images
And what is the current one? -
Eva, I don;t understand exactly what you mean with "simple template", "blank template" and what you want to replace. If you refer to the templates that are included in the STS package, then no, you can't use them in any way. What you can do is to grab their layout/design and use it as a base to start designing a 2.3.1 store from the beginning Version 2.3.1 is much more easy to handle in design terms, you can achieve a lot with for example with a new theme from themeroller ( you can read here how to install it) There is also an addon available called "theme switcher" In general I would say forget STS, it has been a great tool in the past, and still is for previous osCommerce versions, but it's not relevant anymore for new stores