Programming :: Which Distribution Is Best For Web Development?

Jun 20, 2010

I need help with choosing the right distribution for web development.My potential future employeer wants me to give him some ideas, We are going to create a new catalog website, using a CMS,So I need to know some good solutions,

1. Which CMS to use for such a website, my idea is Joomla!

2. Which platform would be effective, here's where I need to ask you, as I know only a little about Linux distributions. But my idea is openSUSE so far.

3. Which development tools to use, for PHP scripting and MySQL(also xhtml and css).

View 2 Replies


ADVERTISEMENT

General :: Distribution For A Home-cum-development Server?

Jun 20, 2010

I have an old Pentium-4, 2GB RAM, 2X160GB IDE-Hard disk computer. I am learning software development and I need a distribution with support for

(a) Oracle/Sun Glassfish v3 server
(b) Apache web server
(c) MySQL server
(d) Postgres server
(e) Sun virtual-box (headless)
(f) Webmin

For my home use, I need a proxy server and a file-and-print server (e.g. samba) I need to be able to run it headless. It should be easy to configure, but should also be like a real-world linux-distribution.

View 3 Replies View Related

General :: Small Distribution Which Comes With Complete C Development Environment

May 2, 2010

I have installed "Damn Small Linux" on my home computer for doing C development in unix. But the distribution doesn't by default come with the C development environment and I am facing some issues when trying to install the gcc.Is there any other small Linux distribution which by default has the required packages for the C development. And also I don't want additional software which takes up lot of space but still would like to have the graphical environment.

View 6 Replies View Related

Programming :: Python With Web Development ?

Dec 17, 2010

I have decided to learn python as it seems to be powerful not just for web development (like php) but also a clean powerful language for other puposes.

Q: Can someone suggest a tutorial or book, on learning python (beginner to intermediate) which has as its focus for learning, web development?

In order of preference: 1. Comprehensive, 2. Online, 3. Free

View 2 Replies View Related

Programming :: Use For Open Source Development?

May 19, 2011

I wish to start development for the open source projects. And going to start working on some project in C/C++ and shell/python scripts. I wish to know the best suitable development environment for this purpose? What about eclipse? I will be interacting with git, make and other open source utilities.

View 2 Replies View Related

Programming :: Design And Development Of A KEDB Using PHP

Oct 5, 2010

I am designing a KEDB (Known Error Database) which I am currently maintaining with MS-Excel. I want to develop a Web Application to accomplish this task in a more convenient and effective way. Well, you guess, the client should be happy to see how we provide support more effectively...? I want to make it ITIL-Compliant. I (optionally) want to provide the Problem and Change Management facilities within it in a way that the concerned teams and the management can find the KEDB very useful for their work also. I am going to do it entirely in PHP and JavaScript for client-side validations wherever needed.

View 3 Replies View Related

Programming :: How To Monitor The Applet Development

Sep 20, 2010

The embedded hardware is working nicely, and even the antique laptop is now running smoothly using tinycore linux. The device pumps out packets of data at roughly 128 bytes/second (two packets, one 56 bytes, the other 72, alternating every 500mS).

I'd like to create a more general purpose application for monitoring the data being logged. It is a simple matter to have the back-end application write a log file of incomming data, or be a little more sophisticated and just write out changes from the previous packet. The difficulty is that the existing curses-based cli application reads directly from the serial port and can only be run from one place at a time. Once data has been pulled off the port it's not available any more.

