Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bubbasheeko

Archived
  • Posts

    19
  • Joined

  • Last visited

Profile Information

  • Real Name
    Kevin Davidson

bubbasheeko's Achievements

  1. I wanted to know if there is a way of having the shipping module determine which category an item came from, and if there is 5 items or less purchased, it would combine them as one item for the shipping calculator? The items are small packages that would fit into and shipping envelope and can hold at least 5. That is how I ship these now, but setting this up in OSCommerce appears impossible. Any suggestions greatly appreciated!
  2. I have been trying to find this too and I have not found a solution. Is there one?
  3. I utilized the login box that is for use with STS. I however want php to trigger whether you see the login box or the account options. I have set up my own account links. I added the check to see if the visitor is logged in and it works great inside the template system. <?php if (!tep_session_is_registered('customer_id')) { ?><div id="login"> <form action="/catalog/login.php?action=process" method="post" name="login" > <font color="#FFFFFF" face="Georgia">Email Address:</font><font face="Georgia"><br> <input type="text" name="email_address" size="20" style="border:1px solid #000000; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px"/><br/> </font><font face="Georgia" color="#FFFFFF">Password:</font><font face="Georgia"><br> <input type="password" name="password" size="20" style="border:1px solid #000000; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px"/><br/> </font> <a id="sign_in" onclick="login.submit()"> <font face="Georgia"> <input type="button" value="Sign In" name="B1" style="padding:1px; border:1px solid #000000; font-family:Georgia; font-size:10pt"></font></a><font face="Georgia"> <br> <br> <a id="sign_up" href="create_account.php"> <font color="#FFFFFF">Sign up</font></a><font color="#FFFFFF"> <br> </font><a id="forgot" href="password_forgotten.php"> <font color="#FFFFFF">Forgot Password?</font></a></font></form> <? } Here is the problem (strong word for something I am hoping will be relatively easy), there are pages on the root of the server folder. These pages need to interact with the catalog, and the interacting is the login box. Any ideas how I can make a login box work outside of the catalog folder, away from the template? Thanks!
  4. I am able to download the delimited file with items I have added manually. I just can not upload any changes or additions - with no errors.
  5. I am using Easy Populate 2.76-MS2. When I attempt to download the Complete CSV - I receive no errors. I have one test product in OSCommerce. There is no product in the CSV. If I add something to the spreadsheet and upload it, there is no error and nothing is uploaded. Any thoughts on what is happening or what I have done wrong? Thanks!
  6. Silly me....might help if I ensured that excel was saving the file the same way it was opened. I had to change the delimited character to tab in the easypopulate.php. Now I just need to figure out how I can still use the ' character in my descriptions and such.
  7. I am having problems with the Easy Populate 2.76-MS2. It is installed correctly and receive no errors. The only problem is I do not seem to be able to successfully import my delimited file. I added one record to it and updated the db - didn't add the product and no errors Uploaded the file via ftp to the temp folder - added to db that way - no errors. Still did not add that one record. Any suggestions?
  8. This one is giving you the answer right in the error :) Make sure you have a product number under the product field in your file that you are uploading.
  9. I am having a somewhat 'minor' problem and I feel that I am missing a very simple solution. I have set font sizes on the table. My breadcrumbs have adapted to the correct font size. However, the font size for the main content and the left and right columns is set with the correct font, just not the right font size. I am looking at a size 10pt for a majority of the content on the site. I have sent the font on the entire template, on the cells in questions and even the tables. Has anybody ran into this? Thanks!
  10. I am looking in easypopulate.php to set the temp directory and I do not see a area defining the temp directory. I am using $curver = '2.79-MS2';. The errors I see after trying to upload a test CSV file to the site is: Warning: move_uploaded_file(/home/uppercan/public_html/bruinixEP_TEMP_DIR/TEST.txt) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/uppercan/public_html/bruinix/admin/includes/functions/easypopulate_functions.php on line 32 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpq8D3fS' to '/home/uppercan/public_html/bruinixEP_TEMP_DIR/TEST.txt' in /home/uppercan/public_html/bruinix/admin/includes/functions/easypopulate_functions.php on line 32 FILE_UPLOAD_EP TEMPORARY_FILENAME_EP/tmp/phpq8D3fS USER_FILENAME_EPTEST.txt SIZE_EP446 Warning: file(/home/uppercan/public_html/bruinixEP_TEMP_DIRTEST.txt) [function.file]: failed to open stream: No such file or directory in /home/uppercan/public_html/bruinix/admin/easypopulate.php on line 656 Warning: Invalid argument supplied for foreach() in /home/uppercan/public_html/bruinix/admin/easypopulate.php on line 678 Any help on this?? Thanks.
  11. By removing the keys I can not change any of the settings for the Moneris/E-Select payment module. It keeps defaulting back to the default settings of the module. Has anybody come across this before? Using MySQL 4.1.21-standard and PHP Version 4.4.3 on a Linux server.
  12. I removed the primary key and key idx and resolved the error. There is a problem with the key's, any solution to this?
  13. Ran the drop/create table query in phpmyadmin. This was the outcome: DROP TABLE IF EXISTS moneris_orderids;# MySQL returned an empty result set (i.e. zero rows). CREATE TABLE moneris_orderids ( moneris_orderid varchar(99) NOT NULL, orders_id int NOT NULL, response_variables BLOB NOT NULL, PRIMARY KEY (orders_id, moneris_orderid), KEY idx_moneris_orderids_orders_id (orders_id) );# MySQL returned an empty result set (i.e. zero rows).
  14. Okay, I did figure out one error. For the: Warning: main(/home/uppercan/public_html/catalog/includes/languages/english/modules/payment/insert_moneris_orderid.php) [function.main]: failed to open stream: No such file or directory in /home/uppercan/public_html/catalog/admin/modules.php on line 128 I added the inser_moneris_orderid.php file into the folder specified in the error. Now I am stuck with: 1062 - Duplicate entry '' for key 1 insert into moneris_orderids (moneris_orderid, orders_id, response_variables) values ('', '', '') [TEP STOP] I have dropped the table and recreated it, the error still remains. I left the tabled out, refreshed my page - still get the same error. I wonder where it is finding this duplicate entry if the table moneris_orderids is not present. Cached was cleared too, so I shouldn't be seeing this error. Here are the results of running this in sql in phpmyadmin: show create table moneris_orderids CREATE TABLE `moneris_orderids` (\n `moneris_orderid` varchar(99) NOT NULL default '',\n `orders_id` int(11) NOT NULL default '0',\n `response_variables` blob NOT NULL,\n PRIMARY KEY (`moneris_orderid`),\n KEY `idx_moneris_orderids_orders_id` (`orders_id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1 Any suggestions?
  15. I followed the instructions that were in the PDF with the Moneris/E-Select payment module package. After completing the installation I went to test in by going to the payment section to see if the module was added. I received the following errors: Warning: main(/home/uppercan/public_html/catalog/includes/languages/english/modules/payment/insert_moneris_orderid.php) [function.main]: failed to open stream: No such file or directory in /home/uppercan/public_html/catalog/admin/modules.php on line 128 Warning: main() [function.include]: Failed opening '/home/uppercan/public_html/catalog/includes/languages/english/modules/payment/insert_moneris_orderid.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/uppercan/public_html/catalog/admin/modules.php on line 128 Refreshed the page thinking it was my cache, and received this error: Warning: main(/home/uppercan/public_html/catalog/includes/languages/english/modules/payment/insert_moneris_orderid.php) [function.main]: failed to open stream: No such file or directory in /home/uppercan/public_html/catalog/admin/modules.php on line 128 Warning: main() [function.include]: Failed opening '/home/uppercan/public_html/catalog/includes/languages/english/modules/payment/insert_moneris_orderid.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/uppercan/public_html/catalog/admin/modules.php on line 128 1062 - Duplicate entry '0-' for key 1 insert into moneris_orderids (moneris_orderid, orders_id, response_variables) values ('', '', '') [TEP STOP] Seeing a duplicate entry in the database and knowing that maybe starting over would help, I deleted the moneris table from the database and used the sql file to recreate the table. No good, received the first error again. Any thoughts as to why I am receiving this error? Thanks
×
×
  • Create New...