Search found 12 matches

by Dnj1964
Fri Sep 24, 2021 7:33 pm
Forum: Community Help & Support
Topic: changing asterisk color?
Replies: 2
Views: 1010

changing asterisk color?

Anyone tell me what to add to user.css to change the asterisk color.

<span class="form-control-feedback text-danger">
<i class="fas fa-asterisk">

Thanks
by Dnj1964
Tue May 04, 2021 7:48 pm
Forum: Community Help & Support
Topic: Fresh Install 1.0.8.2 - Errors
Replies: 2
Views: 1145

Re: Fresh Install 1.0.8.2 - Errors

ecartz wrote: Tue May 04, 2021 7:20 pm
Dnj1964 wrote: Tue May 04, 2021 6:31 pm copied the relevant db tables
Did you copy the manufacturers_info table?
Copied the relevant db tables except the manufacturers_info table.

Thanks @ecartz
by Dnj1964
Tue May 04, 2021 6:31 pm
Forum: Community Help & Support
Topic: Fresh Install 1.0.8.2 - Errors
Replies: 2
Views: 1145

Fresh Install 1.0.8.2 - Errors

Installed a fresh copy of 1.0.8.2 and copied the relevant db tables now getting an error [04-May-2021 18:20:09 UTC] PHP Notice: Undefined index: manufacturers_seo_title in /home/xxx/public_html/includes/classes/manufacturer.php on line 27 [04-May-2021 18:20:09 UTC] PHP Notice: Undefined index: manuf...
by Dnj1964
Fri Apr 30, 2021 4:06 pm
Forum: Community Help & Support
Topic: FORM_REQUIRED_INPUT - Moving Asterisk
Replies: 7
Views: 2391

FORM_REQUIRED_INPUT - Moving Asterisk

asterisk.png
Trying to move the asterisk with CSS tried many variations of code

Code: Select all

.form-control-feedback {right: 30px;!Important}
Any help greatly appreciated.
by Dnj1964
Wed Apr 28, 2021 9:18 pm
Forum: Community Help & Support
Topic: 1.0.8.2 Questions / Comments / Concerns
Replies: 18
Views: 7820

Re: 1.0.8.2 Questions / Comments / Concerns

Tried with php 7.3 as well
by Dnj1964
Wed Apr 28, 2021 9:03 pm
Forum: Community Help & Support
Topic: 1.0.8.2 Questions / Comments / Concerns
Replies: 18
Views: 7820

Re: 1.0.8.2 Questions / Comments / Concerns

Getting this error after changing from php 7.3 to 7.4 or 8.0 [28-Apr-2021 16:42:02 UTC] PHP Fatal error: Uncaught Error: Class "mysqli" not found in When you update, you have to install the mysqli extension. See https://stackoverflow.com/questions/666811/how-to-solve-fatal-error-class-mys...
by Dnj1964
Wed Apr 28, 2021 5:01 pm
Forum: Community Help & Support
Topic: 1.0.8.2 Questions / Comments / Concerns
Replies: 18
Views: 7820

Re: 1.0.8.2 Questions / Comments / Concerns

Getting this error after changing from php 7.3 to 7.4 or 8.0 Switching back to 7.3 and everything works [28-Apr-2021 16:42:02 UTC] PHP Fatal error: Uncaught Error: Class "mysqli" not found in /home/xxx/public_html/includes/system/versioned/1.0.8.1/database_core.php:13 Stack trace: #0 /home...
by Dnj1964
Wed Apr 07, 2021 6:09 pm
Forum: Community Help & Support
Topic: Adding product?
Replies: 9
Views: 2706

Re: Adding product?

ALTER TABLE `products` MODIFY `products_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=334 Here's the problem. The PRIMARY is not in that statement. So when you run it, it tries to remove the primary key and then it can't be used as an auto_increment. Try ALTER TABLE `products` MODIFY `product...
by Dnj1964
Sat Apr 03, 2021 12:13 am
Forum: Community Help & Support
Topic: Adding product?
Replies: 9
Views: 2706

Re: Adding product?

product_id is Primary and only key set on products table.

Refuses to auto_increment.
db-1.jpg
db-2.jpg
db-3.jpg
by Dnj1964
Fri Apr 02, 2021 7:04 pm
Forum: Community Help & Support
Topic: Adding product?
Replies: 9
Views: 2706

Re: Adding product?

Still won't auto increment

SQL query:
ALTER TABLE `products`
MODIFY `products_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=334

MySQL said: Documentation
#1075 - Incorrect table definition; there can be only one auto column and it must be defined as a key