Sponsored Content
Operating Systems OS X (Apple) local dynamic http development environment Post 302570602 by cowLips on Thursday 3rd of November 2011 08:23:52 PM
Old 11-03-2011
Thank you flying meat for the re ply.
I have been learning the HTML document for a few years now. i do not follow the slang of web site when its a document with a protocol with a disciplined approach.
i can understand static HTML with Javascript can be developed on any computer with a browser to render the HTML mark up and Javascript.
In the Dynamic end of things i have never seen a real definition , yet we understand it is a use of the server side technologies with PHP and MySQL and maybe some JAVA and sprinkled with some Pearl interacting with the client machine via the humanoid operator.
With that said.
I do understand that the Mack ships with a thrill for those who would like to create their own web site, yet that is static HTML.
To actually tie the existing PHP in the Mack with the existing MySQL and the existing Apache server is a question . and an answer i have yet to see.
as similar for some one new to welding, that person would be new to the language of welding as well.
The computer tech slang and every thing else in between can really suck some times.
I actually enjoy writing code. it may be dry and boring for some people. i could really get into some bash and C. Its the slang and ambiguous ness that is a pain to get around.
But i would just like to get a online business going. And that takes my efforts to learn PHP and MySQL.
I was working with a apache php mysql combo for while and then saw they were getting negatives from paying customers.
Then there is another Mack supported alley for a local environment in PHP MySQL Apache that stopped at OS 10.5, because of the purchase the developer licence deal in OS 10.6.
I came across a book from no starch press that is a guide to setting up the apache php mysql environment in BSD. So now i am looking at stopping at PHP MySQL and going for a swim in Bash and learning its syntax to work with building a environment from scratch with the available modules and other software along with the Bash utilities and such all that are available in the command line tool box.
la laaaaaa la la li li laaaaaaa.
just a happy song.
some day i just might get to the other end.
Thank you
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Environment Variable for Local Directory?

This seems like a simple thing, but I can't seem to find an environment variable that has the local/current directory stored in it. I have a script that writes out the files in a directory. I want to append the full path to the file names in the output file. (4 Replies)
Discussion started by: ttilsch
4 Replies

2. UNIX for Advanced & Expert Users

Sql dynamic table / dynamic inserts

I have a file that reads File (X.txt) Contents of record 1: rdrDESTINATION_ADDRESS (String) "91 971502573813" rdrDESTINATION_IMSI (String) "000000000000000" rdrORIGINATING_ADDRESS (String) "d0 movies" rdrORIGINATING_IMSI (String) "000000000000000" rdrTRAFFIC_EVENT_TIME... (0 Replies)
Discussion started by: magedfawzy
0 Replies

3. Web Development

Setting up Development and Live web site environment

Hi, I am fairly new to unix so please go easy on me.. I have a VPS on which I would like to setup a development and live web site environment and can't seem to work out what is the best technique for doing so. I would like to be able to mirror the live site and have a "check out" and... (0 Replies)
Discussion started by: ciantrius
0 Replies

4. UNIX for Dummies Questions & Answers

Development Environment Help

Hello all, First time here and with linux/*nix like OS's. What I'm trying to do is have a development environment in unix with GCC, GDB, and some editor like Vim/emacs/nano/etc.... I have Openbsd loaded on a virtual machine in VMware workstation. Boots fine and all seems good. I have... (2 Replies)
Discussion started by: tuck
2 Replies

5. Linux

Dynamic HTTP

hi guys, please i would like to know how to cache dynamic websites, on squid 3.1 thanks (1 Reply)
Discussion started by: zazoo
1 Replies

6. Programming

sending http url through http socket programming..

hi am senthil am developing a software to send and receive SMS using HTTP connection first of all am forming a URL and sending that URL to a remote server using my Client Program i send that url through Socket(using Send() Function) if i send more than one URL one by one using the same... (0 Replies)
Discussion started by: senkerth
0 Replies

7. Shell Programming and Scripting

sending http url through http socket programming..

hi am senthil am developing a software to send and receive SMS using HTTP connection first of all am forming a URL and sending that URL to a remote server using my Client Program i send that url through Socket(using Send() Function) if i send more than one URL one by one using the same... (4 Replies)
Discussion started by: senkerth
4 Replies

8. Web Development

HTTP Headers Reference: HTTP Status-Codes

Hypertext Transfer Protocol -- HTTP/1.1 for Reference - HTTP Headers 10 Status Code Definitions Each Status-Code is described below, including a description of which method(s) it can follow and any metainformation required in the response. (1 Reply)
Discussion started by: Neo
1 Replies

9. Shell Programming and Scripting

awk script to find time difference between HTTP PUT and HTTP DELETE requests in access.log

Hi, I'm trying to write a script to determine the time gap between HTTP PUT and HTTP DELETE requests in the HTTP Servers access log. Normally client will do HTTP PUT to push content e.g. file_1.txt and 21 seconds later it will do HTTP DELETE, but sometimes the time varies causing some issues... (3 Replies)
Discussion started by: Juha
3 Replies
MYSQL_GET_SERVER_INFO(3)						 1						  MYSQL_GET_SERVER_INFO(3)

mysql_get_server_info - Get MySQL server info

SYNOPSIS
Warning This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include: omysqli_get_server_info(3) o PDO::getAttribute string mysql_get_server_info ([resource $link_identifier = NULL]) DESCRIPTION
Retrieves the MySQL server version. o $ link_identifier -The MySQL connection. If the link identifier is not specified, the last link opened by mysql_connect(3) is assumed. If no such link is found, it will try to create one as if mysql_connect(3) was called with no arguments. If no connection is found or established, an E_WARNING level error is generated. Returns the MySQL server version on success or FALSE on failure. Example #1 mysql_get_server_info(3) example <?php $link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); if (!$link) { die('Could not connect: ' . mysql_error()); } printf("MySQL server version: %s ", mysql_get_server_info()); ?> The above example will output something similar to: MySQL server version: 4.0.1-alpha mysql_get_client_info(3), mysql_get_host_info(3), mysql_get_proto_info(3), phpversion(3). PHP Documentation Group MYSQL_GET_SERVER_INFO(3)
All times are GMT -4. The time now is 02:53 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy