maybesbabies
Forum Replies Created
-
Aaaand, I messed my link up. Sorry!
<img src=”https://i.imgur.com/xzW99yZ.png” title=”Hosted by imgur.com” />
I’m not sure I understand what that means, I apologize. I may not have explained myself well. What I’m wondering is if I need to remove this bit of code from my config file:
I don’t have any files on my local host anymore, they were all put on my hosting account, so I don’t want that code to point to my local machine. However, I don’t know what I need to do to edit. What I’m asking is if I should delete that code, and if so, starting where? Or do I need to alter the code in some way to point to the file on my host?
Thank you, I apologize for the hassle.
Forum: Fixing WordPress
In reply to: Can't update due to bad path for tmp in config fileHello, I still haven’t had any feedback on this. I was wondering if anyone’s encountered it as well. I attempted to update WP again, and this is the error I’m receiving.
Warning: touch() [function.touch]: Unable to create file C:/xampp/apps/wordpress/tmp/wordpress-3.tmp because No such file or directory in /home/content/35/5914235/html/landscaping/wp-admin/includes/file.php on line 155
Warning: unlink(C:/xampp/apps/wordpress/tmp/wordpress-3.tmp) [function.unlink]: No such file or directory in /home/content/35/5914235/html/landscaping/wp-admin/includes/file.php on line 479
Download failed.: Destination directory for file streaming does not exist or is not writable.Installation Failed
Anyone out there who can help? Thanks.
Forum: Fixing WordPress
In reply to: Permalink ReroutingHave you checked your config.php file? Look for some code that should look like this:
define('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST']); define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST']);
When mine was messed up, it looked like this:
define('WP_SITEURL', 'https://myfullurl.com' . $_SERVER['HTTP_HOST']) . '/wordpress'; define('WP_HOME', 'https://myfullurl.com' . $_SERVER['HTTP_HOST']) . '/wordpress';
I had to edit the file to make it look like the first bit of code, and it stopped doubling. I’m not sure your circumstances are the same, but it’s at least one more place to look.
Forum: Fixing WordPress
In reply to: Permalink ReroutingHi Lindsay, it is pulling the full url from somewhere, instead of the page name. Have you checked each of your pages to make sure there’s no custom url listed anywhere, especially with SEO plugins? Go to edit page, and check the permalink url’s for each page. See if they’re also doubling there.
As a side note, have you used the Duplicator plugin? I noticed it doubling up my url’s in my config.php file, and had to edit that bit of php to stop it. Hope some of this helps, I’m a total noob myself!