Search:

Type: Posts; User: s_ø; Keyword(s):

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    9
    Views
    13,118

    [ubuntu] Re: xampp installation redirecting to splash.php

    Look in apaches error.log
    in terminal

    nano /var/log/apache2/error.log

    or use the gnome-system-log. Alt+F2 then enter gnome-system-log
  2. Replies
    10
    Views
    2,938

    [ubuntu] Re: MySQL will not shut down

    Take a look at /etc/mysql/debian.cnf there should be a line with the password.
    Check if the password matches the one in the mysql db.

    mysql> SELECT user FROM user WHERE password =...
  3. [SOLVED] Re: how to make apache ask for password in certain folders

    Cant see the link you posted. But the apache documentation is a good reference http://httpd.apache.org/docs/2.2/howto/auth.html

    When you have access to the server you dont need to use .htaccess...
  4. Replies
    1
    Views
    494

    [ubuntu] Re: Storing MySql database

    Look at this post http://ubuntuforums.org/showpost.php?p=9059120&postcount=6
    Its about how to share the mysql db files between win/ubuntu, but the principles are the same.
    If you have any questions...
  5. Replies
    10
    Views
    2,938

    [ubuntu] Re: MySQL will not shut down

    That was kind of a headless post by me.
    You should log into mysql as root and verify that the user debian-sys-maint exists, and have privileges to administrate the database. The default is all...
  6. Replies
    10
    Views
    2,938

    [ubuntu] Re: MySQL will not shut down

    You have probably lost the debian-sys-maint user. This is the user your system uses to start/stop mysql. The password for debian-sys-maint is in /etc/mysql/debian.cnf
  7. [ubuntu] Re: Cannot get PHP to open in Firefox with Apache2

    If you just open the php file directly it will not be parsed.
    You need to open it in http://localhost/phptest.php
    If its not working check the config files.

    nano...
  8. Thread: PHP Issues

    by s_ø
    Replies
    2
    Views
    555

    [ubuntu] Re: PHP Issues

    Try to use this command to find the php module.

    locate libphp
    There will probably be 2.
    Now open php.load

    sudo nano /etc/apache2/mods-available/php5.load
    Edit to point to the new module you...
  9. Thread: 32 or 64 bit?

    by s_ø
    Replies
    11
    Views
    647

    [ubuntu] Re: 32 or 64 bit?

    If your computer can run 64 bit, download that.
    Do you know what processor you have?
  10. Thread: NO Ubuntu

    by s_ø
    Replies
    13
    Views
    1,014

    [SOLVED] Re: NO Ubuntu

    No you cant login? or No you cant make the command work?
    If you cant login you will need to boot from a livecd/usb.
  11. [ubuntu] Re: apache2: Syntax error on line 207 of /etc/apache2/apache2.conf: Syntax error on l

    There is a LAMP (Apache, MySQL, PHP) package available as a task in ubuntu. To install use tasksel.

    sudo tasksel install lamp-server

    If you only need apache without MySQL/PHP you can install...
  12. Replies
    18
    Views
    51,844

    [SOLVED] Re: Welcome to Nginx index.html

    Good thing its working. If you got your problem solved, can you please mark the thread solved.
    You should also check out the Ubuntu Serverguide There is a lot of good info on getting things up and...
  13. [all variants] Re: root has no privileges to create database in phpmyadmin

    In phpmyadmin there is a privileges tab.
    From there you can set and change privileges.
  14. Replies
    83
    Views
    5,189

    [SOLVED] Re: A fine mess... Partition help.

    Yes enlarge it all the way, unless you need some for another primary partition (for windows or another os). Swap space can be inside the extended partition.

    To move partitions you need somewhere...
  15. Replies
    3
    Views
    885

    [ubuntu] Re: Error activating XKB configuration ?

    well in that case start reading ;)
    man x
    to search the man pages use forward slash '/' followed by search term.
    /XKB
  16. Replies
    3
    Views
    885

    [ubuntu] Re: Error activating XKB configuration ?

    Why do you use the root account?
    Ubuntu is setup to use sudo https://help.ubuntu.com/community/RootSudo
    Can you login as a non-root user?
  17. Thread: NO Ubuntu

    by s_ø
    Replies
    13
    Views
    1,014

    [SOLVED] Re: NO Ubuntu

    Can you login to your system?
    Then open a terminal - (press Alt + F2 type gnome-terminal)
    This command will list the ownership and permissions of the .ICEauthority file

    ls -l ~/.ICEauthority...
  18. Replies
    83
    Views
    5,189

    [SOLVED] Re: A fine mess... Partition help.

    There is always a risk of something going wrong when you edit partitions. A common one is to delete the wrong partition...
    You should backup your data,if you cant backup everything, backup the most...
  19. Replies
    18
    Views
    51,844

    [SOLVED] Re: Welcome to Nginx index.html

    try to go to http://localhost/my-index.html
    I really think you should read the links i gave you about file permissions and sudo.
    sudo gives you root privileges for a specific task, such as starting...
  20. [ubuntu] Re: apache2: Syntax error on line 207 of /etc/apache2/apache2.conf: Syntax error on l

    If you look in your apache2.conf file you will see that it includes various files


    # Include module configuration:
    Include /etc/apache2/mods-enabled/*.load
    Include...
  21. [ubuntu] Re: Upgrade 8.10 to 9.04 then to 9.10, first step good...

    What command do you use when you get that error?
    You can use the following command to get all mysql entries in the syslog
    grep -i 'mysql' /var/log/syslog

    Check that /var/run/mysqld/mysqld.sock...
  22. Replies
    13
    Views
    3,389

    [SOLVED] Re: mySql database wont start

    Great. MySQL should bind to localhost / 127.0.0.1. You dont need remote access to use it.
    Could you please mark the thread as solved.
  23. Replies
    9
    Views
    12,105

    [SOLVED] Re: Mysql database issue with XAMPP

    Edit:
    Try using
    sudo chown mysql:mysql /var/lib/mysql -R
    -

    It looks like you dont have a mysql user.
    You can run this command to check if the mysql user exists. It will print any matches it...
  24. Replies
    13
    Views
    3,389

    [SOLVED] Re: mySql database wont start

    To start with check the hosts file to see if there is any conflicts
    sudo nano /etc/hosts
    Are there more than one localhost in there?

    As I understand the three SCRIPT ENGINE errors the port is...
  25. Replies
    9
    Views
    12,105

    [SOLVED] Re: Mysql database issue with XAMPP

    open a terminal and use chown. (the -R is for recursive
    sudo chown mysql\: /var/lib/mysql -R
    And im pretty sure they need to change permissions as well.
    sudo chmod 700 /var/lib/mysql -R
Results 1 to 25 of 123
Page 1 of 5 1 2 3 4