The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
United-Forum Nivo Slider Widget Details »» | ||||||||||||||||||||||||||||||||
Based on the Nivo Slider - all credit for slider awesomeness goes to them.
vB4 implementation goes to me. What it is: A slider for cms articles, it gets the articles via database, uses (if possible) the previewimage there and resizes it to slider size *update 1.1.0 cropping function included. Livedemo on a Big Board (>2.000.000 posts) the nivo slider on our site is customized to fit our heavily customized cms. Default look of this addon is shown in the picture below facts about the nivo slider Quote:
Custom settings: Support:
Slider not working. No idea why?
The widget here is completely free. No charge, no branding. But, we do not mind donations either. If you want to give us something. Since we are advertising free and fan based we are happy about every small donation. ( On Forumhome bottom right paypal button: http://www.united-forum.de/forum.php ) That's all Hope it works for you. Regards Mooff Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
13 благодарности(ей) от: | ||
AaronMiller, Aramist, doctorsexy, Gemma, LOGECT, mitch84, nacaruncr, owning_y0u, RaSa, Sage Knight, The Rocketeer, YkudzA |
Comments |
#232
|
|||
|
|||
Please try switching allow_url_include to ON aswell. It's got to be one of those two.
|
#233
|
||||
|
||||
Same result, sadly.
allow_url_include On On Code:
DEBUG MODE is ON! slider_img_filepath: slider/ width: 650 height: 250 show_articles_without_image: bool(false) fallback_img: slider/uf_fallback_slider.png #img: 5 description_length: 95 directory /home/straleyw/public_html/cp/forums Error occurred: picture is not readable.slider/uf_fallback_slider.png #articles - featured and databasepull int(1) int(1) |
#234
|
||||
|
||||
Quote:
Anyway, I just visited your site and I wanted to ask. Can you share with us the code / edits that makes the articles appear so neatly on your CMS? Inside the green line below ? I have been long waiting for such a nice flow, and I think me and a lot of others using the vbulletin CMS would certainly benefit from having it. Edit: not trying to steal your code, just the way your articles are displayed on the home page / blog roll. You know all images nicely at the left, and the info on the right. It looks perfect! |
#235
|
||||
|
||||
@ Rocketeer..
That looks like the default CMS design..!? You dont need a slider for that. Quote:
Quote:
Here is what i found.. (this part is untouched from what you have above, that we are supposed to put in php widget) Code:
//Debug Messages if($debug_modus) { echo "<span style='color:red;'>DEBUG MODE is ON! </span><br />"; echo "slider_img_filepath: $slider_img_filepath <br />"; echo "width: $maxwidth height: $maxheight <br />"; echo "show_articles_without_image: "; var_dump($show_articles_without_image); echo " <br />"; echo "fallback_img: $fallback_img <br />"; echo "#img: $number_of_articles_shown <br />"; echo "description_length: $description_length <br />"; echo 'directory ' . DIR . '<br />'; } Here is what i get.. The UF image with my article text: ALSO.. I just noticed that when i click on an image it takes me to the wrong url.. its not showing the"forum" folder in the path.? Code:
http://www.mysite.com/content.php?r=251 Code:
http://www.mysite.com/forum/content.php?r=251 |
#236
|
||||
|
||||
Quote:
I was talking about the article display design he had. Its custom. I am not asking about the slider if you had read my post carefully I said I already had the slider installed (one of the first installs btw) and that others who are having the same issues as I had should look back in the first few pages Anyhow to the OP, I am just wanting to know about his article display design. Go look at the default vB article layout, its messed up compared to his. Look at the articles 1x1 in a blog roll image above, examine the area I placed in Green. |
#237
|
|||
|
|||
That doesn't look like a vb4-cms at all. Judgeding from the code i severly doubt it is one.
@Gamelobby The wrong link to the articles has nothing to do with where the slider wants to save the images. Per default i'm asuming the content.php resides in the main http folder and not in a subfolder. Anyway, for that to work correctly search in the php widget code Code:
//Build Array $article_neu = array(); $article_neu['description'] = '<h2 style="font-weight:bold; font-size: 14px">'. $article['title'].'</h2><span>'. $article['previewtext'] .'</span> <a href="/content.php?r=' . $article['nodeid'] . '-' . $article['url'] . '">read on</a>'; $article_neu['htmlcaptionname'] = 'htmlcaption' . $i ; $article_neu['picture'] = '<a href="/content.php?r=' . $article['nodeid'] . '-' . $article['url'] . '"><img src="'.$article['previewimage'].'" alt="" title="#htmlcaption'. $i . '" /></a>'; Code:
//Build Array $article_neu = array(); $article_neu['description'] = '<h2 style="font-weight:bold; font-size: 14px">'. $article['title'].'</h2><span>'. $article['previewtext'] .'</span> <a href="/Forum/content.php?r=' . $article['nodeid'] . '-' . $article['url'] . '">read on</a>'; $article_neu['htmlcaptionname'] = 'htmlcaption' . $i ; $article_neu['picture'] = '<a href="/Forum/content.php?r=' . $article['nodeid'] . '-' . $article['url'] . '"><img src="'.$article['previewimage'].'" alt="" title="#htmlcaption'. $i . '" /></a>'; As for the other question why the images do not show up. Can you please post the debug messages the slider puts out in debug mode? As for checking how to find out whether fopen/ allow_url_open is active or not. I would have to google that aswell. Best is to ask your techadmin, since he is the guy who would need to activate it. @Kr33p3r I'll try to come up with a version on monday which pumps out a bit more debug to see what is going on there. Kinda lost right now. |
#238
|
||||
|
||||
Yea, I meant it looks like just a default CMS layout. (1 Column & Sidebar) He just has articles on the left, & sidebar on the right... as far as i can tell. (If it's not default we can easily make that layout, cant we.?)
That's why i said you dont need a slider for that. I knew it wasn't the slider. lol |
#239
|
||||
|
||||
Quote:
How do i do Debug mode.? & Who is my techadmin.? (Is that my hosting.?) |
#240
|
|||
|
|||
Designwise it is possible, but it's not easy to force the vb4-cms to look decent. :P
Your techadmin is the guy who does all the coding on your board. Judgeding by your question you are. :P Please set the slider to debug mode (last FAQ question) and post the output, something might show up what can help us to solve your problem. |
#241
|
||||
|
||||
Yup i guess that would be me. lol
Here is what i got. Code:
Warning: imagejpeg() [function.imagejpeg]: Unable to open '[path]/Forum/slider/slide_0.jpg' for writing: No such file or directory in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 163 Error occurred: imagejpeg failed. http://image.gamespotcdn.net/gamespo...4416_embed.jpg directory: /home/content/08/4856008/html/gamelobby/Forum/Forum/slider/slide_0.jpg Warning: imagejpeg() [function.imagejpeg]: Unable to open '[path]/Forum/slider/slide_1.jpg' for writing: No such file or directory in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 163 Error occurred: imagejpeg failed. http://l.yimg.com/a/p/sp/tools/med/2...1314751955.jpg directory: /home/content/08/4856008/html/gamelobby/Forum/Forum/slider/slide_1.jpg Warning: imagejpeg() [function.imagejpeg]: Unable to open '[path]/Forum/slider/slide_2.jpg' for writing: No such file or directory in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 163 Error occurred: imagejpeg failed. http://l.yimg.com/a/p/sp/editorial_i...ch_of_fish.jpg directory: /home/content/08/4856008/html/gamelobby/Forum/Forum/slider/slide_2.jpg Warning: imagejpeg() [function.imagejpeg]: Unable to open '[path]/Forum/slider/slide_3.jpg' for writing: No such file or directory in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 163 Error occurred: imagejpeg failed. http://s1.wp.com/wp-content/themes/v...ogo-shield.png directory: /home/content/08/4856008/html/gamelobby/Forum/Forum/slider/slide_3.jpg Warning: imagejpeg() [function.imagejpeg]: Unable to open '[path]/Forum/slider/slide_4.jpg' for writing: No such file or directory in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 163 Error occurred: imagejpeg failed. http://cache2.allpostersimages.com/p...onto-field.jpg directory: /home/content/08/4856008/html/gamelobby/Forum/Forum/slider/slide_4.jpg |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|