Mordent
Dec 20 2008, 01:44 PM
As I'm sure a fair number of people know, having to upload your site every time you make a change to it to see if it works is hardly a good use of bandwidth or time. That's why all of the pieces of software in the topic title are available to install locally and allow you to develop your website without going through that hassle, not to mention the fact that it's generally a lot more bug free. Now, for those of us who are a bit new to Linux (me included, although I'm gradually getting a little more confident as time goes on), installing all of this in the correct manner on a local machine is a bit of a daunting task. There are 101 ways of doing it, as far I can tell, and the one way I intend to avoid is with the installation of LAMP (or whatever you call it) or similar. as I generally consider these options as "messy" (do feel free to try to change my mind, though). My main concerns are twofold: firstly, I want to have the setup as close to those on AstaHost/Trap17 as possible (i.e. all PHP scripts behave the same way, etc.), as that is where I'll be hosting my sites so naturally I want to get an accurate testing area for the site development up and running. My second concern is the location of the software. Naturally I want easy access to it, but would rather it be, again, in more of a similar setup to that which is given by the hosting. This is likely best illustrated with a little diagram... /home/myhostinguser <- this is my "home" folder on the hosting server /home/mylocaluser/projects/web <- this is where I want the "equivalent" folder to be on my local machine As a little side note, does anyone know whether you are able to use the same hosting folder (/home/myhostinguser) for multiple hosting plans, whether you have to use a different one or have to use the same one, or in fact can do either? Thanks in advance to any and all who give advice, be assured I appreciate anything you have to offer.
Comment/Reply (w/o sign-up)
Mordent
Dec 22 2008, 12:16 AM
*bump* No one? I could really do with a smidgen of general advice on this, as the ways I've found of doing it so far don't seem to allow the degree of control I want, but are too complex for me to understand.
Comment/Reply (w/o sign-up)
xpress
Dec 22 2008, 12:36 AM
Sorry Mordent....I don't have that much experience in Linux. I use Windows most of the time and Linux sometimes. If you need any help in Windows I can help you.
Comment/Reply (w/o sign-up)
rvalkass
Dec 22 2008, 08:56 AM
Which Linux distribution are you using? Most distributions have packages available for PHP, Apache and MySQL which can be installed in a couple of clicks or one line on the terminal.
Comment/Reply (w/o sign-up)
miladinoski
Dec 22 2008, 11:36 AM
Maybe you are looking for XAMPP: QUOTE XAMPP is a free and open source cross-platform web server package, consisting mainly of the Apache HTTP Server, MySQL database, and interpreters for scripts written in the PHP and Perl programming languages. http://en.wikipedia.org/wiki/XAMPPI use it regularly to test my scripts locally without bothering with FTP and it's quite good and easy to install even for complete newbies. You can find the instructions here. Have fun 
Comment/Reply (w/o sign-up)
Mordent
Dec 22 2008, 12:41 PM
QUOTE (rvalkass @ Dec 22 2008, 08:56 AM)  Which Linux distribution are you using? Most distributions have packages available for PHP, Apache and MySQL which can be installed in a couple of clicks or one line on the terminal. Fedora 10 64-bit, and I suspect it does have a package for all of the above. The only problem comes with trying to configure them to install in the right place, or to be accessible from where I want them to be. I'll explain in a jiffy... QUOTE (miladinoski @ Dec 22 2008, 11:36 AM)  Maybe you are looking for XAMPP: http://en.wikipedia.org/wiki/XAMPPI use it regularly to test my scripts locally without bothering with FTP and it's quite good and easy to install even for complete newbies. You can find the instructions here. Have fun I've had a look at XAMPP (or LAMP, as I assumed it was called. Good to see I've been corrected on that semantic hiccup), and I'll have to say it doesn't look all that bad. The only problem, in my eyes, is that I can't think of a way of setting the "home" directory as shown above. That's the main reason I want to go the long route and try to understand where things are installed. Would you recommend this, or to carry on with having another go at XAMPP? On a different side note, assuming that I do find a way of installing Apache, MySQL and PHP all on my local machine, how would you recommend I try to configure it such that anything I use it for would behave identically to the way Xisto hosting does things. I'm going to hazard a guess it's something to do with INI files, but haven't a clue where to start... Anyway, one option I've considered is the use of links. I've no idea how they work, nor if they're indeed the sort of thing I'm after, but being new at Linux means I have something else to go have a look at. My understanding of links is that you can create a Windows-esque shortcut of a folder in another directory. The difference is, by opening the link you can alter the files, but they have a path of the link's directory. Is this correct? Let me try to explain it better... Let's say I have all of my local server-y stuff installed, so that I have a www directory sitting in a directory called /a/b/c (i.e. /a/b/c/www). If I create a link to this directory (the www one) and place it in a directory called /x/y/z (i.e. /x/y/z/www), and open up this link, is it true that any changes I make to either directory or link will affect the other, and that each has a separate hierarchy, or whatever you want to call it? This is all slightly off topic, but as it's trying to accomplish what I want I don't see why I can't digress slightly.  Thanks to all those who have posted so far! EDIT: Drat...an update for you folks, then: After reading through the XAMPP page, and finding this little snippet... QUOTE After downloading simply type in the following commands:
1. Go to a Linux shell and login as the system administrator root:
su
2. Extract the downloaded archive file to /opt:
tar xvfz xampp-linux-1.7.tar.gz -C /opt
Warning: Please use only this command to install XAMPP. DON'T use any Microsoft Windows tools to extract the archive, it won't work.
Warning 2: already installed XAMPP versions get overwritten by this command.
That's all. XAMPP is now installed below the /opt/lampp directory.
*snip*
To start XAMPP simply call this command:
/opt/lampp/lampp start ...I decided to give it a go. I downloaded the archive, and ran the following commands from my shell: CODE su <give password> cd <dir of downloaded archive> tar xvfz xampp-linux-1.7.tar.gx -C /home/<my local username>/projects/website/lampp [wait for it to extract] cd /home/<my local username>/projects/website/lampp ./lampp start I get the following message: QUOTE XAMPP is currently only available as 32 bit application. Please use a 32 bit compatibility library for your system. Assuming that I don't want to try and find out how to use a 32 bit compatibility library (unless it's the only way to get the above software working), what other options are there available to me? EDIT 2: Hmmm...so I gave up on XAMPP for now, and instead went for the approach of installing the Apache (i.e. httpd), MySQL and PHP packages separately in the Add/Remove Software option in System -> Administration. After that I played around with permissions and links for a bit, until I had a link to the www directory sitting in my user's home directory that I could use. So...now the dilemma about getting it to actually parse my PHP files...
Comment/Reply (w/o sign-up)
Mordent
Jan 3 2009, 04:00 PM
I figured I'd best add a general update of how I'm doing with this little problem, mainly because I'd like a smidgen of help with getting my set up to match my hosted one here (at ComputingHost). So, after faffing around with XAMPP, removing that and trying to install Apache, MySQL and PHP separately (I got bogged down in God only knows what trying to get that to work, so I gave up), removing that and then installing the three separate ones from the Add/Remove Software option (i.e. using preconfigured packages), I found the last to be the most successful to date. What I currently have installed (and obviously the relevant dependency packages): - php-5.2.6-5 (x86_64)
- httpd-2.2.10-2 (x86_64) - i.e. Apache
- mysql-5.0.67-2.fc10 (x86_64)
While my ability to use Linux is improving, I'm at a slight loss as to how to actually get my setup such that it's nigh on identical to the one at ComputingHost. Without touching any configuration files, etc. etc. everything seems great. I tweaked a couple permissions with chmod to let me access the /var/www directory as my standard user (as well as making sure the link I had in my home directory from my last attempt or twelve still worked, which it did). I then opened up a console, changed to my root user and started up Apache (i.e. as root "httpd"). I didn't get any message that anything had worked, but I guess I didn't get any errors either, so I suppose that's alright. Now, after that I had the slight issue of trying to work out why "http://localhost/" didn't default to showing the index file (index.php, which contained the phpinfo(); command), nor show any directory listings. This is still a minor, if irritating issue, but by typing "http://localhost/index.php" in to my browser it works fine. Oddly, it only applied to the very top file, as all subdirectories (such as "http://localhost/somedir" opened up "http://localhost/somedir/index.php" - which is the index file in that directory, and the following also worked: "http://localhost/somedir/"; "http://localhost/somedir/index.php"; "http://localhost/somedir/index.php/") What sort of default behaviour do most people expect from typing "http://localhost/" in to their browser address bar? Anyway...aside from that little query, I'm back to trying to get my configuration such that most scripts I develop locally perform the same when uploaded. In essence, I'd imagine this has to do with the php.ini file? Has anyone else tried to do this, or had any success? I know that my default setup differs from the one in my hosting plan, as, for instance, magic quotes are on in one and off in the other. Thanks for any help! EDIT: So, I feel a bit slow...seems all I needed to do was to restart Apache ("httpd -k restart") and the whole localhost not showing problem went away. I also had to remove the welcome message, at least for now, to make sure that the page index was showing fine (/etc/httpd/conf.d/welcome.conf, follow instructions in the file), but as they seemed fine I removed my changes and everything seems awesome...now to try to get my build as close to ComputingHost's as possible...I don't suppose anyone happens to know a way of exporting PHP settings?
Comment/Reply (w/o sign-up)
rpgsearcherz
Jan 4 2009, 08:33 PM
I would love to have a more in-depth tutorial as well. Something from the beginning to end type of thing. I am 100% a Linux newbie, but am looking into getting a VPS...And honestly I don't even know where to start regarding getting a web server set up or anything,=/. Or even how to install programs.
Comment/Reply (w/o sign-up)
rvalkass
Jan 5 2009, 09:54 AM
The best way to match settings is to compare the outputs of the phpinfo function for the ComputingHost server and for your local server. Create a PHP file that contains the following: CODE <?php phpinfo(); ?> Upload one copy to your ComputingHost account, and the other to your local server. Open them both in a web browser and compare the differences. Most can be changed using the configuration file php.ini, which is fairly self explanatory. However, if you spot a difference you don't know how to correct then let us know and we will do our best to get a solution.
Comment/Reply (w/o sign-up)
(G)kevin
Apr 29 2009, 12:59 AM
httpd.conf and a few comments
Installing Apache, Mysql And Php On A Linux Machine
I went through a similar process - one issue that caused an enormous amount of frustration -
httpd.Conf
On my virtual server, all of the virtual host - and everything else created by the control panel - are located in separate files in the conf.D directory under httpd directory. Editing the httpd.Conf file was futile!
If you are learning dedicated web hosting and are working on anything 'useful' I recommend either a dual-boot or a dedicated linux machine at home or office. It is pretty easy to 'mess up' a server if you don't know what you are doing. Generally it can be resurrected, but down time is not good. I did have to 'reprovision' (reformat) it once and was out of email (and company web sites) for 3 days. Some hosts charge for this. Mine does not, but the customer service is non-existant (go . . . Something).
I set up a local server for my company using a 10 year old pentium 3 box with 512 mb - and it works well (and even works fine for web browsing). Our last win98 machine with a new life!s
I'm also enjoying the use of linux on some of my home computers - I'm setting up an htpc (currently ubuntu) I have an office computer running primarily fedora (to mimic my dedicated server) and I'm writing this on a laptop using a live CD install of linux mint (which might replace my ubuntu installations).
Now I test out wordpress and joomla installations and changes before uploading (and have running local backups)
Except for photoshop/lightroom and large format printing, my macpro is getting neglectged . . . (and windoze is being completely avoided)
-reply by kevin
Comment/Reply (w/o sign-up)
Similar Topics
Keywords :
- File Manager In Puppy Linux
(5)
Media Player Linux
(3) Hi all I'm thinking of installing linux studio, just to give it a go. it looks pretty good from
what I'm looking at. I was wonderring what's a good media player for linux? Something
simmilar to winamp, WMP, iTunes, QCD/QMP. Something with a library that can handle 20 or so gig of
music, something really stable. nothing too fancy, As far as advanced features go an EQ and being
able to chance settings with the playback engine (like buffer etc) THX....
Mysql, Php, Apache Downloads And Setup Was A Nightmare
Mysql, PHP, Apache (10) Mysql, PHP, Apache downloads were easy enough. Then came the setup process. This seemed to be an
endless mess of going back and forth trying to get the programs to work together properly. Finaly I
got them working after about 48 hours. There are great tutorials on the setup process, but only one
or two actualy were easy enough for me to understand. I would like to see if I was the only one who
had issues with this setup. Are there easier ways to setup the three?....
Linux Anti-virus Software
is it required? (6) Just installed Linux Ubuntu on a partition with Wireless access to the Internet and have a question
about the need for an Ani-virus software. Is it suggested to have it installed? and which one is
recommended by the Trap17 users? Ubuntu 8.04 installed via Wubi, if that matters. Both the LAN
hard-wire connection and the Wireless Adapter work, if that matters.......
Installing Firefox With Plugins
(6) Hi there guys, Im making a package for novice web designers, it uses firefox and plug-ins. My
question is, How would i make these plugins already part of a firefox installation? I would also
want the homepage to be different form the auto installed one, Anybody got any ideas? cause i am
stumped! /dry.gif" style="vertical-align:middle" emoid=" Please someone help i really am
desperate for this! /huh.gif" style="vertical-align:middle" emoid=":huh:" border="0" alt="huh.gif"
/>....
Linux Kernel Problem
(2) Hi members of trap17, I have a problem in the server that breaks my head for the past few days...
Any help will be greatly appreciated. Thanks in advance Here is the problem Operating System:
CentOS 5.0 kernel 2.6.18-8 Problem: journal commit I/O error Why this occurs: when we do some
read write operations in our server, without any reason the entire file system goes to read only
mode and all our future write operations fail.. and it spits journal commit I/O error Please
explain as to why this error occurs and what can be done to resolve this issue.....
Free Access To Mysql Database Converter
Free Access to MySQL Database Converter (1) QUOTE DB2MYSQL Converter is a totally free software that will convert Microsoft Access Databases
to MySQL. It’s easy fast and accurate MS Access to MySQL Database Converter easily converts database
records of Microsoft MS Access databases to MySQL server. DB2MYSQL is very easy to use, just follow
the simple screens and let the program automatically do all the work for you. We use a very fast
conversion algorithm to provide you with the best possible performance level. Its Features include:
Supports common MySQL data types and attributes. Supports common MS Access c....
Linux
(5) I am thinking of getting Linux, but i'm not sure how compatible the programs will be between the
two systems... I mean would i be able to read .doc and other MS documents? Could also Linux produce
files with .doc extension because my school demands the docs to be only with this extension
/biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />....
Need Advice
(2) I bought an MP3 player. But when you buy music from an online store, the copy-protection scheme may
not allow you to play it on your portable player or to manage your music library with that player.
So I have to solve media protection problem. There are many software to resolve the problem,such as
Xilisoft WMA MP3 Converter ,ImTOO WMA MP3 Converter, MP4converter MP4 to MP3 Converter and ect.
After googling I chose MelodyCan converter (It supports converter WMA to MP3, MP4 to MP3) This
program befits me but anyway I want to buy iPod but I don`t know what software will be....
Openoffice Worm Hits Mac, Linux And Windows
(1) i found this on zdnet QUOTE According to the Symantec Security Response Web site, the worm is
capable of infecting multiple operating system platforms and is spreading. The advisory said: "A
new worm is being distributed within malicious OpenOffice documents. The worm can infect Windows,
Linux, and Mac OS X systems. Be cautious when handling OpenOffice files from unknown sources". In
an interview with ZDNet Australia on Thursday, Dr Jan Hruska, who co-founded rival antivirus firm
Sophos and was one of the first ever PC antivirus experts, said that Apple Mac's ....
Bbc Iplayer
Linux and Mac Ignored (3) The BBC are developing a piece of software called iPlayer, that will allow people who hold a TV
Licence to watch brodcasts up to 7 days after their original transmission by downloading them
through the BBC's software. This is a great idea, and shows the BBC are competing with the likes
of Channel 4's On Demand service. It'll be free, and they've worked hard with the owners
of the programmes to make sure they can bring as much as possible to the service. However, there is
a major problem: iPlayer will require Microsoft Windows and Internet Explorer. The BB....
Linux On Old Computer
(2) Is there any distro of Linux that would run on a computer with 32MB RAM and 10gigs hard drive? I
want to experiment with Linux before trying it on my current computer. Thanks to those who answer in
advance.....
Installing Php5(my Sql) And Apache On Windows
(6) I am trying all day to install PHP5 and Apache 2.0 on my desktop, but it just didn't work. I
tried all tutorials to try and make them work but it never did. Please If someone has a good one,
that 100% guarenteed to work, then please post it back. Thanks!....
Xampp Virtual Hosts Failing
Problem with Apache Server set-up (9) Thanks for any assistance you might be able to provide. As per the topic title, I am having
difficulties getting a Virtual Host set up on my machine. XAMPP by itself is okay, in fact it runs
perfectly except with several projects on my Local machine for testing purposes only, I wanted to
avoid everything being accessed through the localhost/sub-folder method. I would like to go direct
to the folder in the htdocs folder etc, blah, blah. You know what I mean... I have been to the
sites reccomended by other topics and have tried several different things which have all bee....
Help With Installing Sims 2
previous copy uninstalled for new installation (13) Hey everyone. I've gone without the Sims 2 for a while now and I just went out and spent $50 for
another copy of it. Well I uninstalled my other copy since I cracked the first disk of it and I
couldn't get a no-cd patch to work. Then I installed my new copy and when I put the first disk
in, it starts up but after that nothing happens and the Sims 2 white screen that pops up disapears.
And when I open up Task Manager, Sims2.exe just drops off the list, and when I press the Sims 2 icon
on my desktop, the white screen comes up again and after that the infamous, "The....
Got My Linux Browsing Now
(1) Hey everyone, I have been scavenging my newly installed Linux OS - PCLinuxOS for a way to get it to
start browsing. You know what? this thing has been giving me hellmformsome days now cos no matter
what I do, it just wont browse or connect to any local area network. But now, I have been able to
do that without consulting anyone. Well I can only say that I am happy for been able to get it to
start working.....
Having Problems Installing Apache2 On Linux
Any tux lovers to help me out? (3) I am installing Apache 2 on Ubuntu Linux 6.06 (downloaded appropriate binary), and have followed the
instructions from several places, including apach.org... I have got to the point where it says to
enter make , just after the ./configure --prefix=/usr/local/apache2 , where I also added
--enable-mods-shared=most , for the common options. That all went fine, took a little while, then
when it's done I am supposed to enter make , I presume to gather up all the newly created
files. This command just does not exist. returned bash error and it is not in the manual.....
Good Php, Mysql, Perl, Postgresql, Html, Css Etc For Linux?
Going to the good side, but dont really feel like emulating ZDE... (2) Im going over to the good side, (getting Ubuntu next Monday), and need a good PHP++ editor for
Linux. There are just so frikken many out there that it is scary. Prefferable with minimal HTML
WYSIWYG editor, and parsing preview (similar to what ZDE has, maybe?) Anyone got any Ideas to share
with a n00b? I feel very small at the moment /sad.gif" style="vertical-align:middle" emoid=":("
border="0" alt="sad.gif" /> And no, it will be running most of the day, so dont say to emulate
some window thing... /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" a....
Look Out Linux Fans Ubuntu Is Comming Out On June 1st
get ready to grab your own copy (1) UK-based Canonical Ltd. will introduce all-new versions of its popular Debian-based Linuxes --
Ubuntu, Kubuntu, and Edubuntu -- along with its first enterprise server edition on June 1, a company
spokesman told DesktopLinux.com May 25. The full release of Ubuntu 6.06 -- code-named Dapper Drake
and featuring the latest GNOME desktop -- includes both installable live desktop CDs and text-mode
install CDs for three architectures. Canonical will mail free CDs upon request beginning June 1, the
spokesman said. Kubuntu is based on the same Debian-powered core as Ubuntu, but ....
Suse Linux 10.1
(3) Suse 10.1 is finally out after a long period of beta testing. For those who don't know what Suse
is, Suse is a linux operating system. 10.1 is supposed to fix all the problems of suse 10 and also
include a new package management system. A commercial version of Suse 10.1 is released and their is
also an open source version called openSuse 10.1 that you can download for free. Suse is by the way
one of the best linux distributions ever, and thats just an opinion, but a fact. Suse is right with
RedHat linux, which is the leader in the linux world. Suse 10.1 has many new ....
Itunes On Linux
(0) Do you like iTunes? Are you a Linux user? If yes, then you would want to hear about this. There
is a petition posted on the internet that is trying to get signatures to present o Apple that
porting itunes and itunes music store is a good idea. The creator of the petition think it will be a
success, because Apple is open-source friendly. So if you want to get iTunes on linux sign this
petition, you don't need a pen, just type your name and check yes to have itunes on linux.
Here is the link to the petition: http://www.petitiononline.com/itmslin/petition.htm....
Linux Question: Amarok And File Permissions
please help, i can't get it to work with all music files (4) hey, i use to use Linux DC++ to download music from some hubs and i usually download it to
/home/downloads/ and then i move the files to my collection on another HDD a sata one, on
sda3/music/ but when i move the files using krushader root mode they become posessed by root and
amarok can't play them displaying a locker on the file's icon. I tried to " chmod 774 music
", where music is my music directory, as root in konsole but no luck. What should i do to make a
whole directory accessible from amarok as user?....
Installing Apache,mysql,php Under Debian
(10) Hi guys, i'm not much of a programmer and try for 3-4 days to install on my KANOTIX Apache,
MySql and PHP. At each of them i have issues and can't go further without some help. So please
help me here. I'll take them in row. First i installed apache with apt-get and got installed the
following apache2 , apache2-common , apache2-mpm-prefork , apache2-utils ,
libapache2-mod-php5 and some other apache libraries(libxalan2-java, libxerces2-java, libssl0.9.8,
libservlet2.3-java, libjaxp1.2-java)-guess these not being important, perhaps were here in Synaptic ....
Macromedia Flash Player 8
Help installing it... (6) Four days ago I formatted my computer and have been installing all of my applications. I went to the
Macromedia site and installed flash player, and the movie is shown saying that it has installed
succesfully. However, if I go to a website that hosts flash player 8 content, It usually does not
display correctly and it tells me to go download the new player. No matter how many times I
re-install the player through the Macromedia website it does not "take". Any Ideas? Is there
anywhere I can get Flash Player 8 from as a .exe I can run and install? Thanks in advance.....
What Is Mysql's Default Root Password?
Just installed in on my Linux box (10) I installed SuSE Linux 9.1 Professional on an old computer recently. I installed MySQL server
(version 4.0.18), Webmin (version 1.250) and Usermin (version 1.180). If I try to connect to the
MySQL server with the username root and no password, I get an invalid login error from Webmin,
Usermin and mysql-cc. What is the default password, and how can I change it? I am very excited to be
learning Linux (after a long journey through Windows-land), but get frustrated on loopholes like
these. Also, an a different note, why would the system stop loading after a certain point (to....
Help With Linux Ubunto Os
Tutorial for linux ubunto (14) I've got a copy of linux ubunto but don't how to use it, /sad.gif' border='0'
style='vertical-align:middle' alt='sad.gif' /> I don't have any idea about this kind of OS yet,
is there any body knows a site that offers free tutorials for linux ubunto? I really appreciate if
you can help me with this.. /biggrin.gif' border='0' style='vertical-align:middle'
alt='biggrin.gif' /> ....
Linux® Trademark?
(3) http://www.linuxmark.org/ QUOTE The registered trademark Linux® is used pursuant to a license
from Linus Torvalds, owner of the mark in the U.S. and other countries. What's going on
here? It seems that Linus Torvalds (the creator of Linux) realised that he can make some cash with
his creation - actually, it's NAME! Linux is now a registered trademark, and you must pay (
http://www.linuxmark.org/fees.html ) in order to use it in your distribution name! QUOTE As
stated in our articles of incorporation, The Linux Mark Institute ("LMI") is an orga....
Linux Under Windows
Linux in windows (19) Do u want to run linux with out uninstalling window or without dual boot? Here, is the little
utility "Linux under windows". Download from "Mainsoft". It is cool ... Try out today. ....
Proftpd Ftp Server In Linux
how to configure it? (1) Hi, I just installed the ftp server proftpd in my linux machine. I executed it and i can login it
with my user. It redirects me to my /home/myuser. Until here everything ok. My idea was configuring
a ftp server where a predifined user could access only a folder's range with read only
permisions and also a folder with write permisions but not read permisions. I am not sure about the
steps to follow to do this. So i thought that maybe someone in trap is using proftpd and could help
me. So the steps will be: - Create a user with the command useradd/passwd - Modify the ....
Windows -> Linux
Software comparison (17) For those who are planning to switch to linux, here is a fine comparison of software:
http://linuxshop.ru/linuxbegin/win-lin-soft-en/table.shtml ....
Looking for Installing, Apache,, Mysql, And, Php, On, A, Linux, Machine
|
| Similar | | File Manager In Puppy Linux |
| Media Player Linux |
| Mysql, Php, Apache Downloads And Setup Was A Nightmare - Mysql, PHP, Apache |
| Linux Anti-virus Software - is it required? |
| Installing Firefox With Plugins |
| Linux Kernel Problem |
| Free Access To Mysql Database Converter - Free Access to MySQL Database Converter |
| Linux |
| Need Advice |
| Openoffice Worm Hits Mac, Linux And Windows |
| Bbc Iplayer - Linux and Mac Ignored |
| Linux On Old Computer |
| Installing Php5(my Sql) And Apache On Windows |
| Xampp Virtual Hosts Failing - Problem with Apache Server set-up |
| Help With Installing Sims 2 - previous copy uninstalled for new installation |
| Got My Linux Browsing Now |
| Having Problems Installing Apache2 On Linux - Any tux lovers to help me out? |
| Good Php, Mysql, Perl, Postgresql, Html, Css Etc For Linux? - Going to the good side, but dont really feel like emulating ZDE... |
| Look Out Linux Fans Ubuntu Is Comming Out On June 1st - get ready to grab your own copy |
| Suse Linux 10.1 |
| Itunes On Linux |
| Linux Question: Amarok And File Permissions - please help, i can't get it to work with all music files |
| Installing Apache,mysql,php Under Debian |
| Macromedia Flash Player 8 - Help installing it... |
| What Is Mysql's Default Root Password? - Just installed in on my Linux box |
| Help With Linux Ubunto Os - Tutorial for linux ubunto |
| Linux® Trademark? |
| Linux Under Windows - Linux in windows |
| Proftpd Ftp Server In Linux - how to configure it? |
| Windows -> Linux - Software comparison |
Searching Video's for Installing, Apache,, Mysql, And, Php, On, A, Linux, Machine
See Also,
|
advertisement
|
|