
dOnkSkie
Members-
Posts
15 -
Joined
-
Last visited
Profile Information
-
Activity
Freelancer
dOnkSkie's Achievements
Newbie (1/14)
0
Reputation
-
How to remove save button for customized fields?
dOnkSkie replied to otzy's topic in Core developers
Works great! tried it using ps 1.6.09 -
Solution I made is the same as my previous post http://www.prestashop.com/forums/topic/375616-solved-paypal-europe-module-fatal-error-allowed-memory-size-of-134217728-bytes-exhausted/?do=findComment&comment=1852426
- 4 replies
-
- paypal internal server error
- paypal error 500
- (and 2 more)
-
I requested to increase the php memory limit from our hosting provider but still not working. Solution: Disable the PDF invoice generation. Go to Orders -> Invoices -> Disable invoices. PS: This solves the issue if you are not using PDF for invoices. I think PayPal module is having issues generating PDF invoices.
- 8 replies
-
- paypal allowed memory size
- paypal fatal error
- (and 3 more)
-
So this means a known issue from PayPal then, right? It's just weird, order shows in BO notification.
- 4 replies
-
- paypal internal server error
- paypal error 500
- (and 2 more)
-
Hi All, Our website's memory limit was changed to 1024M by our hosting provider and we set the php.ini to 1024M. However, we are gettting 500 Internal Server Error after confirming the PayPal payment. Here's the part we get the error: 1. Click PayPal button 2. Redirect to PayPal page and successfully logged to account 3. Click Confirm button 4. Couple of seconds, it prompts the 500 Internal Server error message It should redirect to confirmation message to show success but never happened. In BO, the order shows up, so this means it's either PayPal or the PayPal module is having the issue. Anyone experiencing the same issue we have? Hope to hear any response. Thanks! Prestashop 1.5.2 PayPal Module Europe 3.7.2
- 4 replies
-
- paypal internal server error
- paypal error 500
- (and 2 more)
-
Tried it, didn't work. Currently on a shared hosting. So I guess we need to upgrade and get a server hosting, is that what you think might solve the issue?
- 8 replies
-
- paypal allowed memory size
- paypal fatal error
- (and 3 more)
-
That's the current memory limit we are using in php.ini. Does the error have something to do with the hosting server memory limit?
- 8 replies
-
- paypal allowed memory size
- paypal fatal error
- (and 3 more)
-
Should I use memory_limit -1 or just remove the memory limit code in php.ini?
- 8 replies
-
- paypal allowed memory size
- paypal fatal error
- (and 3 more)
-
Hi All, We recently experiencing issues in payment processing using PayPal Europe module. Here is the error Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 523800 bytes) in /var/sites/p/domain.com/public_html/tools/tcpdf/tcpdf.php on line 8645 Our php.ini is currently set to 256M memory limit and our website was working find until last week. I've tried setting the php.ini to 512 and 1024 but seems our server default is only up to 512. The error will display after the customer successfully logged in to their paypal account. Below is the code in tcpdf.php on line 8645 which I think is related to images and I don't have any idea why it's causing the error. // embed mask image $imgmask = $this->Image($tempfile_alpha, $x, $y, $w, $h, 'PNG', '', '', $resize, $dpi, '', true, false); Before the error happened, our last modification to the website was uploading products. So we deleted couple of products as it reached beyond 3k and now it's below 3k but still having the same error message. By the way, paying card works fine. Anyone who has experience the same error or know some fixes that might help? It's been almost 2 weeks now and we haven't found the right solution. Thanks! Using Prestashop 1.5.2
- 8 replies
-
- paypal allowed memory size
- paypal fatal error
- (and 3 more)
-
Hi Vekia, I did reset the module but still got the issue. I think I need to closed this thread as I am using another module which works better. Thank you for your help in answering questions.
- 7 replies
-
- token
- static token
-
(and 1 more)
Tagged with:
-
This is the url while I am in the module configuration page. /index.php?tab=AdminModuleMenu&token= I selected a link/category then click edit > system load > redirect to page not found jbx menu is calling AdminModuleMenu.php and has not been updated.
- 7 replies
-
- token
- static token
-
(and 1 more)
Tagged with:
-
Hi Vekia, When in jbx_menu configuration page and select the link like the categories I have created then click on edit, it then redirects to the front view like this one www.domain.com/page-not-found. It should remain in the Back Office The module was working fine before. I already deleted the tables created by the module which are ps_menu and ps_menu_lang and reinstalled it but still unable to edit. I thought this has something to do with the token. Is it something to do with cache?
- 7 replies
-
- token
- static token
-
(and 1 more)
Tagged with:
-
Hi guys, I'm having a Page not found using JBX_Menu and I suspect this has something to do with the token. How do I generate or change the token and static token of my site? I'm using Prestashop 1.5.2. When I edit my menu from back office it redirects to the front view of the site and shows page not found. Any ideas? Thanks!
- 7 replies
-
- token
- static token
-
(and 1 more)
Tagged with:
-
Hi All, I'm using Prestashop 1.5.2 and installed JBX_MENU which was working fine where I can edit the link or categories added. I then installed cleanURLs and now editing the categories or links in jbx_menu redirects to page not found while I am in the BO and configuring jbx_menu by selecting the added categories or links and press edit, it will redirect to www.domain.com/page-not-found. I assume it's because of the cleanURLs that I installed which overrides some files in the controllers and classes. I tried to reset the jbx_menu and cleanURLs but nothing happened. I uninstall/reinstall the modules and deleted but still no good. I noticed that the cleanURLs is still functioning though I already deleted the module's folder and my product or category links was not reset to the default link with ID. I ended up messing the site and restore the backups. Anybody who has the same issue or using jbx_menu and cleanURLs at the same time? If you have any idea about this please leave a comment. Any help is much appreciated. Thanks!
-
How to remove save button for customized fields?
dOnkSkie replied to otzy's topic in Core developers
Hi Everyone, Sorry, had to edit my post. I think I have it working using shamun's CartController.php in Prestashop 1.5.2 with the default theme. I moved the entire <!-- Customizable products --> content to where the add to cart button is. Removed the Save button and added onclick="javascript:saveCustomization()" to the add to cart input button. It works and just need some CSS adjustments. But, I'm not quite sure if it won't affect other modules or features. Anyway, I achieved my goal in removing the save button and make sure the input data will display after clicking the add to cart button. Thank you all! To Rhapsody and shamun, very useful post