Search results

  1. adam

    AJAX front-end

    Hi, It is already ajax when you manage your urls. Regards, Adam.
  2. 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. :)
  3. 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. :)
  4. 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.
  5. 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/
  6. adam

    Translation entries number keep adding

    I agree. :) It's on the list to sort so we'll get something organised soon.
  7. 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.
  8. 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 =...
  9. 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.
  10. 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...
  11. 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.
  12. 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...
  13. adam

    cant upgrade from 3.3 to 3.4

    Copy of email response: Hi, Where do you see the 500 error, on your site? Can you check for any logs in the logs/ folder and your server. Also, you may need to set CHMOD 755 (not 777) on these folders, some servers produce a 500 error if you set them to 777. files/, plugins/, files/_tmp/, logs/
  14. adam

    RESOLVED v3.5: Please support jwplayer media player plugin

    Re: Please support jwplayer for media player plugin.Thanks Via your account. :)
  15. adam

    security question

    Definitely not. All files are stored securely without their extension and without permissions to view via the browser. They can only be accessed via the server itself.
  16. adam

    RESOLVED v3.5: Please support jwplayer media player plugin

    Re: Please support jwplayer for media player plugin.Thanks This is now available as an update to the plugin.
  17. adam

    RESOLVED v3.5: Reporting a file

    Re: Reporting a file Agreed, I've added it to the next release. :)
  18. adam

    help please error in index.php

    I assume you've edit the index.php file? This bit will error: if ($Auth& ?>/add_small.gif" height="1" width="1"/> <img src="<?php echo SITE_IMAGE_PATH; ?>/red_error_small.png" height="1" width="1"/> <img src="<?php echo SITE_IMAGE_PATH; ?>/green_tick_small.png" height="1" width="1"/>...
  19. adam

    Sugestions and asks

    Hi, The correct path will be whatever you see it was when you login via your FTP client. So probably: /public_html/files/ We are working on allowing file servers to be run via the main url on the next release. So all fs1.yourdomain.com, fs2..., etc can be routed via yourdomain.com. I'm sure...
  20. adam

    Extenal file server limit

    Hi, Did you install a 'Direct' file server or FTP? Do any uploads work? Could you try a 6-9 MB file. There's a different process for handling files > 5MB so it'll help to figure out if it relates. If 'Direct' file server, the _tmp on the main server wont be used. Ensure there's a _tmp on the...