Recent content by xadrieth

  1. X

    issue accessing my site and CPanel on lotus

    Hi, For three days I haven't been able to access my website (xadrieth.x10hosting.com) or CPanel at all. My site is hosted on lotus. I've got some really important files on the account as well as some MySQL data.
  2. X

    x10hosting shows all contents of a folder!

    Add a blank file to each directory called "index.html". Infact, that is supposed to be the name of your homepage anyways.
  3. X

    SmallBASIC (v0.7)

    Has anyone else heard of this? (I discovered it around v0.2) It's yet another variation of BASIC, created be MicroSoft, I tried it out (v0.7), and within the first 10 minutes, I though "This is so damn cool.". It works right out of the box, and is very powerful (microsoft claims you can make a...
  4. X

    php and quotation marks

    use: stripslashes(); there is also "addslashes();" if you need to do the oposite.
  5. X

    MYSQL Server Connection Error

    I'm not sure, but judging from the error, the "mysql_connect()" function might now be disabled. use "mysqli_connect". syntax is like this: $dbc = mysqli_connect('localhost', 'root', 'pw', 'data');
  6. X

    phpBB3... ARGH!!

    Umm, were a free host and you're not allowed to edit the php.ini file. But just keep on trying to install it, it should eventually work. If it's phpBB is the problem, you should try MyBB,
  7. X

    php alert system?

    Hmmmm.. you could could create a PHP file/class that checks for something, and have the MySQL database store the info for the events. It could work like this: $dbc = new mysqli('localhost', 'root', 'pw', 'freecrm'); $dbc->query('SELECT * FROM crm_events WHERE event_over = \'0\';'); while...
  8. X

    How conect my datbase postgresql??

    uBuntu is really friendly, I'm not sure about Fedora. Solaris isn't Linux, but it's still in the Unix (*nix) family.
  9. X

    MyBB:Blog (a blogging application for MyBB)

    Eh, heres just the thread from MyBB Source. http://mybbsource.com/thread-2688.html
  10. X

    Please critique my website

    Well, that is a pretty sweet looking site. Seeing as your a graphic designer, add some sort of white/gray abstract design to the background, i suggest to do only one color though. Also, get rid of the image border, it doesn't clash well.
  11. X

    Website uploading

    You can also head into the CPanel File Manager and do it, http://lotus.x10hosting.com:2082/ (repleace "lotus" with your specific server). And for the FTP info (a bit more detailed), Host: YOURUSERNAME.x10hosting.com Port: 21 User: YOURUSERNAME password: YOURPASSWORD Ex: Host...
  12. X

    PHP error/warning

    The PHP also needs to look like this: ession_cache_expire(30); session_start(); if (isset($_SESSION['var_name'])) $var = $_SESSION['var_name']; you could also get rid of the "isset()" and it should work the same.
  13. X

    Ajax based new posts

    I'm not sure if this is what you want, but: http://mods.mybboard.net/view/xspy-plugin By live activity feed, do you mean something like this: http://osu.ppy.sh/p/events If that is the case, then it could be somewhat easy to create a PHP script to grab the Post data from the database, the only...
  14. X

    How can I host my domain?

    First, you will need to buy one: http://www.google.com/a/cpanel/domain/new <-- google has good prices then you will need to set the NameServers to ns1.x10hosting.com and ns2.x10hosting.com (I think), then in the X10 account panel (not CPanel), you will need to switch over from a sub domain, to...
  15. X

    How conect my datbase postgresql??

    You need to use the pg_connect function: http://php.net/pg_connect like so: pg_connect('host=localhost dbname=PGSQL_DB_NAME user=PGSQL_DB_USER password=PGSQL_DB_PASS'); Example: $pg = pg_connect('host=localhost dbname=xadrieth_pgsql user=xadrieth_pg password=fluffykins'); Have the...
Top