lament
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: XML to WXR issue.^ mine’s off but I’m still having this issue. :/
Forum: Fixing WordPress
In reply to: XML to WXR issue.Does the current month folder exist and is it writeable by WP?
wp-content/uploads/2012/01Yes.
Debug is showing:
0:0 failed to load external entity "/var/www/vhosts/[site.com]/httpdocs/wp-content/uploads/site.wordpress.2012-01-27.xml_.txt"
why is it appending _ after xml and .txt to it?
Forum: Fixing WordPress
In reply to: XML to WXR issue.Yeah I know it would 404, but that’s not the issue.
I uploaded the folders, made sure they were writable.. but I’m still getting that error.
XML shows:
<wp:wxr_version>1.1</wp:wxr_version>
Forum: Fixing WordPress
In reply to: XML to WXR issue.Hey all,
Having this same problem. Updated to the latest WP, exported the .xml file, switched web hosts, and now trying to upload the xml file but getting:
Sorry, there has been an error.
This does not appear to be a WXR file, missing/invalid WXR version numberPHP safe_mode is off.
Do I have to re-create all the folders I had in the /uploads folder and
chmod 755
them?Thanks for any help.
Forum: Fixing WordPress
In reply to: Service Temporarily Unavailable when editing footer.phpwell after manually editing the file, reuploading it.. then trying to edit it again via WP, it’s fine.
still weird tho.. ??
thanks for the help..
Forum: Fixing WordPress
In reply to: Service Temporarily Unavailable when editing footer.phpbut I can take a file in the same directory and edit it just fine with the theme editor. that doesn’t seem odd?
just trying to figure out what’s up..
Forum: Fixing WordPress
In reply to: Service Temporarily Unavailable when editing footer.phpas I said, every other file in the theme I can edit just fine. I really don’t think it’s the host.
Forum: Themes and Templates
In reply to: Can’t figure out how to remove the border around my Formit’s the fieldset tag.
look in your CSS file for the fieldset tag. if it’s not there, add this:
fieldset {border: 0;}
if it is there, just add the border: 0; to it.
Forum: Fixing WordPress
In reply to: Removing the Paragraph tagsah nevermind.. looks like i found it – WP Unformatted:
https://www.alexking.org/index.php?content=software/wordpress/content.php
Forum: Fixing WordPress
In reply to: Removing the Paragraph tagsdid we find a plugin/fix for this, because i’m also hating that every line is wrapped in a
<p>
tag unnecessarily.Forum: Fixing WordPress
In reply to: Posts show in admin, but not on sitethe above applies to version 0.9.2 or earlier, btw. it will be fixed in future versions.
Forum: Fixing WordPress
In reply to: Posts show in admin, but not on sitehere’s the fix:
library/Vanilla.User.class.php lines 1057, 1058
Change this:
setcookie("pass", $EncryptedUserID, time()+31104000,"/",agCOOKIE_DOMAIN);
setcookie("name", $VerificationKey, time()+31104000,"/",agCOOKIE_DOMAIN);To this:
setcookie("vanillapass", $EncryptedUserID, time()+31104000,"/",agCOOKIE_DOMAIN);
setcookie("vanillaname", $VerificationKey, time()+31104000,"/",agCOOKIE_DOMAIN);library/Vanilla.User.class.php lines 1243 & 1244
Change this:
$EncryptedUserID = ForceIncomingCookieString("pass", "");
$VerificationKey = ForceIncomingCookieString("name", "");To this:
$EncryptedUserID = ForceIncomingCookieString("vanillapass", "");
$VerificationKey = ForceIncomingCookieString("vanillaname", "");library/Vanilla.Session.class.php lines 35 – 38
Change this:
setcookie("name", " ", time()-3600,"/",agCOOKIE_DOMAIN);
unset($_COOKIE["name"]);
setcookie("pass", " ", time()-3600,"/",agCOOKIE_DOMAIN);
unset($_COOKIE["pass"]);To this:
setcookie("vanillaname", " ", time()-3600,"/",agCOOKIE_DOMAIN);
unset($_COOKIE["vanillaname"]);
setcookie("vanillapass", " ", time()-3600,"/",agCOOKIE_DOMAIN);
unset($_COOKIE["vanillapass"]);Then be sure to clear your browser of your existing vanilla cookies to prevent any further conflicts. You only need to do this once to get rid of the old cookie values. You shouldn’t have to do it again in the future.
Forum: Fixing WordPress
In reply to: Posts show in admin, but not on siteactually he missed a few lines of code.. so he’s about to post a fix and I’ll see if it works.
and no i’m not the only person with this problem.. there are a few others around the forum having it too.
Forum: Fixing WordPress
In reply to: Posts show in admin, but not on sitepodz,
changing the cookie names didn’t work for Mark (vanilla creator). any suggestions?
here is what I did:
cleared all cookies and cache.
went to the my site, post comes up fine.
went to the forum (vanilla), logged in.
went to the site with posts, reloaded – no posts.
logged out of forum.
back to the site, reloaded – still no posts (whereas before the posts were there when I reloaded after logging out).
Forum: Fixing WordPress
In reply to: Vanilla Forum & Posts Not Found