ugosinhache
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3.5 causing major jQuery and JavaScript errorsOnce version 3.5.1 will become available I will try to remove the line and see if they fixed the issue.
Forum: Fixing WordPress
In reply to: 3.5 causing major jQuery and JavaScript errorsHi Morgan,
I faced the same issue and fixed it by adding:
define('CONCATENATE_SCRIPTS', false);
in the wp-config.php file, right before this line:
require_once( ABSPATH .'wp-settings.php' );
Hope it helps!
I got the same problem after 30 days I have installed the plugin. The problem arises when the plugin wants to force you to change the password.
Once you get the redirection loop just open the site home page (at that moment you are already logged in) and you will see a page asking to enter a new password: enter the new password and you will be redirected to the dashboard.
??
Forum: Plugins
In reply to: [myEASYhider] [Plugin: myEASYhider] Hiding Personal Options not workingHi, please try the latest version: 1.1.2
thanks!
Forum: Plugins
In reply to: [myEASYhider] [Plugin: myEASYhider] wordpress logofixed in version 1.1.2
thanks!
Forum: Plugins
In reply to: [myEASYhider] [Plugin: myEASYhider] Hiding custom itemsyou are right, at the moment custom items are for all the users, please open a ticket so that I do not forget to enhance this feature in a future version.
thanks!
Forum: Plugins
In reply to: [myEASYhider] [Plugin: myEASYhider] doesn't work rightPlease give a detailed version of your problem, maybe its not a bug but the need for a better explanation.
thanksForum: Plugins
In reply to: [myEASYhider] [Plugin: myEASYhider] Security Allert !!!!= 1.0.8 (23 July 2011) =
All the images and javascript code is now loaded from the same server where the plugin is installed.
Last year I tought it might be useful to have the myeasy common images and code loaded from a CDN to avoid having to update all the plugins in the series each time an image changes and to load pages faster; so I moved all the common items to a CDN.
Today I received a kind email from www.remarpro.com letting me know that “there a potential malicious intent issue here as you {me} could change the files to embed malicious code and nobody would be the wiser” and asking me to change the code.
I promptly reacted to show everyone that I am 101% in bona fide and here is a new version.Forum: Plugins
In reply to: [myEASYhider] [Plugin: myEASYhider] non lavora beneRisolto!
??Forum: Plugins
In reply to: [myEASYbackup] myeasybackup has backdoor equivalent security vulnerabilityGlad to see the problem is gone!
Forum: Plugins
In reply to: [myEASYbackup] myeasybackup has backdoor equivalent security vulnerabilityI just installed the WSD plugin and run a “Scan Reports” but the problem is not shown.
I am using WSD Plugin 0.4 and myEASYbackup 1.0.8.1: are you using the same versions?
Forum: Plugins
In reply to: [myEASYbackup] myeasybackup has backdoor equivalent security vulnerabilitydid you get the info by installing and using the WSD plugin or did you sign up and ran a remote service?
Just to know how can I proceed to find out how to fix this issue.
thanks
Forum: Plugins
In reply to: [myEASYbackup] Doesn't workThe section of the settings form for selecting the save path is missing.
please get in touch through the contact form at https://myeasywp.com/contact/
And while we’re here… could you jam any more spam onto the settings page?
I cannot get what you mean, please elaborate.
thank you
Forum: Plugins
In reply to: [myEASYbackup] [Plugin: myEASYbackup] The Backup button doesn't clickFixed!
the problem was in another plugin, wp-e-commerce, showing a warning message that prevented the myeasybackup javascript code to run.
This was the message:
<b>Warning</b>: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/filmdigi/public_html/wp-content/plugins/myeasybackup/js/myeasybackup.js.php:14) in <b>/home/filmdigi/public_html/wp-content/plugins/wp-e-commerce/wpsc-core/wpsc-constants.php</b> on line <b>17</b><br />
Solution
I changed the “/wp-content/plugins/wp-e-commerce/wpsc-core/wpsc-constants.php” script by adding a @ in front of the session_start command. By doing this the warning message is not issued anymore and I was able to create a backup.Original code:
if ( ( !is_array( $_SESSION ) ) xor ( !isset( $_SESSION['nzshpcrt_cart'] ) ) xor ( !$_SESSION ) ) session_start(); }
Modified code:
if ( ( !is_array( $_SESSION ) ) xor ( !isset( $_SESSION['nzshpcrt_cart'] ) ) xor ( !$_SESSION ) ) @session_start();/* edited by camaleo, July, 4, 2011: added '@' to avoid warning messages to be shown and break other plugins */ }
I suggest to get in touch with the wp-e-commerce author in order to verify that everything can properly work after this modification.
Also, he should amend his code so that, future updates, will not break myeasybackup (and possibly other plugins) code.
@dinoraptor101 are you also using wp-e-commerce? if not most probably you are using another plugin issuing a session_start(); command in an improper way.
Forum: Plugins
In reply to: [myEASYbackup] [Plugin: myEASYbackup] The Backup button doesn't clickanswered by email