Forum Replies Created

Viewing 15 replies - 31 through 45 (of 45 total)
  • Forum: Plugins
    In reply to: LifeStream Plugin

    Hello! I currently use this plugin on my blog, but after trying to browse through the plugin files, I’m unable to find where the icons png’s are being “called” from. Basically, I want to reroute the call from the /lifestream/images folder to point to a folder on my CDN host. The file and line number(s) where these calls are made would be very appreciated, or any other advice to perform the aforementioned task. Thank you for a great plugin!

    https://www.rishi-kumar.com/

    I’d like to have an answer to this too. I’m running WordPress 2.6. I have created a link with a name, link, and link to an image (under the advanced tab); however, when displaying the link widget on my blog, it just shows the icon rather than the icon followed by the name of the link.

    Thread Starter Rishi

    (@rishk789)

    Yep, that file is there.

    Forum: Plugins
    In reply to: AskApache Crazy Cache

    Hello all. I’ve given up trying to get the GZip compression to work on WP-Super-Cache. Internet Explorer always asks to download the page, and I can’t seem to resolve it through any support forums. I was wondering if activating Crazy Cache and caching my entire site (www.rishi-kumar.com) would affect things like commenting or other dynamic widgets (ie, my website statistics).

    I’ll try that hotkee! Thanks for spending the time to help! I hope this works.

    I can’t find it. =/.

    My webhost is sort of… weird. I found an “accesslog” document from my webhost, but is there anywhere else I could search for an error log?

    You’re right. What I meant was that I tried just uploading the basic WP .htaccess parameters, but that didn’t work. So I replaced it with my original .htaccess (containing the Super-Cache parameters). I suppose I’ll upload another copy of WP 2.5.1 and overwrite the files?

    I’ve disabled all the plugins, heh. And tried reuploading my .htaccess file without the Super-Cache parameters.

    Hello hotkee, I’ve checked both and they’re identical. I “upgraded” to beta 3 of the WP 2.6, so the index.php is the same as the install default. My FTP server said that my htaccess was modified yesterday, but I don’t see any glaring differences.

    .htaccess contents:

    DirectoryIndex index.php
    AuthName rishi-kumar.com
    
    # BEGIN WPSuperCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    AddDefaultCharset UTF-8
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*s=.*
    RewriteCond %{QUERY_STRING} !.*attachment_id=.*
    RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]
    
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*s=.*
    RewriteCond %{QUERY_STRING} !.*attachment_id=.*
    RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
    </IfModule>
    
    # END WPSuperCache
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    index.php

    <?php
    /**
     * Front to the WordPress application. This file doesn't do anything, but loads
     * wp-blog-header.php which does and tells WordPress to load the theme.
     *
     * @package WordPress
     */
    
    /**
     * Tells WordPress to load the WordPress theme and output it.
     *
     * @var bool
     */
    define('WP_USE_THEMES', true);
    
    /** Loads the WordPress Environment and Template */
    require('./wp-blog-header.php');
    ?>

    Let me describe my problem, and let’s see if anyone else has this exact same issue. First of all, I didn’t tamper with anything. I posted a blog entry last night, several friends viewed it (including myself), and I woke up this morning with a broken WordPress. =(.

    I can access all the admin pages (even managing particular posts/pages). However, I cannot access the dashboard, and therefore, cannot access the /wp-admin directory (as it takes you directly to the dashboard). I’m unable to access my main website (https://www.rishi-kumar.com) as it times out. I’ve tried disabling all the plugins, but this problem persists.

    This is happening to me too. =(. Out of curiosity, who’s your webhost? I use Dot5Hosting.

    I’m having this same problem. =(. Out of desperation, I even tried upgrading to the third release candidate of WP 2.6, but that didn’t work either. Hope one of you geniuses finds a solution. =).

    Hey litetaker, to embed videos from YouTube, copy the code that YouTube provides for “embed.”
    Edit the page/post you want to embed the video on, and make sure you’re viewing the “Code” or “HTML” (depending on your version of WP) panel. Now, when you paste the code from YouTube, delete the very last “object” tag.

    For example, here’s some YouTube embed code for one of my recent videos.

    <object width="425" height="344"><param name="movie" value="https://www.youtube.com/v/pnfWwGhYr9Q&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="https://www.youtube.com/v/pnfWwGhYr9Q&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object>

    WordPress doesn’t like this. Delete the “</object>” term so you actually paste this code:

    <object width="425" height="344"><param name="movie" value="https://www.youtube.com/v/pnfWwGhYr9Q&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="https://www.youtube.com/v/pnfWwGhYr9Q&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed>

    Hope this helps!

    Hey Keldwud, make sure you’re using the “embed” code that YouTube provides on their site for your particular window. When you’re pasting the code in your page/post, make sure it’s on the “HTML” or “Code” view. Finally, when you post the code from YouTube, delete the very last tag “/object” or something. This worked for me.

Viewing 15 replies - 31 through 45 (of 45 total)