avneraggy
Forum Replies Created
-
Yes! Such a feature will be very exciting!
Forum: Fixing WordPress
In reply to: Unable to edit Permalinks.Thanks so much. Actually what resolved this was indeed turning off a plugin. Thanks a bunch ??
Forum: Plugins
In reply to: [liveTV Bundle] [Plugin: liveTV Bundle] Stream displays wrongupdating the plugin solved this problem.
However, I have another problem now. On the page that is supposed to display all the livestream I get an error:
Warning: filemtime() [function.filemtime]: stat failed for /home/mele/domains/e-srael.org/public_html/wp-content/plugins/livetv-bundle/cache/temp_1_live.html in /home/mele/domains/e-srael.org/public_html/wp-content/plugins/livetv-bundle/page-frontend/page-livetreams.php on line 403 Warning: file_get_contents(/home/mele/domains/e-srael.org/public_html/wp-content/plugins/livetv-bundle/cache/temp_1_live.html) [function.file-get-contents]: failed to open stream: No such file or directory in /home/mele/domains/e-srael.org/public_html/wp-content/plugins/livetv-bundle/page-frontend/page-livetreams.php on line 441
The error also appears in the header of the page.
Forum: Plugins
In reply to: [liveTV Bundle] [Plugin: liveTV Bundle] Warning: file_put_contentsOk, so:
My theme’s functions.php:
<?php ini_set('output_buffering','1'); // Translations can be filed in the /lang/ directory load_theme_textdomain( 'themejunkie', TEMPLATEPATH . '/lang' ); require_once(TEMPLATEPATH . '/includes/sidebar-init.php'); require_once(TEMPLATEPATH . '/includes/custom-functions.php'); require_once(TEMPLATEPATH . '/includes/post-thumbnails.php'); require_once(TEMPLATEPATH . '/includes/theme-comments.php'); require_once(TEMPLATEPATH . '/includes/theme-options.php'); require_once(TEMPLATEPATH . '/includes/theme-widgets.php'); require_once(TEMPLATEPATH . '/functions/theme_functions.php'); require_once(TEMPLATEPATH . '/functions/admin_functions.php'); // Uncomment this to test your localization, make sure to enter the right language code. // function test_localization( $locale ) { // return "nl_NL"; // } // add_filter('locale','test_localization'); ?>
I also reinstalled the wp-super-cache, and tried deleting both the meta and supercache folders. I didn’t really understand what to do by “and delete all gz file below the htaccess”.
I also added a line in wp-config
define('WP_CACHE', true);
, as adviced by the wp-super-cache plugin.Still, no success. I will contact my hoster. Should the option (output_buffering) have a certain value? Or what exactly should I tell my hoster about it?
Forum: Plugins
In reply to: [liveTV Bundle] [Plugin: liveTV Bundle] Warning: file_put_contentsI uninstalled wp-super-cache and deleted all of it’s files. Restarted the plugin(s), re-deleted index.html, and tried turning off each of my current plugins, and still, no success.
Too bad I’m a complete noobie, I don’t even know where to start with checking the server configuration. Do you have any idea what kind of mis-configuration could cause everything to work just fine, but make this rather annoying error to appear?
Anyhow I still can use the plugin somehow, so thanks a lot for all the work and help dude!
Forum: Plugins
In reply to: [liveTV Bundle] [Plugin: liveTV Bundle] Warning: file_put_contentsWow, thanks for an extremely fast reply man!
I tried the steps you advised. The default permission to the Cache folder was 755. Deleting /Cache/Index.html and recreating it didn’t change much.
However, I was able to find th .htaccess file, so that’s my only hope for the moment before I go and try deactivating plugins in the site, to see if there’s somekind of conflict between them.
Hereby is the .htaccess content.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Thanks so much!