Skip to main content

Error using jomsocial plugin

More
15 years 2 months ago - 15 years 2 months ago #20193 by fupfac
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
Last edit: 15 years 2 months ago by fupfac.

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

More
15 years 2 months ago #20198 by nicolas
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.

More
15 years 2 months ago #20202 by fupfac
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.

More
15 years 2 months ago #20204 by nicolas
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.

More
15 years 2 months ago #20209 by fupfac
Toujours pareil :(

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

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

More
15 years 2 months ago #20212 by nicolas
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.

More
15 years 2 months ago #20218 by fupfac
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.

More
15 years 2 months ago #20223 by nicolas
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.

More
15 years 2 months ago #20231 by fupfac
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.

More
15 years 2 months ago #20233 by fupfac
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.

More
15 years 2 months ago #20245 by nicolas
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.

More
15 years 2 months ago #20257 by fupfac
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

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

More
15 years 2 months ago #20258 by nicolas
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.

More
15 years 2 months ago #20259 by fupfac
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

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

More
15 years 2 months ago #20260 by fupfac
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

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

More
15 years 2 months ago #20262 by fupfac
Still not working. I cleaned up the cache and everything

$notify_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=notify&notif_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.

More
15 years 2 months ago #20264 by nicolas
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.

More
15 years 2 months ago #20274 by fupfac
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.

More
15 years 2 months ago #20275 by fupfac
I also tried with ' salsamundo.v3.salsamundo.eu ';

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

More
15 years 2 months ago #20276 by fupfac
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.307 seconds
Powered by Kunena Forum