staggsxi
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Widgets don’t drag and drop as advertisedThat worked for me. Interesting. Hope they fix it!
Forum: Installing WordPress
In reply to: Total Newbie needs some help final steps!Where did you upload wordpress to begin with? It doesn’t seem you have uploaded it to the right folder on your server because I get an error for everything I’ve tried.
Forum: Installing WordPress
In reply to: Warning – Don’t UpgradeI’m not a developer, but plugins are exactly that, not part of the program. Its not WordPress’ fault for the plugins breaking.
Also, take a look here: https://www.ads-software.com/support/topic/278484?replies=22
Forum: Installing WordPress
In reply to: Widgets don’t drag and drop as advertisedI just took a look at the source code, and it seems there was an oddly commented line of code just after the <body> tag in the admin panel.
<body class="wp-admin no-js index-php"> <script type="text/javascript"> //<![CDATA[ (function(){ var c = document.body.className; c = c.replace(/no-js/, 'js'); document.body.className = c; })(); //]]> </script>
Not sure how to take that out or even why thats there. Could be causing some problems. I’m going to keep looking into it.
Nevermind, I found it and commented it out and it had no effect whatsoever.
Forum: Installing WordPress
In reply to: Widgets don’t drag and drop as advertisedIt seems none of the javascript in my admin panel is working. No drop-down menus or anything “fancy”. I don’t have any javascript errors (and yes, javascript is enabled on my browsers), it just seems to not be working.
Forum: Fixing WordPress
In reply to: jQueryThanks for the help. I found out for myself.
Forum: Fixing WordPress
In reply to: new incoming links problem topicSame here. Is anything being done?
Forum: Plugins
In reply to: Automatic Upgrade BrokeI’m not sure about maintenance mode, but I checked my permissions, and apparently I was also having connection problems at the time so some of my files were not successfully CHMOD-ed back to their original permission.
Thanks, for your help, Otto.
Forum: Plugins
In reply to: Automatic Upgrade BrokeIt is definitely there. Is that file even called from accessing wp-admin, though?
I am also seeing this:
[16-Jul-2008 12:19:57] PHP Warning: require_once(/home/getxagn1/public_html/whatsleet/press/press/wp-load.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in /home/getxagn1/public_html/whatsleet/press/wp-blog-header.php on line 12 [16-Jul-2008 12:19:57] PHP Fatal error: require_once() [<a href='function.require'>function.require</a>]: Failed opening required '/home/getxagn1/public_html/whatsleet/press/press/wp-load.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/getxagn1/public_html/whatsleet/press/wp-blog-header.php on line 12
Where it is repeating the /press directory. I think I may have fixed this, however, I am not seeing any of these errors anymore. But, my wp-admin problem still exists, just as other files being executed. What should these files permissions be?
Forum: Plugins
In reply to: Automatic Upgrade BrokeI did, and I still can’t access anything. I deleted my previous wordpress files, and did a clean install. With/without plugins. I have no idea where the site is all of a sudden giving me 404s. The files ARE there. In my error log I am getting a lot of this:
[16-Jul-2008 00:08:51] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required './press/wp-blog-header.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/getxagn1/public_html/whatsleet/index.php on line 4 [16-Jul-2008 00:08:52] PHP Warning: require(./press/wp-blog-header.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/getxagn1/public_html/whatsleet/index.php on line 4 [16-Jul-2008 00:08:52] PHP Warning: require(./press/wp-blog-header.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/getxagn1/public_html/whatsleet/index.php on line 4
Everything else works, until it needs an actual file it seems. Look: https://www.whatsleet.com I can’t do press/wp-admin/upgrade.php. I can’t do press/wp-login.php or anything of this sort. I think something messed up in the .htaccess file? I have no idea…
Forum: Plugins
In reply to: Automatic Upgrade BrokeAnybody have ANY ideas? I’m on my last rope here…
Forum: Plugins
In reply to: Automatic Upgrade BrokeI can’t access anything in my wordpress directory, still. I can access the index file, which isn’t part of this directory. I have no clue how this happened, other than WPAU has somehow changed something somewhere I can’t find it. I’ve uploaded all of the WP 2.6 files, and the same is happening. I don’t know how to disable the WPAU plugin without the admin interface…
Forum: Plugins
In reply to: Automatic Upgrade BrokeI’m not sure what the update did. I hit “Begin Update” and then there was a ‘Continue’ link that I clicked. Then I noticed that everything under my wordpress directory didn’t work anymore.
Forum: Fixing WordPress
In reply to: Add Permalink anywhere in postMade my own solution. Works like [morelink title=”Continue on for screenshots!”] and posts a permalink with the title as the sentence.
<? /* Plugin Name: Custom Shortcodes Description: Contains code to create custom shortcodes Author: Stephen Agnic Version: 1.0 */ function do_more_link($attr) { extract(shortcode_atts(array( //extract the attributes from the array and replace 'title' => '', //the defaults with the ones defined in the tag if any ), $attr)); $link = get_permalink(); if (!is_single()) $dolink = '<a href="'.$link.'" title="'.$title.'">'.$title.'</a>'; else $dolink = ''; return $dolink; //return the output. } add_shortcode('morelink', 'do_more_link'); ?>
Forum: Fixing WordPress
In reply to: Add Permalink anywhere in postNo one has a solution?