

safoo
Members-
Content count
485 -
Joined
-
Last visited
Everything posted by safoo
-
Dangling Carrot (Free Gift/Discount Contrib)
safoo replied to thejungle's topic in General Add-Ons Support
OK...I seem to have fixed the issue. For the instructions pertaining to the changes in catalog/shopping_cart.php around line 228: Find: //<!--BOF dangling carrot v2.0--> if ($products[$i]['carrot'] == "1"){ $info_box_contents[$cur_row][] = array('align' => 'center', 'params' => 'class="productListing-data" valign="top"', 'text' => $products[$i]['quantity']. tep_draw_hidden_field('products_id[]', $products[$i]['id'])); } and Change to: if ($products[$i]['carrot'] == "1"){ $info_box_contents[$cur_row][] = array('align' => 'center', 'params' => 'class="productListing-data" valign="top"', 'text' => $products[$i]['quantity'] . tep_draw_hidden_field('cart_quantity[]', $products[$i]['quantity']) . tep_draw_hidden_field('products_id[]', $products[$i]['id'])); } Notice the 2 tep_draw_hidden_field calls in the new version. If someone can test the full functionality of the shopping cart and post back on this thread, we can then release a new version with this fix. -
Dangling Carrot (Free Gift/Discount Contrib)
safoo replied to thejungle's topic in General Add-Ons Support
Yes I just noticed this after reading your comment. I will look at the code and try to get this resolved. -
master password is a contribution that allows you to login to customers' accounts. http://www.oscommerce.com/community?contri...rd&category=all Also, in your includes/configure.php, try setting pconnect to false. That may be the cause of your problem.
-
Doesn't seem like anything major. Post your configure.php (without database settings!)
-
ccgv_v5_13 ERROR! Anyone please help!
safoo replied to inkcartridgedeals's topic in General Add-Ons Support
Or do a search on the forums for "cannot redeclare". One of the solutions is to change the require to require once. Do a search and see if you can find any solutions. If not, post back here and someone will help. -
ccgv_v5_13 ERROR! Anyone please help!
safoo replied to inkcartridgedeals's topic in General Add-Ons Support
Can you show the code for header.php line 214 and categories.php line 13? -
Sorry for the confusion. I know not many have this problem, but I did so I think others may as well. The error occurs in using paypal ipn in conjuction with Chemo's database queries mods. The fix is to add $debug = array(); in includes/modules/payment/paypal/application_top.php. Just make sure to include that one line before the 'tep_db_connect();' function is called. The multiple errors were causing my orders to not update in status when an IPN was received. This will fix the issue.
-
nm...did not fix the problem yet... :blink:
-
If anyone has same warning in their server's error logs and they are using Chemo's contribution to display page parse time along with this paypal ipn contrib., then simply add $debug=array(); in your includes/modules/payment/paypal/application_top.php
-
[Contribution] Ultimate SEO URLs - by Chemo
safoo replied to Chemo's topic in General Add-Ons Support
Panic, In your configure.php in both admin and catalog, make sure you have the cookie domain set to '.yoursite.com'. Then the cookie path should be '/folder/' (the / could be different for you). Also, in Admin,->configuration -> sessions, make sure force cookie use is false and prevent spider sessions is true. Those are the correct settings that you have. No in your browser, check if cookie's are enabled. If cookies are disabled, then the oscsid will stay in the address bar for as long as you browse the site. If cookies are enabled, then only the first click after you enter the site will have the oscsid in the browser address bar. -
There should be some changes to admin/includes/database_tables.php. Double check those. You should have an entry for TABLE_AFFILIATE_SALES
-
I was wondering if it is possible to modify who's online so it updates the database once every time period. For example, update every hour. The reason behind this is that then one can take more advantage of SQl query caching (since cache is flushed on every insert statement). This would still allow the store owner to get a snapshot of the traffic on the site through out the day. Any ideas on how I could one go about accomplishing this? I can easily enable or disable who's online by adding a true/false setting, but how to have osc automatically change the setting. For example, if we want to update who's online every hour, then enable who's online at X:05 time and disable every X:05+Y (allowing Y minutes to get a better sample of who's online). So at 10:05am who's online is enabled then at 10:07am it is disabled. It will take another sample at 11:05. So if the store owner checks who's online in admin at 11:30, he will have the sample from 11:05. If anyone has any ideas on how to approach this, I would love to hear them. Again, my main issue is with figuring out when to enable disable the setting. Thanks.
-
CCC creates a new product for each computer build request by the customer; so yes CCC add computers to the products table as new products. This allows the customer to save the computer in their cart for future visits. You can delete unordered builds by clicking the 'delete unordered builds' button in admin.
-
Check the thread in the 'contributions announcements' forum. DEVOSC mentioned how to make it horizontal in one of his posts.
-
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
safoo replied to spidometrs's topic in General Add-Ons Support
Steve, check your configure.php in both catalog/includes/ folder and admin/includes folder. Make sure 'use persistent connections' (pconnect) is set to false. -
In firefox, on the customer side, the drop downs don't work. I only played around with the contribution for 5 minutes so I don't know much details. Still, it doesn't mess with any other files and the interface is great visually so I think this contribution has a great potential, especially considering the CCC contribution is buggy with no support.
-
Wow just tried this out. only 1 or 2 lines to change in files. The interface looks awesome. Only drawback is that it does not work for Mozilla :/
-
Do you have a working example?
-
Yes. Just as you said. Click count is in seconds. 7200 seconds = 2 hours 7776000 seconds = 90 days. 1 day = 86,400 seconds
-
No option for PayPal without subscription
safoo replied to doubletrack's topic in General Add-Ons Support
PayPal Account Optional: On Is that enabled in your paypal account? -
look around in the files where the information is being saved and find the other hardcoded '6'.
-
Lucy, Looks great. But it seems you are not using CCC but Custom PC Creator? your file is cpc.php. I might be wrong.
-
do a search for "P&G Shipping ...". This does not work with MS2. Moreover, you won't find much help on the forums. The author no longer supports it either. You are better off trying to use some of the new contributions that function similar to the P&G.
-
1054 - Unknown column 'purchased_without_account'
safoo replied to running wolf's topic in General Add-Ons Support
you didn't run the sql script to create the 'purchased_without_account' column in the database. Reread the instructions and try again. -
Volume Discounts For Selected Products
safoo replied to happygooner's topic in General Add-Ons Support
Amar, Did you search 'discount' in the contributions section? This is what you need: http://www.oscommerce.com/community/contri...search,discount