Search found 135 matches
- Thu Apr 15, 2021 2:42 am
- Forum: Community Help & Support
- Topic: Issues with Paypal
- Replies: 9
- Views: 265
Re: Issues with Paypal
I should be approaching someone about helping me problem solve this on a payed basis if so do you have any names you can suggest for this sort of problem? BrockleyJohn, zipurman raiwa might not want to get too far into debugging a PayPal issue. The main payment module that he supports is Stripe. Bu...
- Wed Apr 14, 2021 6:16 pm
- Forum: Community Help & Support
- Topic: v1.0.8.1 Questions / Comments / Concerns
- Replies: 49
- Views: 1676
Re: v1.0.8.1 Questions / Comments / Concerns
Someone ( not me :lol: ) should create a substitution list for each of the old tep_ functions showing its new preferred method. That's rather what the compatibility functions are. The deprecation notice tells the compatibility function name and file location which shows the replacement code. Note t...
- Wed Apr 14, 2021 5:22 pm
- Forum: Community Help & Support
- Topic: v1.0.8.1 Questions / Comments / Concerns
- Replies: 49
- Views: 1676
Re: v1.0.8.1 Questions / Comments / Concerns
Product::fetch_name -- usage example in the tep_get_products_name function.
- Mon Apr 12, 2021 4:01 pm
- Forum: Community Help & Support
- Topic: Trash Icon - Delete upload
- Replies: 3
- Views: 194
- Mon Apr 12, 2021 3:35 pm
- Forum: Community Help & Support
- Topic: Trash Icon - Delete upload
- Replies: 3
- Views: 194
Re: Trash Icon - Delete upload
Code: Select all
document.getElementById("pPdf").value = '';
- Mon Apr 12, 2021 3:30 pm
- Forum: Community Help & Support
- Topic: v1.0.8.1 Questions / Comments / Concerns
- Replies: 49
- Views: 1676
Re: v1.0.8.1 Questions / Comments / Concerns
If I want to use the function and select "0" as the default parameter it's nothing selected (as 0 seems to be "empty") but in my array, I really have a value "0" and I want that selected tep_draw_pull_down_menu('name', $array, "0", 'id="pProductsSkontoEn...
- Sun Apr 11, 2021 11:52 pm
- Forum: Community Help & Support
- Topic: Best way to connect my Phoenix sites to each other?
- Replies: 2
- Views: 157
Re: Best way to connect my Phoenix sites to each other?
What does connecting your Phoenix sites to each other mean? Are you saying you want a link in the header from each site to the other? Or something else? For example, do you want to share sessions? Accounts? Catalog data? If you just want a link, a navbar module will work so long as you are satisfied...
- Sun Apr 11, 2021 1:07 am
- Forum: Community Help & Support
- Topic: Massive Session Logs and Database
- Replies: 7
- Views: 266
Re: Massive Session Logs and Database
In php.ini, change your garbage collection settings. E.g.
I don't know of a way to reset product views other than in phpMyAdmin. It's products_viewed in the products_description table.
Code: Select all
session.gc_maxlifetime = 86400
session.gc_probability = 1
session.gc_divisor = 1000
- Sat Apr 10, 2021 6:55 am
- Forum: Community Help & Support
- Topic: Customer unable to login
- Replies: 10
- Views: 291
Re: Customer unable to login
I had a sort of similar issue, where it was caused by 'Dynamic Case'. My host would not turn it off, so I had to use .htaccess - just to offer whatever I might have of useful info. I don't know what "Dynamic Case" is, so I suspect the OP doesn't either. I tried searching, but the results ...
- Fri Apr 09, 2021 5:48 pm
- Forum: Community Help & Support
- Topic: DATE_FORMAT_STRING undefined?
- Replies: 1
- Views: 148
Re: DATE_FORMAT_STRING undefined?
In includes/languages/english/advanced_search.php change to
Code: Select all
// text for date of birth example
define('DOB_FORMAT_STRING', 'mm/dd/yyyy');
Code: Select all
const DATE_FORMAT_STRING = 'mm/dd/yyyy';