A database for logging the data is not necessary, as the application would mostly be used for auditing material consumption, not tracking minute-by-minute usage over any length of time.I could have the existing back-end app. write data to a file accessible through a web server, and allow interested parties to download the information. This would be greatly enhanced by a small front-end app. that can request the data and format it for a more sensible display. Alternatively, is there some way to open a socket (I'm out of my depth here) so a free-standing application could simply request the data, and do the front-end formatting? This presents problems in that it wouldn't be multi-platform capable.

View 2 Replies View Related

Programming :: Operating System Is Better For Web Development?

Jul 13, 2010

I am wondering which operating system is better for web development between Mac, Linux, and Windows? I want to code in HTML5, PHP, MySQL, and also use AJAX.

View 11 Replies View Related

Programming :: Use The Offical Development SDK, Rather Than Hacking The Phone

Dec 10, 2010

recommend a good book to start learning iphone/pad development. I want to use the offical development SDK, rather than hacking the phone.

View 1 Replies View Related

Programming :: Newbie To Start Driver Development?

Mar 14, 2010

I want to know where to beging with I want to start Device driver development.Any good link or book.

View 4 Replies View Related

Programming :: Rapid Web2.0 Development Framewor

Feb 22, 2011

I had a few ideas for simple online sites that would be perfect for the whole facebook notifications / android app style of integration. I could start with vi and write a php website, but I've no idea what standard frameworks are available for the more rapid development of sites like this. integrating with openid / google accounts etc... what tools are people using to put together these big blocks of drop in functionality and then tieing together with hopefully surprisingly little code? I'm aware of Django to some extent, should I be digging deeper into this?

View 1 Replies View Related

Programming :: Which Scripting Languages To Use With Distro Development?

Jun 29, 2011

i'm wondering which scripting language is better for distro related activity such as cron jobs , startup scripts and similar things.why is bash mostly used ? is it because of efficiency ?what about perl , python or php as potential successors to bash ?

View 14 Replies View Related

Programming :: Which Distribution Is Best For Network Programming

Oct 29, 2010

which distribution is best of Linux for Network programming.Is that GCC complier is preloaded in the Linux distro...Which material is the best for the new comer in Linux

View 1 Replies View Related

Programming :: Web Development - Command To Search String Through Files On A Server?

Apr 8, 2009

I am web developer I have this command find . -exec grep "Improve your score" '{}' ; -print for searching through files . I found this command but now i would like to tweak it to gain more out of it.

View 2 Replies View Related

Programming :: Build Whole Distribution From Source Codes?

Dec 11, 2008

I have downloaded whole linux source codes of fedora in a dvd. There are several rpm packages and lots of directories in it. I want to load all source codes to version control system (svn or cvs) which is loacated in a server and develop it step by step .During this time I want to build my own distribution. So I need to know how to build all these packages at once. Is there anyone who can explain "how to do" to me

View 1 Replies View Related

Programming :: Making A Project Distribution Folder?

Jun 25, 2010

I'm trying to make my first c project (a simple tic tac toe console game), and I am wondering how to make a final product (copy all source code files to a distribution folder upon compilation). Should I use a bash script or should I use a makefile to make the distribution folder? I'm not terrible familiar with either; I have a basic makefile to make an executable, and that's about all I know of make.

And if I do use a bash script, how do I copy over source code files? I tried cp ./*.c and cp ./*.h, but I think the script read it literally as moving a file named ./*.c (and ./*.h), and couldn't find it.

My makefile is pretty much this:

Code:
objectFiles = main.o io.o board.o game.o
ttt : $(objectFiles)
cc -o ttt $(objectFiles)

View 2 Replies View Related

General :: Installing Code For One Distribution To Another Distribution?

Mar 5, 2009

I would like to install a program (R for statistical computing). I am using Slackware. On the download page of R (The Comprehensive R Archive Network) there are options to download the code for Debian, Redhat, Suse, and Ubuntu. Which one should I download in my case (using Slackware)? Is there any of them which I should not download?

View 4 Replies View Related

Programming :: Interface The Output Pins On The Header Of The GESBC-9260 To The Distribution?

Jan 13, 2010

I'm a complete linux beginner and currently have the following board that I am playing around with.the main chip onboard is an atmel arm9 core with a debian style distribution pre-installed. I have just updated the factory kernel to 2.6.30 as I was told this had an inbuilt GPIO driver? I am trying to interface the output pins on the header of the GESBC-9260 to the linux distribution. i.e. I would initially like to write a c file that did something like toggle an output pin, which I can then connect upto an led and see this flash. However I don't really have a clue where to start. Hopefully someone could point me in the right direction?

View 1 Replies View Related

Software :: 32 Bit And 64 Bit RPM Development?

May 24, 2010

I am having to use two separate workstations for building 32 bit and 64 bit RPMs: 32 bit RPMs on a workstation running 32 bit RHEL and 64 bit RPMs on a workstation running 64 bit RHEL.Is it possible to build both 32 bit and 64 bit RPMs on the workstation running 64 bit RHEL? If so, how?

View 1 Replies View Related

General :: Java Development Kit (JDK) From Ftp?

Mar 31, 2011

I need to download specific JDK version but from console in Linux. I have not lynx/elinks etc linstalled. Where can i download Java Development Kit (JDK) from ftp ?

View 1 Replies View Related

Ubuntu :: Set Web Development Playground?

Feb 2, 2010

How do I go about setting up a lamp server just for testing out and learning web development without opening it up to public?

View 1 Replies View Related

Ubuntu :: Looking For Web Development Software

Sep 20, 2010

I'm looking for a program that allows me to create website. For the past years, Frontpage and Dreamweaver really worked for me, but none of these are working on Ubuntu. Is there an alternative for Ubuntu?

View 6 Replies View Related

Ubuntu :: Install A Web Development Ide In 11.04?

May 5, 2011

i need to install a web development ide in my ubuntu 11.04.

which one do you recommend?

it should atleast support html, css, php and javascript.

View 9 Replies View Related

Debian :: Kernel Development In Mac Os

Aug 11, 2010

I have a macbook, but I am very much interested in writing device drivers in linux. Currently, I have a debian os installed. I dual booted my mac book. Is there any way, I can work on linux source code in mac book and do the needed development.

View 3 Replies View Related

General :: Development Of A New Version?

Jan 19, 2011

how can i devevelopment of licux a new version of school

View 1 Replies View Related

General :: Freeware Sdk For ARM Development

Sep 9, 2010

i would like to use a sdk or compiler to run/execute a program on ARM type processors but to compile the programs in desktop PC.the sdk or compiler should be a freeware.

View 10 Replies View Related

Fedora Servers :: Web Development Server & SVN?

Mar 18, 2009

I'm in charge of setting up svn on a Fedora Core 9 server running cpanel for a company website. The company currently has 4 developers working on the site which isn't live yet. The server currently has one user and the site is located in ~/public_html

My question is what is the best way to set up subversion for all the developers? Should I create the svn directory in ~/ or should I create a new user and put it in their ~/public_html and create a virtual host to it so I can have www.dev.site.com point to the svn version of the site? And then create a group for all the users so everyone can access it?

View 14 Replies View Related

Fedora :: Install X11 Development Package?

Sep 11, 2010

As topic, I have trouble with compiling brlcad as this thread.
http://forums.fedoraforum.org/showthread.php?t=249899

I assume the last problem I encounter was lack of development package in the system. Hence, I tried "yum install Xorg-devel" and the terminal reply"No package xorg-x11-devel available."

View 8 Replies View Related

Fedora :: Linking To X Development Libraries In GTK+

Oct 17, 2010

I am running Fedora 13 on a ASUS G71G Trying to install GTK+ 2.4.8; after installing all the dependencies(Pango, Glib2.0, ATK), I ran ./configure from my GTK+ directory. It configured for a while, then this happened: checking for X... no configure: error: X development libraries not found I tried linking them with PKG_CONFIG_PATH=<path to X lib directory>, but I got the same error message. How do I get GTK+ to recognize the X development libraries? Additionally, does the default build of X11 on Fedora 13 contain the appropriate libraries? Ive included the GTK+ configure scripts as an attachment.

View 1 Replies View Related

Fedora :: Install IOS Development Kit Xcode 3.2.5

Feb 17, 2011

how to install iOS development kit xcode 3.2.5 on fedora. It is a .dmg file.

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved