vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Atakan Rss Feeds Views 2.00 (https://vborg.vbsupport.ru/showthread.php?t=108400)

Angelus 03-01-2006 06:19 AM

hi

it's a very cool feature, but i have problems with representation from ? ? ? look here:
http://bitcenter.game-server.cc/www/newsview.php?do=6

Tralala 03-07-2006 06:06 AM

<a href="http://www.5kere5.com/news.php?do=29" target="_blank">http://www.5kere5.com/news.php?do=29</a>

Demo doesn't work anymore.

Atakan KOC 03-07-2006 09:19 PM

Demo moved

http://www.bizimuydu.com/forum/news.php?do=22

Atakan KOC 03-10-2006 09:39 AM

Hello again everybody :)
Finally I have some time to read all your replies.

First of all you are so important for me. ( Unfortunately, Tralala said that he has being punk'd ) :( My main language is Turkish.

Now, I am just making some little installments. I think the problem is :

Unix and windows servers compile some characters differently. For example the characters like ?,Ş,?,?. I am working on it.

Im trying to manage CSS problem. I will publish the fixed version as soon as possible.

See you guys :)

Alien 03-17-2006 01:50 AM

I can't wait to see the multiple-styles fix! Thanks so much for your continued hard work on this!

Atakan KOC 03-25-2006 07:23 PM

New version relased

Reminder 03-25-2006 07:30 PM

Thanks ;)

Alien 03-25-2006 07:40 PM

Hey, great to see continued work on this project..

May I ask, have the "multiple-styles" problem been corrected now? :)

I don't see a list of changes in the new version..

Rickie3 03-25-2006 09:23 PM

with the update do you upload all the files then import the product??? or just apply the new product??

DrewM 03-25-2006 10:17 PM

Ahh... I get the fowling error after upgrading:
Database error in vBulletin 3.5.4:

Invalid SQL:
select * from newsview order by orderid;

MySQL Error : Unknown column 'orderid' in 'order clause'
Error Number : 1054

jmacieira 03-25-2006 11:44 PM

opsss :confused:

I have the samme error

Quote:

Database error in vBulletin 3.5.3:

Invalid SQL:
select * from newsview order by orderid;

MySQL Error : Unknown column 'orderid' in 'order clause'
Error Number : 1054
Date : Sunday, March 26th 2006 @ 02:40:14 AM
Script : http://www.teste.com/newsview.php

DrewM 03-26-2006 12:07 AM

I have fixed it just go to php my admin and add a field called orderid after name.

jmacieira 03-26-2006 12:15 AM

I am inexperienced :confused:

I don't know how to do that

Please Atakan KOC

Can you correct it in the new rev?

puertoblack2003 03-26-2006 12:31 AM

Quote:

Originally Posted by jmacieira
opsss :confused:

I have the samme error

i have same issue can i get fix for it i know we have to add table...

klaush 03-26-2006 07:36 AM

Another one:

MySQL-Fehler : Table 'xxx.vb3_newsview' doesn't exist

DrewM 03-26-2006 09:30 AM

Well heres the query to run:
[sql]ALTER TABLE `newsview` ADD `orderid` INT( 10 ) DEFAULT '0' NOT NULL AFTER `feed_name` ;[/sql]

puertoblack2003 03-26-2006 12:44 PM

Quote:

Originally Posted by Larrysw
Well heres the query to run:
[sql]ALTER TABLE `newsview` ADD `orderid` INT( 10 ) DEFAULT '0' NOT NULL AFTER `feed_name` ;[/sql]


Thanks for info , but after that some how gave me an error :
Quote:

An error occurred while attempting to execute your query. The following information was returned.
error number: 1146
error desc: Table 'puertotech.newsview' doesn't exist
hope can be resovled

DrewM 03-26-2006 03:11 PM

This erro says your news veiw table doesn't exist. Try copying the news view table name and replacing it.

jmacieira 03-29-2006 02:31 PM

Hi

This new version relased dont work for me.

fabbry 03-29-2006 09:18 PM

Dont work :confused:

Database error in vBulletin 3.5.4:

Invalid SQL:
select * from newsview order by orderid;

MySQL Error : Table 'xxxxx.newsview' doesn't exist
Error Number : 1146

Also give me an error when import product-1901

DrewM 03-30-2006 11:00 PM

