portent
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function: is_admin() “What theThis function is in wp_settings.php. I had the same problem because I hadn’t copied that file over. As soon as I did, it fixed it..
[signature removed]
Forum: Fixing WordPress
In reply to: new button “link to Main Site” (from blog)Just done this now. The key is redirectify. Look down this page http://codex.wordpress.org/FAQ_Advanced_Topics
for
“How to create a link in my header that links to a URL”
In my case I have a blog on getset2move.com under /blog and needed a way back to the main site. I downloaded the redirectify plugin (one sngle php file), activated it then added a Back to Main site page and published it. I then added a custom field with key of redirect and url of /index.html and saved it. It works.
However I now have to solve my broken 404 page. the .htaccess directs it to the blog! You’ll get this as well if you’ve modified your .htaccess for customised permalinks. Time to bone up on mod-rewrite!
Forum: Fixing WordPress
In reply to: Memory Limit Problem During Upgrade – SolutionPS. I’m not sure of my php to say whether this is possible, but could this be considered as some kind of system wide option for a future version?
Forum: Fixing WordPress
In reply to: Fatal Memory ErrorWhich ever scripts have this problem, add the following at the start of the script just after <php
ini_set(“memory_limit”,”16M”);
You can use smaller or larger values. eg 12M, 20M etc.