amplidyne
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error saving media attachmentIf you have tried settings changes as well as CHMOD tricks and nothing works, here is something else to try.
When you upload files from your computer to your online server, this data travels from your computer thru a tmp folder before being saved into wp-content/uploads folder.
Path to this tmp folder is controlled through a line in php.ini file on your server. Depending upon the server setup, you may or may not have access to this file. If this is not setup correctly in your php.ini file, wordpress will try to use a system tmp folder on the server that applications such as wordpress have no access to.
Either update the php.ini file or call your tech support and they can do it for you.
You’re running into this issue because of relative paths.
Add a base h ref in your header file just before </head> tag.<base href="http://www.yoursite.com/" /> </head>This should fix your issue.
Thanks,
Forum: Fixing WordPress
In reply to: Permalinks flashYou’re running into this issue because of relative paths.
Add a base h ref in your header file just before </head> tag.<head> <base href="http://www.yoursite.com/" /> </head>This should fix your issue.
Thanks,