the error is the table does not exist just run the fowling sql query:
[sql]CREATE TABLE `newsview` (
`feed_id` int(15) NOT NULL auto_increment,
`feed_name` varchar(255) NOT NULL default '',
`orderid` int(10) NOT NULL default '0',
`feed_location` varchar(255) NOT NULL default '',
PRIMARY KEY (`feed_id`),
KEY `feed_name` (`feed_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;[/sql]

fabbry 03-31-2006 09:03 AM

Can be dangerous for database?!
Need backup first?

puertoblack2003 04-01-2006 12:17 AM

Quote:

Originally Posted by Larrysw
the error is the table does not exist just run the fowling sql query:
[sql]CREATE TABLE `newsview` (
`feed_id` int(15) NOT NULL auto_increment,
`feed_name` varchar(255) NOT NULL default '',
`orderid` int(10) NOT NULL default '0',
`feed_location` varchar(255) NOT NULL default '',
PRIMARY KEY (`feed_id`),
KEY `feed_name` (`feed_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;[/sql]


man i was about to give it up but thanks it works...some how they have to fix issue apparently when adding import with sql...***installed**:banana:

puertoblack2003 04-01-2006 12:39 AM

ok installed and all but i'm facing what the other guys went through i used the rss provided but is not showing it is saying
Quote:

Syndicated content not available
how can i resolve this problem:cross-eyed:

Tralala 04-01-2006 02:12 PM

Quote:

Originally Posted by puertoblack2003
ok installed and all but i'm facing what the other guys went through i used the rss provided but is not showing it is saying how can i resolve this problem:cross-eyed:

I posted the same issue, got no answer.

Review my posts above, with specific questions about how this was coded to see if I could ferret out the cause... (I think it has to do with PHP option allow_url_fopen being required; and some webhosters disable this for security purposes.)

Atakan hasn't responded so I'm just guessing he doesn't know the answer.

puertoblack2003 04-02-2006 03:10 AM

Quote:

Originally Posted by Tralala
I posted the same issue, got no answer.

Review my posts above, with specific questions about how this was coded to see if I could ferret out the cause... (I think it has to do with PHP option allow_url_fopen being required; and some webhosters disable this for security purposes.)

Atakan hasn't responded so I'm just guessing he doesn't know the answer.

will i hope some one can help us and get the answer it's no sense posting up a hack and can get no support for it..:tired:

puertoblack2003 04-04-2006 10:37 AM

Quote:

Originally Posted by puertoblack2003
ok installed and all but i'm facing what the other guys went through i used the rss provided but is not showing it is saying how can i resolve this problem:cross-eyed:


any quick fix to this issue yet?

puertoblack2003 04-05-2006 01:41 PM

Bump Anyone:surprised:

jmacieira 04-05-2006 09:07 PM

I also continue the wait :tired:

Atakan KOC 04-09-2006 01:42 PM

fixed !!!

Please 2.00 previous version lift and again install...

MThornback 04-09-2006 03:01 PM

The SQL error seems to be because the install xml fails to install a row in the table...the table does exist tho

jmacieira 04-09-2006 04:41 PM

Remove...and clik uninstall

Too many errors

soulface 04-09-2006 07:33 PM

well the SQL prob still exist if you update the product. what i did it, i completely removed the old version (which was 1.0 i think, i didn't updated to 2.0), then reinstalled this new version. so its working fine so far...

saininja 04-09-2006 11:27 PM

Probs with <?xml version="1.0" encoding="utf-8" ?>

with ?,?,?

example http://www.heise.de/newsticker/heise.rdf

J.

Alien 04-09-2006 11:31 PM

I can't get this to work.. I just get blank white pages.. Is this compatible with php 5.1.x?

puertoblack2003 04-10-2006 11:23 AM

so what's the scoop with the upgrade do we uninstall the old version and import new or overwrite old? no tutorial on this

Atakan KOC 04-10-2006 05:41 PM

Quote:

Originally Posted by saininja
Probs with <?xml version="1.0" encoding="utf-8" ?>

with ?,?,?

example http://www.heise.de/newsticker/heise.rdf

J.

Open newsview.php;

Find :
PHP Code:

render_news($rssxxxtrue'news''news'); 

Replace :

PHP Code:

render_news($rssxxxtrue'news''news');

$trans = array("İ" => "İ",
               
"ı" => "ı",
               
"ü" => "?",
               
"ş" => "ş",
               
"?z" => "Ş",
               
"ö" => "?",
               
"ç" => "?",
               
"Ç" => "?",
               
"ğ" => "ğ",
               
"â?" => "?",
               
"&0220" => "?",
               
"&0214" => "?",
               
"Ğ" => "Ğ",
               
0x3f => ""
               
);
$code2 strtr($code2,$trans); 


Atakan KOC 04-10-2006 05:58 PM

Quote:

Originally Posted by jmacieira
Remove...and clik uninstall

Too many errors

If you upgrate this sw you will have some problem, first you must remove the old versiyon and install the new version. Then you won't have any problem

Atakan KOC 04-10-2006 05:59 PM

It is not compatible with php 5.1.x

Alien 04-10-2006 08:54 PM

Okay, appreciate the heads up.. I look forward to it being compatible eventually.. I know AboutToday hack is but it's got way more stuff than I need and I don't like the layout of it in rss-only usage so.. I'll keep an eye on yours. ;)


All times are GMT. The time now is 01:36 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01363 seconds
  • Memory Usage 1,827KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete