Search results

  1. adam

    Forum Rules

    Forum Rules Members are asked only to post in English, as this is an English speaking community. Users are asked to be respectful of other individuals. We do not allow any kind of bad language, or abuse. Offenders may have their forum accounts revoked. We do not allow discussions of software...
  2. adam

    Forum Rules

    Forum Rules Members are asked only to post in English, as this is an English speaking community. Users are asked to be respectful of other individuals. We do not allow any kind of bad language, or abuse. Offenders may have their forum accounts revoked. We do not allow discussions of software...
  3. adam

    Forum Rules

    Forum Rules Members are asked only to post in English, as this is an English speaking community. Users are asked to be respectful of other individuals. We do not allow any kind of bad language, or abuse. Offenders may have their forum accounts revoked. We do not allow discussions of software...
  4. adam

    Forum Rules

    Forum Rules Members are asked only to post in English, as this is an English speaking community. Users are asked to be respectful of other individuals. We do not allow any kind of bad language, or abuse. Offenders may have their forum accounts revoked. We do not allow discussions of software...
  5. adam

    Forum Rules

    Forum Rules Members are asked only to post in English, as this is an English speaking community. Users are asked to be respectful of other individuals. We do not allow any kind of bad language, or abuse. Offenders may have their forum accounts revoked. We do not allow discussions of software...
  6. adam

    MediaPlayer Plugins : Jwplayer not working! Approved.

    Hi, Are you using urls with the filename on the end? i.e. yoursite.com/3d3w/file.mp4 In the release which added JWPlayer support, the player wouldn't play if your urls are without the filename. It seems JWPlayer requires this. It was fixed about 5 days ago so if you re-download and upgrade...
  7. adam

    V3.4 Default File manafer view

    No problem. Thanks. :)
  8. adam

    AJAX front-end

    Looks pretty fast on our demo site. I'll have a look for the next release though to see if it can ajaxified and sped up further.
  9. adam

    AJAX front-end

    Hi, It is already ajax when you manage your urls. Regards, Adam.
  10. adam

    V3.4 Default File manafer view

    You can't at the moment, I'll add an option for the next release. Also coming in the next release in a few weeks. :)
  11. adam

    Language Encoding issue in Newsletter Plugin

    Can you set it with smtp. You'll probably get a lot more of your emails through aswell. :)
  12. adam

    Language Encoding issue in Newsletter Plugin

    Assuming you're using smtp for email sending, in includes/email_class/class.phpmailer.php find: public $CharSet = 'iso-8859-1'; change to this: public $CharSet = 'UTF-8'; If you're not using smtp via the script, let me know.
  13. adam

    Video Skins Why no information.

    Copy of what we sent on email: The media players are from a third party so you should be able to find resources on their sites. All the media player code will be in plugins/mediaplayer/ within the script. Depending on which player you use: http://jplayer.org/ or http://www.jwplayer.com/
  14. adam

    Translation entries number keep adding

    I agree. :) It's on the list to sort so we'll get something organised soon.
  15. adam

    Changing Email to Html format

    Hi, It's already html although it wont include that much formatting. The email function is in includes/function.inc.php called: send_html_mail() You should be able to add your header/footer in here by amending the code. Regards Adam.
  16. adam

    Maintenance Mode not for admin

    You can tweak the code to allow access for admin users, you'll need to login via the /admin/ pages though. Open include/master.inc.php Find and delete: // check for maintenance mode if(SITE_CONFIG_MAINTENANCE_MODE == 'yes') { showMaintenancePage(); } In the same file, find: $Auth =...
  17. adam

    Translation entries number keep adding

    I'll look at your other post now. Note if you have any urgent issues like this you can contact us using the contact page, we don't always monitor these forums but we're always on email.
  18. adam

    Language Encoding issue in Newsletter Plugin

    Hi, Does the email content get stored ok in the database? Have a look in the plugin_newsletter table at the html_content column. Also if viewing it within the admin area causes any character issues? I'm trying to see whether it's just the email sending part or if anything before is affecting...
  19. adam

    I found a strange Language entry (39suycy5m)

    I don't recognise it, it's not on our demo site but it may have come from a third party plugin. I'd just remove it from the database (or ignore it) if you can't track it down. As a double check, try globally searching your code for 39suycy5m if you have an IDE which has the function.
  20. adam

    Translation entries number keep adding

    Hi, The amount of translations will depend on how many plugins you have installed. The translations are also not always populated by default, if they don't exist when a page is loaded they're added. So an initial install wont include them all. We're working on creating a script which rebuilds...