- Posts: 33
- Thank you received: 0
Error using jomsocial plugin
2 questions:
1- I installed the jomsocial plugin on my test website
salsamundo.v3.salsamundo.eu/
When i make an order i got the attached image error
"404 - Component not found ( salsamundo.v3.salsamundo.eu/en/Boutique/...irect-/en/admin.html )"
When i disable Sh404 url it's working. The problem is that i need this extenions
2- Is the any tuto to personalize the confirmation order email ?
Thanks !
Forian
Please Log in or Create an account to join the conversation.
$cancel_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.$order->order_id;
to:
global $Itemid;
$url_itemid='';
if(!empty($Itemid)){
$url_itemid='&Itemid='.$Itemid;
}
$cancel_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.$order->order_id.$url_itemid;
in the file plugins/hikashoppayment/paypal.php and try again with the SEF activated ?
2. There is a basic documentation : www.hikashop.com/en/support/documentatio...shop-email-form.html
You can do it via the menu System->Emails with the Business edition.
Please Log in or Create an account to join the conversation.
I added in /salsamundo_V3/plugins/hikashoppayment/paypal.php
$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order->order_id;
global $Itemid;
$url_itemid='';
if(!empty($Itemid)){$url_itemid='&Itemid='.$Itemid;}
$cancel_url = HIKASHOP_LIVE.
'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.
$order->order_id.$url_itemid;
$debug = $method->payment_params->debug;
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
What could be the reason?
Maybe this is because you did not confirm your order ?
Please Log in or Create an account to join the conversation.
I'm facing a new issue. I canno't add any product description.
Is it due to the previous modifications?
Please Log in or Create an account to join the conversation.
If you want to fix the success link, you need to do a similar modification :
$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order->order_id;
to:
global $Itemid;
$url_itemid='';
if(!empty($Itemid)){$url_itemid='&Itemid='.$Itemid;}
$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order->order_id.$url_itemid;
If you can't add a product description, it's either:
- because you have a problem with the database structure. You should activate the debug mode of the joomla configuration and try again to see if you have an error message.
- because your HTML editor is not working properly. You should use another editor by changing it in the "editor" option of the configuration of hikashop.
Please Log in or Create an account to join the conversation.
So I tried to modify the paypal.php file, however it's still not working.
On the other hand hand you were right it's an editor issue.
Default and Tiny are not working anymore.
However I need it. So what else can i do.
By the way would it better for you to get direct access to the admin ?
Regards
Florian
Please Log in or Create an account to join the conversation.
$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order->order_id.$url_itemid;
to:
$return_url = ' mywebsite.com/mylink ';
You could install another editor and use it instead. JCE for example. Otherwise, maybe it comes from a plugin you installed for that editor. So disabling the plugin might solve the problem...
Please Log in or Create an account to join the conversation.
So I tried both solutions
1- I Changed the paypal.php. However It still not working. (error 404)
global $Itemid;
$url_itemid='';
if(!empty($Itemid))
$return_url = HIKASHOP_LIVE.
'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.
$order->order_id.$url_itemid;
global $Itemid;
$url_itemid='';
if(!empty($Itemid)){$url_itemid='&Itemid='.$Itemid;}
$cancel_url = HIKASHOP_LIVE.
'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.
$order->order_id.$url_itemid;
$debug = $method->payment_params->debug;
$vars = Array(
2- I disabled the tiny editor and default editor and it's working. However I need it, so what can I do ?
By the way what would it be easier for you to get access my back end ?
Thanks
Please Log in or Create an account to join the conversation.
So I tried both solutions
1- I Changed the paypal.php. However It still not working. (error 404)
global $Itemid;
$url_itemid='';
if(!empty($Itemid))
$return_url = HIKASHOP_LIVE.
'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.
$order->order_id.$url_itemid;
global $Itemid;
$url_itemid='';
if(!empty($Itemid)){$url_itemid='&Itemid='.$Itemid;}
$cancel_url = HIKASHOP_LIVE.
'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.
$order->order_id.$url_itemid;
$debug = $method->payment_params->debug;
$vars = Array(
2- I disabled the tiny editor and default editor and it's working. However I need it, so what can I do ?
By the way what would it be easier for you to get access my back end ?
Thanks
Please Log in or Create an account to join the conversation.
$notify_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=notify¬if_payment=paypal&tmpl=component&lang='.$locale;
$return_url = www.salsamundo.v3.salsamundo.eu ;
global $Itemid;
$url_itemid='';
if(!empty($Itemid)){$url_itemid='&Itemid='.$Itemid;}
$cancel_url = HIKASHOP_LIVE.
'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.
$order->order_id.$url_itemid;
$debug = $method->payment_params->debug;
Please Log in or Create an account to join the conversation.
By the way, you're missing the quotes on the $return_url so it's normal that it doesn't work.
Please Log in or Create an account to join the conversation.
I still have a 404 error
$return_url = ' salsamundo.v3.salsamundo.eu ';
global $Itemid;
$url_itemid='';
if(!empty($Itemid)){$url_itemid='&Itemid='.$Itemid;}
$cancel_url = HIKASHOP_LIVE.
'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.
$order->order_id.$url_itemid;
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
using chrome i was unabled to edit it but it worked on mozilla
Please Log in or Create an account to join the conversation.