Search results

  1. Basti

    Screenshots Timeout

    That is a part we still need to optimize for big lists, in the meantime we have set a php code to disablle the timeout limit ( which by default is mostly 30 seconds ) If you php configuration does not allow that though, you manually have to edit your php.ini and change the timeout setting you...
  2. Basti

    CDN Support?

    That is quite easy, i post you a cron file which you can use in 30 minutes or so
  3. Basti

    CDN Support?

    Banners are saved as http://yoursite.come/pathtobanner. Got myself not much experience there, but all you need to do is change the url correct? If so maybe a simple cron once a day which grabs all member banners who not start with cdn and let cron update the path maybe
  4. Basti

    Guest Blogging Plugin

    I think personally post is a bad idea, doesnt sound bad when you actually view a post, but what when you are on the post index page? Find it kinda strange there :P
  5. Basti

    Guest Blogging Plugin

    So, the plugin is progressing quite nicely. One thing on which we like to have some user input on is the url. Currently we using site.com/blog/blog-post-name/ What we want some input on in detail is "/blog/" part. Anyone used a external blog at all installed at site.com/blog/ ? If so...
  6. Basti

    Redirect to Category after Vote

    Hehe, also a method to keep a site up to date :)
  7. Basti

    sitemap.php or sitemap.xml

    sitemap.php is an xml file. its labeled as php because we need php stuff in there to query the db etc. The output however is xml and that is what counts. So submit sitemap.php
  8. Basti

    Contact Form - Beta

    I just tried and it and confirm what i possted before does work. So you did something wrong at some point. From what i see on your code above, every field currently is using that code you posted. Please post it complete so users dont get the wrong idea. It has to be enclosed with the...
  9. Basti

    Contact Form - Beta

    Iam certain this does work, ill give it a try myself in a bit
  10. Basti

    Contact Form - Beta

    It is part of the automated securing taking place in this plugin. These are the allowed chars a-zA-Z0-9,\-\.@\s soo... a-z, A-Z, 0-9, - , comma, dot, @, space (white space) Anything other is removed from the text. This is not perfect when using url input, so either do as mark said ( while...
  11. Basti

    Link Code not on Join_finish page.

    Ah now i see what you mean, well still like i said earlier its generated in sources/join.php and sources/user_cp/join_existing.php Quickest way to edit is editing this part if ($CONF['google_friendly_links']) { $TMPL['verbose_link'] = ""; } else {...
  12. Basti

    Screenshots loading as black.

    Which visiolist version are you using? if 0.9 you properbly still use our old screenshot server, which is very unstable. If so, please overwrite your screenshot.php ( topsite root where settings_sql.php is ) with the one found here and try again...
  13. Basti

    Link Code not on Join_finish page.

    No you simply dont understand the logic ;) Each file ( join.php , join_existing.php, link_code.php ) have our default link codes in it ( static button etc ). And each file has a plugin hook to load possible extra link codes like you did with the user control panel extra vote link plugin ( hook...
  14. Basti

    Link Code not on Join_finish page.

    Its cos your plugin is not complete. You only use the user cp hook user_cp_extra_link_code.php You should also have join_extra_link_code.php
  15. Basti

    Callback Vote Check

    Np, your welcome.
  16. Basti

    Callback Vote Check

    No need for that. All that have to happen on the members script. He needs a table which stores votes daily, voted = 1, user = xxx Like shown in the example callback script If the entry in table exist, he voted already. No need for me to edit anything and make it unnecessary complicated with to...
  17. Basti

    Background

    First of all, do not edit screen.css, use user.css, thats what its there for. Never ever screen.css or you will have trouble updating the skin. And html edits go into the child folder ( copy the file you want to edit into there ) What you want is the body from what i see so for example body...
  18. Basti

    Clean URLs do not work on nginx

    Here is a sample ngix config i took from drupal. no experience myself with it, so you have to try it out. Adjust your servername ( domain ) and root and you should be good to go ( pure spectulation though since its untested ) server { server_name domain.tld; ## your domain...
  19. Basti

    How to make Banners Mandatory on Signup?

    As of now Lemoniscool stopped support and handed it over to us. His 2 other plugins were released for free, but iam not sure on this. Not sure i want to release public upload stuff
  20. Basti

    robots.txt

    Seo plugin will add that for you EDIT:: nvm, thought wrong. The plugin does meta name="robots" to some urls so they are not indexed, which is also good. A robots.txt you basicly not really need here. since the important files cant be viewed directly anyway
Top