Jump to content

tagomago

Members
  • Posts

    33
  • Joined

  • Last visited

Posts posted by tagomago

  1. Hi, I have a couple of email accounts with HelioHost - one which is working fine - but I cannot receive email in Outlook 2013 in the other. I always get the message..

     

    Task 'admin@ashleyhales.co.uk - Receiving' reported error (0x800CCC92) : 'Your e-mail server rejected your login. Verify your user name and password for this account in Account Settings. The server responded: -ERR [AUTH] Authentication failed.'

     

    I have checked the password and can login to the webmail service fine. I have tried changing the password and even deleting the account and creating it again but I always get the above error. I set up Outlook manually using the details given on the 'Configure Email Client' option where you create email accounts. I have tried both Secure SSL/TLS settings and Non-SSL settings - neither work. Does anybody know what's going on? Am I doing something wrong?

     

     

    • Like 1
  2. Hi, I have been experiencing a problem with the MySQL connection on my website over the last week, I receive the following error....

     

    Unable to connect to database [Access denied for user 'tagomago@localhost'(using password: YES)]

     

    I saw a similar post that mentioned that stevie has been rebooted. It suggested changing the password to reset the cache, although unfortunately this has not helped Any idea when this issue will be resolved?

  3. Hi, I have been having problems with my website over the last few days. There seems to be a problem connecting to the MySQL database. I get the following error trying to access the main page...

     

    Unable to connect to database [Access denied for user 'tagomago@localhost' (using password: YES)]

     

    When I try and access the database through phpMyAdmin it goes to a login screen when I type in the details that I use to login to cPanel it goes to a page saying 'HTTP 500 Internal Server Error'.

     

    Is there a problem with the server at the moment? Will this fixed in a few days?

  4. Hi, I have a problem with a virus/stroke hacker on my site. One of the SQL tables used in my website it getting junk comments added into it. It is not entered using my website as the values do not follow the standard pattern. I have tried deleting all the comments, changing the password on the SQL database, and changing any login information. I have also tried using a different table but junk comments (similar to spam mail) were added into the table straight away. Is there anything I can do about this?

  5. Hi I have written an Applet that streams music files located on the Helio server using the JMF extension for Java. This has worked fine in the past but now appears to have stopped working. I can't understand why this has happened, do any of the server settings/permissions need to be changed for this? The program does however fetch a list of songs called 'songs.xml' which is successfully displayed on screen however the playing of the actual songs (which uses the JMF extension) fails. Any suggestions as to what's causing this?

  6. The page starts with...

     

    <?php

    //set include path

    set_include_path($_SERVER['DOCUMENT_ROOT'] . '/includes/');

     

    //load libraries and class files //

    include_once('constants.php');

    include_once('admin_stats.php');

    include_once('admin_constants.php');

    include_once('dbscript.php');

     

    //set cookie

    if(isset($_GET['logout']))

    {

    setcookie("admin", '');

    }

     

    //check for password

    if(isset($_POST['password']) && $_POST['password']==ADMIN_PASS) {

    setcookie("admin", ADMIN_PASS, time()+3600);

    }

     

    Basically constants.php and admin_constants.php contain only constants defined with define(). admin_stats.php & dbscript.php contain functions only - nothing outputted to page. Also I have to set include path otherwise I cannot import constants etc.

  7. I seem to have another problem setting a cookie. A previously working script now shows an error...

     

    Warning: Cannot modify header information - headers already sent by (output started at /home1/tagomago/public_html/includes/constants.php:19) in /home1/tagomago/public_html/misc/admininfo/index.php on line 19

     

    Basically I am conditioning on setting a cookie based on a constant declared with the define() function in constants.php. This has never caused an issue before but has all of a sudden shown an error. I cannot place setcookie() before constants,php as it needs to know the value of a constant, the constants file contains nothing else but predefined constants. Any ideas?

×
×
  • Create New...