Error using jomsocial plugin

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20193

Hello there !

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

Attachments:
Last edit: 12 years 9 months ago by fupfac.

Please Log in or Create an account to join the conversation.

  • Posts: 81504
  • Thank you received: 13064
  • MODERATOR
12 years 9 months ago #20198

1. That's indeed because of the SEF. Could you try to change the code:
$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.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20202

Thanks for you reply !

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;

But I still have the same issue :(

Please Log in or Create an account to join the conversation.

  • Posts: 81504
  • Thank you received: 13064
  • MODERATOR
12 years 9 months ago #20204

Please turn off the option "301 redirect from non-sef to sef URL" in SH404SEF.

Please Log in or Create an account to join the conversation.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20209

Toujours pareil :(

Je peux peut être vous passez les codes d'accès ?

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 81504
  • Thank you received: 13064
  • MODERATOR
12 years 9 months ago #20212

I just tried on your website and it's working and the SEF is activated.

Please Log in or Create an account to join the conversation.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20218

We tried with mac and pc with new orders and customers and we still have the same issue

Please Log in or Create an account to join the conversation.

  • Posts: 81504
  • Thank you received: 13064
  • MODERATOR
12 years 9 months ago #20223

I can assure you it's working fine on my end on your website...

Please Log in or Create an account to join the conversation.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20231

We tried in Opera, Chrome and mozilla :(

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.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20233

Hello !

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.

  • Posts: 81504
  • Thank you received: 13064
  • MODERATOR
12 years 9 months ago #20245

Well, I indeed tried the cancel link of paypal. But your screenshot red error was also for the cancel link.
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.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20257

Hello !

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

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 81504
  • Thank you received: 13064
  • MODERATOR
12 years 9 months ago #20258

Then let's do differently. Just put a URL where you want the user to go at the end of the checkout int he "return URL" option of the paypal plugin. That should remove the problem. If that still doesn't work, change the line:
$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.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20259

Hello there !

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

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20260

Hello there !

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

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20262

Still not working. I cleaned up the cache and everything

$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.

  • Posts: 81504
  • Thank you received: 13064
  • MODERATOR
12 years 9 months ago #20264

What error are you getting ?
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.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20274

Hello there !

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.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20275

I also tried with ' salsamundo.v3.salsamundo.eu ';

Please Log in or Create an account to join the conversation.

  • Posts: 33
  • Thank you received: 0
12 years 9 months ago #20276

Do you know why category description does not appear ?

using chrome i was unabled to edit it but it worked on mozilla

Please Log in or Create an account to join the conversation.

Time to create page: 0.072 seconds
Powered by Kunena Forum