MySQL 4 to 5 for PHP

I've just installed MySQL 5.0.27 on my Tiger server. As far as I can tell, it installed OK. MySQL 4.1.13 is still running on the server also (as was pre-installed). How do I link PHP to use the MySQL 5 instead of 4? Also, same question for MySQL Admin and through Terminal.
Thanks in advance.

The stock Tiger server configuration expects to find the MySQL 'socket' at /var/mysql/mysql.sock. You can check this in /etc/my.cnf, and you can check where php will look for the MySQL socket in /etc/php.ini.
So, if your MySQL 5.x installer uses the same socket location (check the config file metnioned above), you should be all set.
Probably be a good idea to disable MySQL 4.x, by changing 'MYSQL=-YES-' to 'MYSQL=-NO-' in /etc/hostconfig. Note that this assumes that both MySQL 4 and 5 are running, which would indicate that the 5.x is using launchd, not SystemStarter to start at boot time, which is probably the case unless you really did a lot of tweaking.
I've just installed MySQL 5.0.27 on my Tiger server.
As far as I can tell, it installed OK. MySQL 4.1.13
is still running on the server also (as was
pre-installed). How do I link PHP to use the MySQL 5
instead of 4? Also, same question for MySQL Admin and
through Terminal.
Thanks in advance.
MacBook Pro   Mac OS X (10.4.8)  

