Danny-T
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Organiser] Upgrade from OLD version, events no longer appearExcellent, that’s sorted it!
I did have to remove a handful of events that were in the erroneous state but once I did that everything is working again.
Thanks for the help!
Forum: Plugins
In reply to: [Event Organiser] Upgrade from OLD version, events no longer appearI suspected that might be the case so spent some time trawling the release notes but couldnt find anything so took the lazy option of posting here 😛
So should I be okay downgrading to 1.5.7 then re-upgrading to latest?
Forum: Fixing WordPress
In reply to: Email vulnerability?Seemingly disabling PHP’s mail() function did do the trick, there were a handful of spam messages in the retry queue which processed after I’d disabled it so I thought it hadn’t worked.
For anyone else with the same issue:
1 – Disable mail function in your php.ini:
disable_functions=mail
2 – Install SMTP plugin E.g. http://wordpress.org/extend/plugins/wp-mail-smtp/
3 – Configure plugin settingsForum: Fixing WordPress
In reply to: IIS image upload – View issuesJust had this and figured it out. The reason is php uses a temp folder to first upload the files to and then copies it to the actual destination folder taking with it the permissions inherited from the original temp folder.
By default that folder is c:\windows\temp but you can change it in your php.ini (probably in c:\program files\php\php.ini > then edit the property upload_tmp_dir).
I created a folder “C:\inetpub\phptemp”, applied the IIS_Users permissions and pointed the php.ini variable at it and all is good again.