GithubHelp home page GithubHelp logo

Comments (2)

jtojnar avatar jtojnar commented on July 17, 2024

Weird. I do not see why that would not work.

I tried just copying feed.php into customspout.php, replacing the class name. (The file name needs to match the class name – but that is already the case in your example, unless the file name ends with a space that was not copied or something.)

Maybe try opening http://localhost/selfoss/sources/spouts (replace http://localhost/selfoss with your selfoss address) and pressing Ctrl-F5 to clear out browser cache (though web server will usually send headers to prevent caching for PHP scripts so I do not think it would be cached).

You can also try to apply the following patch and then opening the aforementioned URL just to verify selfoss sees the file:

--- a/src/helpers/SpoutLoader.php
+++ b/src/helpers/SpoutLoader.php
@@ -95,6 +95,7 @@ class SpoutLoader {
             if (is_dir($location . '/' . $dir) && substr($dir, 0, 1) !== '.') {
                 // search for spouts
                 foreach (scandir($location . '/' . $dir) as $file) {
+                    var_dump($file);
                     // only scan visible .php files
                     if (is_file($location . '/' . $dir . '/' . $file) && substr($file, 0, 1) !== '.' && strpos($file, '.php') !== false) {
                         // create reflection class

from selfoss.

noiret avatar noiret commented on July 17, 2024

Hello,

I have added this code in the SpoutLoader with the var_dump call :

foreach (scandir($location . '/' . $dir) as $file) {
  // only scan visible .php files
  ini_set('display_errors', 1);
  ini_set('display_startup_errors', 1);
  error_reporting(E_ALL);
  $fp = fopen('/var/www/html/selfoss/vardump.txt', 'a+');
  fwrite($fp, serialize($file))
  fclose($fp);
  var_dump($file);
<...>

But nothing appears on the screen & the dump file is not created.

I've disabled OpCache, forced a client-side refresh, restarted the Apache server and PHP-FPM without improvement.
I've also disabled caching by commenting out the mod_header directive and adding the following block to the .htcaccess file:

# DISABLE CACHING
<IfModule mod_headers.c>
    Header set Cache-Control "no-cache, no-store, must-revalidate"
    Header set Pragma "no-cache"
    Header set Expires 0
</IfModule>

For testing, i removed the Golem spout (src/spouts/rss/golem.php), and it's still visible on the /selfoss/sources/spouts page. 🤯

It's probably a problem with my environment, not with Selfoss.

from selfoss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.