Similar Messages

  • Display only a part of a text string for PHP MySql feild

    i have a description (tk_job_desc) feild on a jobsearch that i only want to display say the first 5 lines of the description feild the click a read more option the take the user to a new page the read the full job outline
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_Recordset1 = 5;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
    $var_tk_job_title_Recordset1 = "%";
    if (isset($_GET["tk_job_title"])) {
      $var_tk_job_title_Recordset1 = $_GET["tk_job_title"];
    $var_tk_job_location_Recordset1 = "%";
    if (isset($_GET["tk_job_location"])) {
      $var_tk_job_location_Recordset1 = $_GET["tk_job_location"];
    $var_tk_job_salary_Recordset1 = "%";
    if (isset($_GET["tk_job_salary"])) {
      $var_tk_job_salary_Recordset1 = $_GET["tk_job_salary"];
    mysql_select_db($database_hostprop, $hostprop);
    $query_Recordset1 = sprintf("SELECT tk_job_title, tk_job_location, tk_job_salary, tk_job_desc FROM think_jobsearch WHERE tk_job_title LIKE %s OR tk_job_location LIKE %s OR tk_job_salary LIKE %s", GetSQLValueString($var_tk_job_title_Recordset1, "text"),GetSQLValueString($var_tk_job_location_Recordset1, "text"),GetSQLValueString($var_tk_job_salary_Recordset1, "text"));
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $hostprop) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    ?>
    the html is
    <table width="655" border="0" cellspacing="5" cellpadding="0">
                <tr>
                  <td colspan="2" class="Titlegreen"><?php echo $row_Recordset1['tk_job_title']; ?></td>
                </tr>
                <tr>
                  <td colspan="2" class="textblack"><?php echo $row_Recordset1['tk_job_desc']; ?></td>
                </tr>
                <tr>
                  <td width="250"> </td>
                  <td width="405"><div align="right"><span class="pos_salary"><?php echo $row_Recordset1['tk_job_salary']; ?></span><span class="pos_location">/<?php echo $row_Recordset1['tk_job_location']; ?></span></div></td>
                </tr>
              </table>
    thanks

    ok thanks., i have found a few things on the internet
    i followed the tutorial http://www.phpbuilder.com/board/showthread.php?t=10332476
    "SELECT LEFT tk_job_title, tk_job_location, tk_job_salary, ('tk_job_desc',150)............... but it has returned and error
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'tk_job_title, tk_job_location, tk_job_salary, ('tk_job_desc',100) FROM think_job' at line 1
    the other part of the article shows
    <?php
    mysql_connect("localhost", "user", "pass");
    mysql_select_db("my_db");
    $result = mysql_query("SELECT * FROM news ORDER BY RAND() LIMIT 0, 1");
    while ($rows = mysql_fetch_array($result))
    echo substr($rows['text'],0,100);
    ?>
    looking at my code i need to add the tk_job_desc to the statement
    $query_Recordset1 = sprintf("SELECT tk_job_title, tk_job_location, tk_job_salary, tk_job_desc FROM think_jobsearch WHERE tk_job_title LIKE %s OR tk_job_location LIKE %s OR tk_job_salary LIKE %s", GetSQLValueString($var_tk_job_title_Recordset1, "text"),GetSQLValueString($var_tk_job_location_Recordset1, "text"),GetSQLValueString($var_tk_job_salary_Recordset1, "text"));
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $hostprop) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    would i need to put that statement in there?

  • Complete DW CS5 Cookbook for PHP/MySQL ebook needed

    Complete DW CS5 Cookbook for PHP/MySQL ebook needed.
    Please reply me a good link for download.
    Thanks
    or email me here: [email protected]

    Sorry, I don't know of any e-books for that particular title. 
    Some links that may be of interest to you:
    http://foundationphp.com/books.php
    http://tinyurl.com/7vk4n47
    http://tinyurl.com/yh6n8yo
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Running MySQL Connection for PHP on Dreamweaver8

    Good Day:
    I installed the MySQL 5.0 and PHP 5.0 to run on my Dreamweaver 8.
    On the Application Panel -> Database tabs -> MySQL Connection: after i entered the connection name, user name and everything, it returns HTTP ERROR CODE 502 BAD GATEWAY.
    btw, I'm running on localhost
    May someone pls tell me what's wrong with it?
    many thanks!

    Hi,
    maybe your issue is related to what´s already been posted to the Dreamweaver Application Development forums:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=263&threadid =1293443&enterthread=y
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    If the data is on a remote server (for example, PHP running on a web server, talking to a MySQL server) then you do this in an AIR application the same way you would do it with any Flex application (or ajax application, if you're building your AIR app in HTML/JS).
    That's a broad answer, but in fact there are lots of ways to communicate between Flex and PHP. The most common and best in most cases is to use AMFPHP (http://amfphp.org/) or the new ZEND AMF support in the Zend Framework.
    This page is a good starting point for learning about Flex and PHP communication:
    http://www.adobe.com/devnet/flex/flex_php.html
    Also, in Flash Builder 4 they've added a lot of remote-data-connection functionality, including a lot that's designed for PHP. Take a look at the Flash Builder 4 public beta for more on that: http://labs.adobe.com/technologies/flashbuilder4/

  • How to recover deleted projects in adobe flash builder 4.5 for PHP

    Hi
    Problem:I accidently deleted project in adobe flash builder 4.5 for PHP and in confirming dialogue box,i checked delete contents one(see figure).
    I have wasted almost 6 hours and googled almost everything but couldn't find solution.
    I have also used data recovery software like Get Data:Recover my deleted files.It found all my deleted files which was deleted by me pressing Shift+Del,but it didn't displayed files which i wanted(since they were deleted by Adobe flash builder).
    Any help would be welcomed as that project was so important for me.

    Thanks for your solution but in mine it saying,There are no previous versions found.
    I have used almost 6 recovery software paid and free and didn't intstalled on that drive where my original files are located so that it don't get overwritten.
    All of them are able to recover some files like
    .project
    public/bin-debug folder
    .settings folder
    But my .php files i located in web root folder.Those file by i connect data/services. I mean PHP project files are deleted.
    I had following structure of files
    <Web root > php scritps to connect data\services\UserService.php                  (this file)
    <Web root > php scritps to connect data\services\EmployeeService.php          (this file)
    <Web root > php scritps to connect data\test\test.php                                    (this file)
    <Web root > php scritps to connect data\Imp files to connect data using PHP and MySql.txt (this file)
    Files marked by "this files "  are  lost and not found by any recovery software.
    I need those php and txt files specifically.

  • Flash Builder 4.5 Auto-Gen Code For PHP Data Service Produces Errors

    Hello
    I'm currently running a fresh install of MAMP on my Mac and when I start a new flex project, add a php data service that pulls from a mysql database I have. Everything works fine until I try to compile. The error I'm getting is 'uid' being the primary key which is a bigint(20). The file _Super_Users.as (auto-gen based on the user table below) reports 2 errors: [Managed] requires uid to be of type 'String'. (same error on 2 lines of code) Now the MySQL table wants it to be a int, the auto gen code seems to want it to be an int as well but for some reason its putting in these requires for String on the getter and setters for 'uid'. The is before I even add any of my own code, just auto-gen then compile.
         * data/source property getters
    [Bindable(event="propertyChange")]
        public function get uid() : int /*error line*/
            return _internal_uid;
         * data/source property setters
        public function set uid(value:int) : void /*error line*/
            var oldValue:int = _internal_uid;
            if (oldValue !== value)
                _internal_uid = value;
    This is what my database looks when I export it:
    CREATE TABLE `users` (
      `uid` bigint(20) unsigned NOT NULL,
      `name` varchar(150) NOT NULL,
      `first_name` varchar(50) NOT NULL,
      `middle_name` varchar(50) NOT NULL,
      `last_name` varchar(50) NOT NULL,
      `gender` tinyint(1) NOT NULL,
      `locale` varchar(5) NOT NULL,
      `link` varchar(255) NOT NULL,
      `username` varchar(50) NOT NULL,
      `email` varchar(255) NOT NULL,
      `picture` varchar(255) NOT NULL,
      `friends` text NOT NULL,
      `created` datetime NOT NULL,
      `updated` datetime NOT NULL,
      PRIMARY KEY (`uid`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    It's empty right now...
    Apache 2.0.64
    MySQL 5.5.9
    PHP 5.2.17 & 5.3.5
    APC 3.1.7
    eAccelerator 0.9.6.1
    XCache 1.2.2 & 1.3.1
    phpMyAdmin 3.3.9.2
    Zend Optimizer 3.3.9
    SQLiteManager 1.2.4
    Freetype 2.4.4
    t1lib 5.1.2
    curl 7.21.3
    jpeg 8c
    libpng-1.5.0
    gd 2.0.34
    libxml 2.7.6
    libxslt 1.1.26
    gettext 0.18.1.1
    libidn 1.17
    iconv 1.13
    mcrypt 2.5.8
    YAZ 4.0.1 & PHP/YAZ 1.0.14
    I tried to give as much info as possible, if you need more let me know...

    I discovered my problem was uid seems to be a built in global or something and was filling in that data field with a bunch of letters and number, like the device id. Because of the letters flex was throwing a fit. So if you're using Facebook API in flex be sure to not go with uid for the user id, which is was facebook api calls it.

  • Help setting up Flash Builder 4.5 for PHP

    I am looking for a concise set of steps for setting up ALL requirements for running Flash Builder 4.5 for PHP.  I have been fighting for three days to get the TestDrive example up and running, with no success.  At every step of the way I have encountered problems.  I fought for a day and a half with MySQL.  Then I fought for another day with PHP (Liip).  Then I fought for another day with Zend.  All along the way I have fought problems with Flash Builder and Flash Builder for PHP.  I've had to relearn all of my UNIX shell commands (it's been a few years).  I've tried using a remote server at 000webhost.com.  I've tried using an old laptop for a server.  I finally ended up trying to do it all on my main laptop.  I have completely given up and am ready to dump my project altogether.  Forget my students.  They'll just have to live without what would have been a fantastic new way of learning.
    HELP!!!

    Hi There,
    I do not have a 'concise' answer for you - in fact I am not using FB 4.5 for PHP.  I started using FB 4  around 8 months ago.  I installed a 'WAMP' thing, called 'EasyPHP'.  That actually went pretty smoothly.  I did the whole thing on my personal laptop running Windows 7.  I 'hooked up' FB to the PHP side using the built in data services wizards and such, as I imagine you are trying to do.  I too had to 'fight' a bit, but found most of the answers scattered around the Internet.  Had to tweak a few settings here and there in various files, and viola, it worked.
    I have resisted upgrading to 4.5, and especially the 4.5 "for" PHP, only becuase of the great expense.  It seems like a lot of money to pay for 'integrated, round-trip debugging'.  I already can debug the PHP side 'independently' of the FB side (from inside the Eclipse+PHP plugin free toolset), which, for most SQL situations is good enough. I simply set up a 'test page' in PHP and use that to 'call' the various functions I write.
    On the FB side, I gave up on using the 'built in data services wizard thingies' because they simply could not get the data-type mappings correct between the two sides.  Also, the "value objects" things (really just a fancy data-object class definition) seeme overly complex and inflexible, i.e., they would re-code themselves after every change I made to the PHP side.  I prefer a more 'lean' approach, and one that I control 100%.  So far I am able to do everything I need using my own 'value objects' (simple classes).
    So...as you can see, I may not be able to help much, but, if you can explain some of the details of what is failing, maybe I can provide a bit of assistance.  From what I understand, the big difference between 4.5 and 4.0, at least on the PHP side, is that the 'introspector' is a bit more accurate now and of couse there is the 'round-trip' debugging and 'awareness of each other's objects/definitions' while in PHP or FB.
    Finally, as best I can tell, after 8 months of 'experimenting' with Flex and PHP, there are simply not many people doing it, or, at least not that many doing it that participate on this forum and who have practical experience, especially with the more 'recent' releases, i.e., 4.0, 4.5.  I would encourage you to scan the rest of the Internet...there *is* knowledge out there...but it can difficult and slow to get.
    -David

  • Upcoming Adobe Flash Builder 4.5 for PHP Premium

    The upcoming Flash Builder 4.5 for PHP Premium looks very intriguing. It includes an integrated Zend Studio 8. No need for Dreamweaver at all. I'm definately going to snap this up when it's available.

    Thanks for your solution but in mine it saying,There are no previous versions found.
    I have used almost 6 recovery software paid and free and didn't intstalled on that drive where my original files are located so that it don't get overwritten.
    All of them are able to recover some files like
    .project
    public/bin-debug folder
    .settings folder
    But my .php files i located in web root folder.Those file by i connect data/services. I mean PHP project files are deleted.
    I had following structure of files
    <Web root > php scritps to connect data\services\UserService.php                  (this file)
    <Web root > php scritps to connect data\services\EmployeeService.php          (this file)
    <Web root > php scritps to connect data\test\test.php                                    (this file)
    <Web root > php scritps to connect data\Imp files to connect data using PHP and MySql.txt (this file)
    Files marked by "this files "  are  lost and not found by any recovery software.
    I need those php and txt files specifically.

  • Apache in FMS 4 Developer vs XAMPP Environment for PHP

    1.  Have a Flash Webpage under development designed to permit preview and streaming of FLV video.  Downloaded FMS Developer as a test server on my computer.  Apache 2.2 loads with it with a checkbox option to install it or not. I'm able to stream my video OK in this setup using RTMP://localhost and the FLVPlayback component in Flash Pro.  I like some of the OSMF players better like the one in the FMS Start Screen, but I haven't been able to integrate/embed it into my Flash webpage using the HTML provided.  They say just paste it to the webpage, but in ActionScript how do you do that?  None of the online help really explains how to embed Strobe Media Player into an FLA webpage using their HTML.
    2.  I plan to use PayPal Express Checkout for Digital Goods (EC/DG) as my pay facility on the Flash webpage. My videos will play to a cuepoint and then jump to a PayPal button which executes (EC/DG) .  I'm having trouble integrating PayPal with my Flash webpage.  There's a lot of online help, but most solutions involve PHP.  To help me understand PHP I bought the e-book, "Adobe Dreamweaver CS5 for PHP" which recommends downloading the XAMPP platform which contains Apache, PHP, MySQL etc.  I have several questions concerning this:  (a) If I use the XAMPP software, as recommended in the Dreamweaver book, do I have to first uninstall the Apache that comes with FMS? I assume you can't have two Apache's running at the same time. (b) Is FMS the Server or is Apache the server in the FMS installation? (c) Does the Apache software installed with FMS include PHP and MySQL, which seems to be required for any server-side coding?
    You can see by some of these questions that I'm new to all this Server stuff.  I'm doing it myself because I can't afford to pay the $400 to $500 a month for a Video Streaming Host.  I want to use FMS with Amazon Web Services to implement my Streaming Video Project, but I'm not sure I can do it with all the problems I'm encountering.  Anybody know any "reasonable" developers?   ;-)
    Two final questions:
    3.  Why would I need Flash Builder if I have Dreamweaver?  Don't they do essentially the same thing?
    4.  Can I do everything I'm trying to do in 1 and 2 above just using ActionScript and JavaScript, which I understand is just Server-side ActionScript?
    I appreciate any help you can give me on any one or all of these issues.  Thanks
    Joel Cotten
    VideoArts

    1. backup your applications folder, fms.ini and any other config files that you have changed in the FMS install directory.
    2. uninstall FMS
    3. reinstall FMS and uncheck the option to install the bundled apache webserver . FMS should be installed on a seperate server as apache. Flashplayer uses port 80 and it  Will conflict adobe apparently bundles apache to be used as demo. I have never gotten PHP and all its modules such as gd to work on their version of apache. reinstall you applications folder and fms.ini(any thing else you backed up)
    4. install apache 2.2,PHP,PHP PEAR(if you ever want to send mail)  install  mysql and mysql workbench on the server machine.
    5. create a text document and change hide known file extensions in the windows folder options so you can change the text files extension to .html(myEmbedFile.html) paste the html provided into this file put it on the webserver and browse to it.
    Resources to keep in mind.
    1. You can use any desktop machine running windows that is has at least 512 mb of ram as development machine. I have installed all the above mentioned servers on desktop machines. I currently use a single quad core destop for all my delvelopment needs and because its a devlopment machine i took port 80 out of fms.ini and installed IIS,Mysql and FMS on it. Keep in mind if you are using windows 7 that you can install apache and PHP on it but I could not get GD (php graphics module) to install on it an currently use IIS. If you do all of this on Linux its not a problem but you may have to find a patch for FMS to get it to install.
    2. if you want to attach your ip adderess to a domain name use dyn.dns their client will autochange your IP address if your ISP gives you a new one or you change a nic card or for any other reason.
    You should do everything I've described above to be able to learn and create apps as effiecently and with as little hassle as possible.
    You can use a package such as  XAMPP to which will install all the above servers but i prefer to do it one by one and use config files without a config manager and I think its easier to install any sever modules I might want to use in the future to expand my development websites. Your choice though.

  • I have looked through the video tutorials for CS6 and cant find any help for PHP using SQL.

    Where is a good place that I can go to learn more about using dreamweaver and different languages than html.  Is there a service that adobe offers that I could buy that would take me from rookie all the way to professional with a good easy to use structure such as adobe tv but more advanced and thorough?  I am trying to build a website with a log in page and registration.  I have the HTML part down well enough but need help writing the php scripts and using SQL to store the user info

    I'm moving this to the main Dreamweaver support forum.
    In answer to your question, you need to be aware that the PHP server behaviors in Dreamweaver CS6 use the original MySQL functions that are scheduled to be removed from a future version of PHP. The server behaviors have already been removed from Dreamweaver CC. If you are planning to create a site using PHP and MySQL, do not rely on Dreamweaver's server behaviors. You must use either MySQLi (MySQL Improved) or PDO (PHP Data Objects) instead.
    If you're looking for video tutorials, you might be interested in the courses I have created for lynda.com. As a beginner, a good place to start would be PHP for Web Designers or Introducing PHP (there are several sample videos that you can watch for free on my website). Both courses were recorded on Dreamweaver (PHP for Web Designers on Dreamweaver CS6, Introducing PHP on Dreamweaver CS5.5). PHP for Web Designers shows how to connect to MySQL with MySQLi. You need a subscription to lynda.com to watch the complete courses, but you can get a seven-day free trial by following the links on my website.
    If you don't want to commit to a subscription service, I have also written a book called PHP Solutions, which covers MySQLi and PDO in depth. It also shows how to build a login system. At the moment, the second edition is available, but a revised third edition is due to go on sale in December.
    There are also a lot of free resources on the web that you can find. The important thing to beware of is that a lot of old material relies on the original MySQL functions. Whichever resource you use, make sure it shows how to use MySQLi or PDO.

  • Possible to use FB4.5 for PHP without Zend Studio?

    I've watched a really helpful tutorial on FB4.5 for PHP by Mihai Corlan and am hoping to use some of his techniques but would like to use a different PHP server because Zend Server costs money and I'd rather avoid polluting my workstation with still more daemon-type services.  I've set up numerous Debian and CentOS servers from scratch and would like to configure FB4.5 for PHP so that I can debug both my Actionscript and PHP.  Has anyone done this?  I could certainly used advice from someone who's gone through all the trouble already. I'd very much like to capitalize on all of the ways that FB4.5 automatically generates code and creates links for you rather than writing all that stuff by hand.

    There may be other ways to do this but I built a flex 3/php web site winter 2008 on a Rackspace based server.  PHP is the standard configuration of the cloud server offerings and I have NO maintenance with the server.  It just runs.  I only program the PHP and client side (Flex for pc and AJAX for Mobile).   At the time I looked at Zend (cost money as noted), BlaseDS, AMFPHP and straight dumb text transfers.  Zend, BlaseDS, AMFPHP are all AMF and at least for me were a little tricky to get configured correctly and maintain during development (I would usually break something and have to debug which is harder for me in AMF).  I quickly decided to just use straight text transfers and create my own protocal with concat and decode on both sides.  You use RPC with POST settings.  It was easy to put in print statements for debugging whatever I was breaking at the time (client commands, comm channel, server command processing, MySQL interaction) and I could always see exactly what was breaking when related to the comm channel. 
    So for me, Zend and BlaseDS are hard to set up and maintain during development.  AMFPHP was easy to set up and sometimes tricky to debug when things went south.  RPC POST text transfers are easy to set up and debug data streams.  If you look at the cookbook section of adobe flex and search for any of the above, you will get an ap note or 2 discussing how to set up and a simple usage example.
    One last point was after I got done with the pc version of my web site, I started to do a browser based mobile solution for a trimmed down version of the web site.  It turns out, since I was implementing in AJAX, I could not figure out how to do AMF type transfers and the text based comm channel easy enabled the client side to change from Flex to AJAX but the server side stayed untouched.  It greatly reduced my development.  The pc version took about 2.5 man years (70+ main views) and the mobile version took on 3 weeks (15 main views)!
    All of the above comments assume you are developing a web site that just uses the server as a data wearhouse.  The solution may be different if you are mostly a streaming based web site (streaming off your own server).
    Good luck on your choices!

  • Microsoft Drivers for PHP 5.6+ for SQL Server

    Hi there! I'm trying to migrate all of the sites running on Joomla 3, PHP 5.6, from mySQL to MSSQL server 2014. I can only find Microsoft SQL driver 3 which supports
    until PHP 5.4 but I'm currently running PHP 5.6. Joomla will NOT even recognize SQL driver PHP 5.4 since I'm running PHP 5.6. Based on my research, it seems as Microsoft DO NOT have SQL driver for PHP 5.6 and don't seem to worry about it. Is there any support
    for SQL Drivers for PHP in the future (PHP 5.6+)? Any suggestions? These current sites we are supporting do get PHP upgrades, as well as Joomla. Any help is greatly appreciated. Thanks.

    Microsoft as a whole don't worry about PHP, PHP is not a product of Microsoft. The support for PHP was just because of over requests of PHP users and developers so Microsoft supported PHP on Windows. 
    Microsoft, might, in future support 5.6 and so on, but these features are not as much supported by Microsoft as MS SQL Server, Windows, ASP.NET are supported and updated frequently.
    So, as you've already found. The bid is that you go, and find a third-party plugin. Or, you can however read the manuals (developer documentation) of SQL Server and try to create a plugin in PHP that would connect to SQL Server. If I had to do this, I would
    have created a new plugin rather than trying to use an old third-party plugin. Microsoft's product are land-locked so you can't say any plugin would fully function with Microsoft's products.
    ~!Firewall!~

  • Dreamweaver and Flash Builder for PHP

    I have created a php database in Dreamweaver, can this database be imported or converted to Flash Builder for PHP?

    MySQL has nothing to do with Dreamweaver or any other development software. It's a DBMS (which stands for DataBase Management System). More simply, it's a way to store data. Other DBMS are PostgreSQL, Oracle, and so on..., as mentionned above.
    To use your existing MySQL database with FlashBuilder for PHP, simply specify where you store your PHP services on your computer when you create your project. Then FB will attempt to connect to MySQL with the help of your PHP code.
    And you'll be able to retrieve your data in the brand new Spark Datagrids !
    Hope it'll help.
    Julien.

  • ANN: New CMS system for PHP available

    WebAssist is proud to announce the release of PowerCMS, an easy-to-use, yet powerful, content management solution for PHP and MySQL. With PowerCMS, you can easily convert your static content into database-driven content--which can quickly be updated online at any time by the website owner.
    PowerCMS includes a professionally-designed administrative site, ready to deploy. The administrative side of PowerCMS dynamically groups content by pages, shows the last 5 actions, and allows quick rollback to a previous version of any entered content.
    PowerCMS works with any web page editing tool including Dreamweaver and lists for $99.99. PowerCMS is now available at a special launch discount of $79.99 until June 5, 2009.
    For more details, visit http://www.webassist.com/solutions/powercms/
    Best - Joe
    Joseph Lowery
    VP of Product Management, WebAssist
    Author, Dreamweaver CS4 Bible

    "David Powers" <[email protected]> wrote in message
    news:eifql3$7b3$[email protected]..
    > The release of PHP 5.2.0 is accompanied by a
    dramatically improved Windows
    > installer that automates most of the installation and
    configuration
    > process. It includes all PHP extensions and works with
    both Apache (1.3,
    > 2.0, and 2.2) and IIS. There's no official documentation
    yet, but I have
    > posted detailed instructions (based on Apache 2.2.3) on
    my website at:
    >
    >
    http://foundationphp.com/tutorials/php_installer.php
    That is great news. Good article. It's about time they
    released an installer
    for the api modules. There are too many people out there
    using the old cgi
    installer on IIS.
    Tom Muck
    co-author Dreamweaver MX 2004: The Complete Reference
    http://www.tom-muck.com/
    Cartweaver Development Team
    http://www.cartweaver.com
    Extending Knowledge Daily
    http://www.communitymx.com/

Maybe you are looking for

  • Urgent help required: Query regarding LC Variables

    Hi All Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC varia

  • Snow Leopard Freezing...lots of troubleshooting...still stuck

    MBP unibody, 3.06 core2 duo. 8 GB ram. 500 Gig 5400 RPM drive. OSX 10.6.2 Symptom: Starting about four weeks ago, my system slowly spins out of control - dock/finder/force quit become some of the first apps to fall. This ends in a freeze - UI respons

  • PLS-00201 when deploying mapping after 9204 upgrade

    We applied the 9204 patch to our owb environment on friday. we are now unable to deploy anything. the error message we are getting is: PLS-00201-identifier 'WB_RT_MAPAUDIT' must be declared anyone have any suggestions?

  • Readonly Access to Solution Manager possible?

    Hello experts, at the moment we are using Solution Manager mainly for managing the system landscape and projects/Business blueprint. My question, which role needs to be assigned if we want to give a user readonly access to projects (RMMAIN)? In RMMAI

  • Export from FCP to Adobe Premiere on PC for client to cut

    I have some sequences that are complete on FCP 6 and had originally been used for DVD production Now the client wants me to export them to some format, written to DVD for transport, and enable him to bring them up on his Windows PC in Adobe Premiere