Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • That worked for me. Interesting. Hope they fix it!

    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.

    I’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

    I 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.

    It 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: jQuery
    Thread Starter staggsxi

    (@staggsxi)

    Thanks for the help. I found out for myself.

    Same here. Is anything being done?

    Forum: Plugins
    In reply to: Automatic Upgrade Broke
    Thread Starter staggsxi

    (@staggsxi)

    I’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 Broke
    Thread Starter staggsxi

    (@staggsxi)

    It 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 Broke
    Thread Starter staggsxi

    (@staggsxi)

    I 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 Broke
    Thread Starter staggsxi

    (@staggsxi)

    Anybody have ANY ideas? I’m on my last rope here…

    Forum: Plugins
    In reply to: Automatic Upgrade Broke
    Thread Starter staggsxi

    (@staggsxi)

    I 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 Broke
    Thread Starter staggsxi

    (@staggsxi)

    I’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.

    Thread Starter staggsxi

    (@staggsxi)

    Made 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');
    
    ?>
    Thread Starter staggsxi

    (@staggsxi)

    No one has a solution?

Viewing 15 replies - 1 through 15 (of 15 total)