Search results

  1. B

    hm can't upload, update, create files

    we are having issues with the server? Response: 227 Entering Passive Mode (198,91,81,2,209,37) Command: STOR faq.php Response: 552 Disk full - please upload later Error: Critical file transfer error Status: Disconnected from server i can't upload anything to my site. it says full...
  2. B

    Can't connect to either email or cpanel on Absolute

    phpmyadmin took me 10 mins just to get into it after that 30 mins to get to my database and 45 mins to import a 5kb file.
  3. B

    phpmyadmin loading real slow

    phpmyadmin isn't coming up when i go to it at all. its not even going to it its staying at the redirect page
  4. B

    FrontPage server extentions

    frontpage been updated its not frontpage its Microsoft Expression Web now its last update that i know of was 2010 tho.
  5. B

    need help

    i need some help no matter what i am trying it doesnt work. using codeigniter 2.0.2 i want to set up pagination for my website. this is what i have in my crontroller: $config = array(); $config["base_url"] = base_url() . "/credits"; $config['total_rows'] = 200; $config['per_page'] =...
  6. B

    My website is receiving 503 error.

    by what you are saying its with ur script recheck it pls. i am not getting any of these errors. i get mostly are timed out or just a no show page but its usually from the server
  7. B

    can't get onto website or cpanel

    can't log onto cpanel or get on my site. site times out and login to cpanel gets stuck at sign on
  8. B

    Database issues

    This table does not contain a unique column. Grid edit, checkbox, Edit, Copy and Delete features are not available. means that the table is either missing or invalid primary key to it. what query where you trying to run: if you run it like this: SELECT * From example it will come up with a...
  9. B

    website giving 503 Service Unavailable

    what's your index file? i noticed ur using wordpress. sometimes you get this error within ur own script with out realizing it. i always check my scripts to make sure it wasnt causing a error like this. i have done that before where i made my site do a 503 or 500 by accident and after removing...
  10. B

    Strange Editor Double Text Glitch.

    to be honest i wouldnt use the filemanager editor for editing html. if you would need to go back and check a line for a error you wouldnt be able to or undo the mistake and see if it was that issue or something else. i always use dreamweaver or phpstorm for my projects.
  11. B

    my website is getting 503 error

    check to make you don't have a script causing the 503 error. i am on vox and i am not getting a 503 error. it would have to be something within ur files or htaccess i would check into it. best way of finding the issue would be think of when it last worked then take a look at the files and...
  12. B

    hm weird

    the reason i posted the whole code to the old one is cause the error code line is different then what shows in my php editor. it says line 14 on clan page when i look on the editor its a blank line. $stmt = $mysqli->prepare("SELECT * FROM sadmin_myths LIMIT 0, 5"); $stmt->execute()...
  13. B

    hm weird

    this is the code that i used when it gave me the error. it only does it with sadmin_clan and sadmin_about. //Retrieve settings $stmt = $mysqli->prepare("SELECT * FROM sadmin_myths LIMIT 0, 5"); $stmt->execute(); $stmt->bind_result($id, $name, $value); while ($stmt->fetch()){ $war =...
  14. B

    hm weird

    for some reasonapparently it was the mysql class i was using. it was my about page n the clan page was my clan member's page. it would connect to mysql gather data n then show it to the member/guest. but it wasnt working. i had to switch from the mysql class to a better way to connect. i am...
  15. B

    hm weird

    Allowed memory size of 67108864 bytes exhausted (tried to allocate 4294967296 bytes) in pages/clan.php on line 14. its the same as on my about page never comes up with other pages that i used the same way of gathering data from mysql base. for some reason the server keeps timing out when trying...
  16. B

    phpmyadmin loading real slow

    ya scripts get on it fine its when u go to phpmyadmin from cpanel is when it takes awhile to load
  17. B

    phpmyadmin loading real slow

    it seems like phpmyadmin is taking a long time to load. it gets stuck at the redirect page on cpanel. is this normal? i been trying to access it for 10 minutes and it won't let me get on it all it is doing is loading. its been doing this for a week or so. i thought it might of been due to the...
  18. B

    Deleted Files by accident

    thats why you always keep backups of your files. i always keep a backup on my pc just incase site goes down i be able to restore them
  19. B

    is sending emails not working?

    it was sendmail() i had to use smtp. it wouldn't send emails with the sendmail() function. anything i used the sendmail() function wouldnt be delivered but when i used smtp it worked. i have a membership program and it wasnt sending emails out to the users so i had to manually add them into the...
  20. B

    is sending emails not working?

    bump bump still need some help
Top