- Posts: 16
- Thank you received: 0
user.php - Fatal Error - JDate::toMySQL()
- milanwehrmann
-
Topic Author
- Offline
I have a problem.
I have the shop on my webpage and if I would Registred a new Adress with Username and Password, Street etc., I get this Error-Message:
Fatal error: Call to undefined method JDate::toMySQL() in /home/www/web355/html/Joomla/administrator/components/com_hikashop/classes/user.php on line 497
What can I do?
Thanks for your comments!!!
Milan
Please Log in or Create an account to join the conversation.
Change the line:
$user->set('registerDate', $date->toMySQL());
to:
$user->set('registerDate', $date->toSql());
in the file administrator/components/com_hikashop/classes/user.php via FTP and that should solve the problem.
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
After this change, I get this Error-Message:
Fatal error: Call to undefined method JUtility::getHash() in /home/www/web355/html/Joomla/administrator/components/com_hikashop/classes/user.php on line 505
and the Browser-URL is: joomla.milanwehrmann.ch/Joomla/index.php...out/step/step-1.html
Thanks
Please Log in or Create an account to join the conversation.
$user->set('activation', JUtility::getHash( JUserHelper::genRandomPassword()) );
to:
$user->set('activation', JApplication::getHash( JUserHelper::genRandomPassword()) );
in the file administrator/components/com_hikashop/classes/user.php via FTP and that should solve the problem.
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
But the next Error is, if I join the activation-link in the activation-e-mail:
Fatal error: Call to undefined method JModel::addIncludePath() in /home/www/web355/html/Joomla/components/com_hikashop/controllers/checkout.php on line 96
Thank you for your help!!!
Please Log in or Create an account to join the conversation.
JModel::addIncludePath(HIKASHOP_ROOT . DS . 'components' . DS . 'com_users' . DS . 'models');
to:
JModelLegacy::addIncludePath(HIKASHOP_ROOT . DS . 'components' . DS . 'com_users' . DS . 'models');
in the file components/com_hikashop/controllers/checkout.php via FTP and that should solve the problem.
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
My next problem is this:
Nachricht:
No payment methods found
Keine Liefermethode gewählt (in English: No delivery methods found.)
But in the configuration, I have a payment method (bank transfer) and 2 delivery methods (manual shipping).
I like your shop-plugin very much. That is the reason why I want it works. Thank you you help me.
Please Log in or Create an account to join the conversation.
Please check that FAQ:
www.hikashop.com/en/support/documentatio...ins-listing.html#faq
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
So with a Adress from Danmark it works, because Danmark is my Standard probably. But with Germany or Switzerland, I get this message: "No pay methodes found"
Thank you so much for your help
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
Everything works!
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
If I have indicated in a new visitor every user address data and I click to register, then comes a new site with the message that you have to activate the email-link.
Can I change the place from over my logo to below the logo?
Please Log in or Create an account to join the conversation.
I would recommend to contact your template provider for that as it can be a lot different from one template to another.
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
another problem after I click on the activation link in the email.
I recieve a error page 404. Why?
Thank you for your support!!!
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
Please Log in or Create an account to join the conversation.
to:
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- milanwehrmann
-
Topic Author
- Offline
- Posts: 16
- Thank you received: 0
Into the E-Mail are this links:
In the Danish's one:
joomla.milanwehrmann.ch/Joomla/index.php...temid=497&lang=Array
In the German's one:
joomla.milanwehrmann.ch/Joomla/index.php...d=9&Itemid=486&lang=
I miss the Array in the end of the German's one. I think this is the error.
Thank you for your support!!
Please Log in or Create an account to join the conversation.
Please make sure that you have @$_GET; at the end of that line.
Please Log in or Create an account to join the conversation.