Easy RSS feed - Page 3 Easy RSS feed - Page 3
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Easy RSS feed

Started by flaquito, May 17, 2007, 09:27:32 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Qayyom

#40
I am having the problem (attached-screen shot)

can i change/paste the rss.php in root directory manually?

please guide me to solve the problem

please check the problem at my site:

VISIT:-                                                      www.PICSnCLIPS.net


Qayyom Ashraf .:|:. Karachi-PK
*Image Removed*

ComputerLady

Quote from: qayyom on August 03, 2007, 09:31:33 AM
I am having the problem (attached-screen shot)
can i change/paste the rss.php in root directory manually?
please guide me to solve the problem
please check the problem at my site:
VISIT:-                                                      www.PICSnCLIPS.net

Did you install it correctly? It should go into the root directory of your gallery automatically. Yes, that is where the rss.php file is supposed to go.

Qayyom

I paste the rss.php file in root directory manually

but result you can check.

in left to right sequence...

1st option is totally not working (but it was working previously)

and other both are showing files in first step/page (as in screenshot) but when you click on files they are not open

how can i solve the problem (sorry again)

either i have to reinstall the package or...?

www.PICSnCLIPS.NET
Qayyom Ashraf .:|:. Karachi-PK
*Image Removed*

ComputerLady

When you run a test on the feed, it has a few errors:
http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.picsnclips.net%2Frss.php
Nothing that should block anything from linking to it anyway. Almost identical to those I get for the feed on my own site, so I have to assume that's a flaw in the PHP somewhere. But, again, nothing that has caused the plug-in to fail.

Qayyom

I just reinstall the package again and i think it works...

but why it shows errors (I don't know it is really serious problem or not) on http://feedvalidator.org

http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.picsnclips.net

...and how can i resolve these errors showing at the feed tester site

with best regards!
Qayyom Ashraf .:|:. Karachi-PK
*Image Removed*

Wookie

I've modified this plugin to show votes per image, I want it to show the rating (pic_rating) and time to. When I add a line for the rating it will show it, but it will knock the votes and time off the rss feed

foreach($data AS $picture) {

    $titlefield = $CONFIG[plugin_easyrss_titlefield];

    $caption_text = "<br>".$picture[votes]." ".$lang_plugin_easyrss['votes'];
    $caption_text .= "<br>".date('M d, Y',$picture[ctime]);
    $caption_text = "<br>".$picture[pic_rating]." ".$lang_plugin_easyrss['rating'];


Like this, and all it shows to the rss feed is the pic rating for example 4000, but it wont show the votes or time.

If I move the pic rating line up to the space above like below

foreach($data AS $picture) {

    $titlefield = $CONFIG[plugin_easyrss_titlefield];
    $caption_text = "<br>".$picture[pic_rating]." ".$lang_plugin_easyrss['rating'];
    $caption_text = "<br>".$picture[votes]." ".$lang_plugin_easyrss['votes'];
    $caption_text .= "<br>".date('M d, Y',$picture[ctime]);


It will show votes and time...but no rating!

How can I show all three, that is Votes, date and rating?

I'm gueesing its something quite simple that I am missing and an easy fix...but I cant for the life of me work out what it is.

Regards

Wookie






encrypt

Hy, i installed the plugin, but i can't find the rss.php file in the gallery root folder.
I tried to reinstall the plugin , but the same problem occured.
I need someone to help me!
thanks!

Mihai from Romania
The link of my page is http://www.avatare-e.ro


Joachim Müller

Quote from: encrypt on November 13, 2007, 11:45:18 PM
i installed the plugin, but i can't find the rss.php file in the gallery root folder.
The gallery root probably isn't writable for the script, so it can't copy that file to that location. Review permissions or copy that file manually.

mrsleep99

XML Parsing Error: xml declaration not at start of external entity
Location: http://www.website.com/library/rss.php
Line Number 6, Column 1:<?xml version="1.0" encoding="iso-8859-7"?>
^


Installed but the RSS icon doesn't work, the Google one does however...
any ideas?

Nibbler

You need to remove whatever is being put out before what should be the first line of the rss file.

<?xml version="1.0" encoding="iso-8859-7"?>

Might be whitespace or some other plugin interfering.

mrsleep99

How do you tell what is being put out before it?  :-\

Nibbler

View the source of the feed.

mrsleep99

You mean rss.php? I'm confused  :-\

Joachim Müller

Go to http://www.picsnclips.net/rss.php in your browser, then do a right-click, "view source". Simple as that.

mrsleep99

I've got 6 lines of blank space, how do I get rid of it though ?  ??? Thank you!

Nibbler

Check any files you have modded or added to Coppermine for the whitespace and delete it.

mrsleep99

So if I've added plug ins I have to go through every single file and look for 6 spaces of white space and delete it? I don't know how else to interpret that, sorry just trying to get this to work!!  ??? Thank you!!

Nibbler

Correct. When you find them report back on the plugin's thread so it can be fixed.

mrsleep99

Will the 6 blank spaces be at the bottom of one of the files or just ANYWHERE in the file? And will it only be one file? I've got like 8 or 9 plugins  :-[

Joachim Müller

Then disable the other plugins one by one and test after each step if the RSS feeds then work. Welcome to the world of troubleshooting - you're about to find out what coding and troubleshooting is about.