Forum Replies Created
-
AuthorPosts
-
August 9, 2019 at 8:08 pm in reply to: estore – digital download link error with amazon s3 integration #79801SimieParticipant
Thanks for all the help it is very much appreciated. It is now working as it should.
If anyone else is experiencing a similar issue these are the steps I used with the fantastic help of Tips&Tricks!
Contacted server.
Memory was increased of the WP site.
Settings re-checked on WP Estore & all Amazon S3 buckets made private.
Contacted server again.
PHP was increased from 5.6 to 7.2 (this made my site faster loading incidentally) I initially made the mistake a few months ago of upgrading the server to a php of 7.1.31 and thought that was what all that was needed. BUT NOT MY WEBSITE PHP which was still on older version of 5.6 until it was pointed out to me . If you have CPanel it can be changed in the Multi PHP changer.
Still not working.
Went through plugins 1 by 1 and deactivated and test. Plugin called BackWPup was the one causing the issues.
All working now.
August 7, 2019 at 10:08 am in reply to: estore – digital download link error with amazon s3 integration #79798SimieParticipantHi Thanks for the reply.
I have tried this from the 4247 guide
‘Go to the “Admin Functions” menu of eStore plugin. Generate an encrypted download link for the product you just created. Use the generated download URL in the browser’s address bar to make sure it can correctly retrieve the file from your s3 account.’
and get the ‘The site is experiencing technical difficulties.’ every time
I made the files private on s3 and no difference.
I have tried the link created on the amazon server the s3 ie. [https://s3.eu-west-2.amazonaws.com/ss-sunfly/full-track/SF1112432+-+Gene+Pitney+-+24+Hours+From+Tulsa.mp3]
this plays no problem.
when i use encrypted link from the admin functions, i get the ‘The site is experiencing technical difficulties.’
i have double checked my settings and cant understand what is going on.
Please advise further when you get chance.
thank you
January 1, 2019 at 7:54 pm in reply to: Estore – extra shortcode -product_search_with_add_to_cart_button & audio #78933SimieParticipantThanks very much. I have sent you details for a request for custom work done.
December 29, 2018 at 11:52 pm in reply to: Estore – extra shortcode -product_search_with_add_to_cart_button & audio #78931SimieParticipantHello.
I have not succeeded in adding the compact audio player into the [wp_eStore_product_search_with_add_to_cart_button] shortcode .
I have tried various code around the the following lines.
* = modified code.
( $output .= ‘<table>’;
$output .= ‘<th></th>’;
* $output .= ‘<th>’ . Play. ‘</th>’;
$output .= ‘<th>’ . ESTORE_PRODUCT_NAME . ‘</th>’;
$output .= ‘<th>’ . ESTORE_PRICE . ‘</th>’;
$output .= ‘<th></th>’;
if ($wp_eStore_db) {
foreach ($wp_eStore_db as $wp_eStore_db) {
if (empty($wp_eStore_db->thumbnail_url)) {
$wp_eStore_db->thumbnail_url = WP_ESTORE_URL . ‘/images/no-image-specified.gif’;
}
$output .= ‘<tr>’;
if (!empty($wp_eStore_db->product_url)) {
$target_url = $wp_eStore_db->product_url;
if (!empty($wp_eStore_db->target_thumb_url)) {
$target_url = $wp_eStore_db->target_thumb_url;
}
$output .= ‘<td><img src=”‘ . $wp_eStore_db->thumbnail_url . ‘” class=”eStore_search_result_thumbnail”></td>’;
$output .= ‘<td>product_url . ‘” target=”_blank”>’ . $wp_eStore_db->name . ‘</td>’;
} else {
if (!empty($wp_eStore_db->target_thumb_url)) {
$output .= ‘<td>target_thumb_url . ‘” target=”_blank”><img src=”‘ . $wp_eStore_db->thumbnail_url . ‘” class=”eStore_search_result_thumbnail”></td>’;
} else {
$output .= ‘<td><img src=”‘ . $wp_eStore_db->thumbnail_url . ‘” class=”eStore_search_result_thumbnail”></td>’;
}
* $output .= ‘<td>’ . sc_embed_player_handler($player_args) . ‘</td>’;
* //$audio_file_url = apply_filters(‘eStore_preview_audio_file_url’, $ret_product->product_download_url, $id=”);
* //line below modified copy try to change product download url to product id to reference player $id?
* $audio_file_url = apply_filters(‘eStore_preview_audio_file_url’, $ret_product->product_url, $id);
* $player_args = array(‘fileurl’ => $audio_file_url);
$output .= ‘<td>’ . $wp_eStore_db->name . ‘</td>’;
}
$output .= ‘<td>’ . print_digi_cart_payment_currency($wp_eStore_db->price, WP_ESTORE_CURRENCY_SYMBOL, “.”) . ‘</td>’;
$output .= ‘<td>’ . get_button_code_for_element($wp_eStore_db) . ‘</td>’;
$output .= ‘</tr>’; )
I have added the $id & $args to the function :
function print_eStore_add_to_cart_product_search_result($search_term, $search_category = ”, $category_id = ”, $id = ”, $args= array())
The result is I have in red :
“Compact Audio Player Error! You must enter the mp3 file URL via the “fileurl” parameter in this shortcode. Please check the documentation and correct the mistake.”
The error message is instead of the player button.
Please, if possible, can you advise what i should look to change (or add).
If it’s not going to work, please can you say and will think on another solution.
thanks.
December 19, 2018 at 8:43 pm in reply to: Estore – extra shortcode -product_search_with_add_to_cart_button & audio #78930SimieParticipantthanks very much. I will give that a go later and let you know how i got on.
December 18, 2018 at 1:57 pm in reply to: Estore – extra shortcode -product_search_with_add_to_cart_button & audio #78928SimieParticipantThanks for the reply. That would very helpful. I have a basic/moderate understanding of php and have modified some php previously without any mishaps. Thanks
-
AuthorPosts