PHP GD   FINALLY IT WORKS!

After spending 5-6 days and nights trying to get PHP GD to load /install and run under 10.5, I found this link. I followed his instructions and now it works...
http://www.interaktion.info/category/articles/page/2/
Now I just need to get PHP Mcrypt to do the same.

I tried those compile instructions... didn't work

Similar Messages

  • How to execute Update Module FM after final commit work for a T-code.

    Hello Folks,
    I have a bit complex issue with my current object.
    We have modified MM41/MM42 transactions and added a subscreen to fulfill the requirement.
    We have designed the subscreen and embedded the same to MM41/MM42 through SPRO configuration.
    Now for update business logic,i am trying to execute one Function module(Update Module) in update Task...so that it will be executed once after the final commit work will be done for MM41/MM42.
    But its not executing.
    To fulfill my requirement i need to execute the FM only after Final Commit work for MM41/MM42.
    Please suggest in this regard.
    Even i can see few BADI's which are triggering through MM01/MM02 but not through MM41/MM42.
    BADI_ARTICLE_REF_RT
    BADI_MATERIAL_CHECK
    BADI_MAT_F_SPEC_SEL
    Code with which i am trying is given below.
    After PAI event of the subscreen---
    1:        MODULE USER_COMMAND_9001.
    2:       MODULE user_command_9001 INPUT.
                        PERFORM sub_save_mara ON COMMIT.
              ENDMODULE.
    3:       FORM sub_save_mara.
                         CALL FUNCTION 'ZMMUPDATE_MARA_APPEND_STRUCT' "IN UPDATE TASK
                                        EXPORTING
                                                 materialno = gv_matnr
                                                 appendmara = ty_zzmara.
             ENDFORM.                    "sub_save_mara
    4:                FUNCTION zmmupdate_mara_append_struct.
                      ""Update Function Module:
                       ""Local Interface:
                      *"  IMPORTING
                   *"     VALUE(MATERIALNO) TYPE  MATNR
                   *"     VALUE(APPENDMARA) TYPE  ZZMARA
    Data Declaration for Local use
      DATA : w_mara TYPE mara.
    Selecting the latest values for the material.
      SELECT SINGLE * FROM mara INTO w_mara WHERE matnr = materialno.
      IF sy-subrc = 0.
      Move the ZZMARA values to structure MARA
        MOVE-CORRESPONDING appendmara TO w_mara.
      Update the values in table MARA.
        MODIFY mara FROM w_mara.
      ENDIF.
    ENDFUNCTION.
    Kindly suggest.Thanks in advance.
    Regards
    Ansumesh

    Hi..
    The code given by me will work fine provided the Final commit should happen.
    Because to execute FM with update task,final commit work should happen which is mandatory and after that it will call the update task.
    In my case final commit work was not happeneing because..SAP standard program was not able to detect wether there is any change in my sub-screen or not as the standard program & my custom program,subscreens are different.
    As it was not able to detect the change,so final commit was not happening and hence update task also.
    To provide the reference of change in my subscreen to standard program ,i set a flag as per the change in the subscreen
    And exported the same to memory.
    Then Implemented one enhacement spot in MATERIAL_CHANGE_CHECK_RETAIL Fm where i have Imported the flag value.
    Based on my custom flag value,i have set one standard flag FLG_AENDERUNG_GES which tells SAP standard program for MM42 wether any change has happened or not.
    The above solved my purpose.
    Regards
    Ansumesh

  • PHP and SSIs not working in Lion

    So I had PHP and HTML SSIs working fine under SL, but now they don't seem to be working since upgrading to Lion.  I have checked the httpd.conf file and all the correct lines are still uncommented and 'Includes' is still listed as an Option Directive in both the httpd.conf file and <USER>.conf file.  Has anybody else had this problem since upgrading to Lion and how can I fix it?

    Mine is similar for something different. After uncommenting php in httpd.conf file the server refuses to boot. When I typed php -v at the command line I got this:
    dyld: Library not loaded: @loader_path/../lib/libssl.dylib
      Referenced from: /usr/lib/libpq.5.dylib
      Reason: Incompatible library version: libpq.5.dylib requires version 1.0.0 or later, but libssl.0.9.8.dylib provides version 0.9.8
    That's been frustratingly hard to fix so far (at least for me). I was just getting started helping a friend with his Joomla site and promised to duplicate the difficulty and debug it on my Mac Air. But, I installed Mountain Lion, and then more recently the latest upgrade, and everything went south as they say. I need to see what answer you get. It may apply to my problem as well.

  • Need PHP send button that works

    I have a Flash website with a web form that I cannot get the
    submit button to work. I was able to create a button for reset to
    work, which I will post that action after the one for my form. I
    have an instance of web form (which I placed onto my contacts page)
    created with onsetfocus code and this is the parent form t1_2 and
    this is the code I have assigned to this form.
    t2.onSetFocus = function() {
    if (t2_2 == "your name") {
    t2_2 = "";
    t3.onSetFocus = function() {
    if (t3_2 == "e-mail") {
    t3_2 = "";
    t4.onSetFocus = function() {
    if (t4_2 == "phone") {
    t4_2 = "";
    t5.onSetFocus = function() {
    if (t5_2 == "comments") {
    t5_2 = "";
    HERE IS MY RESET BUTTON CODE THAT WORKS (please help me
    script a PHP submit button that works based on what I have listed.
    Sample of the website can be obtained here
    on(release) {
    //_parent.t1_2="";
    _parent.t2_2="your name";
    _parent.t3_2="e-mail";
    _parent.t4_2="phone";
    _parent.t5_2="comments";
    VIEW SITE
    HERE

    I am new to Flash and I am working on similar website but I
    have a cfc that returns all the main categories from sql server. Is
    there a way that I can dynamically create buttons with the
    categories returned? And when the button is clicked the
    subcategories need to be displayed as labels. Is this possible? Did
    anyone develop something like this before? Is there any sample code
    that I can refer?

  • PHP scripts are not working after deploying it on website

    Hi,
    I have recently deployed my flex application on a web hosting (000webhost.com) and now my application is getting launched properly. Visit (www.kpratik.webatu.com).
    I have used PHP script to interact with database MySQL. Locally everything was working fine but when I have deployed it to internet my PHP scripts are not working and any database opeartion is not getting performed. I have already chaned to host, username password in the PHP file as given my service provider.
    Please let me know if you have any input on this.
    Reponse will be highly appreciated.
    Regards,
    Pratik

    Hello,
    Ok let me explain you where exactly it is going wrong.
    I am constructing SQL query in my ActionScript code and I am passing this query to my PHP script using HTTPService. Now when I am hardcoing the query in PHP script i found it is working perfectly which means my query is not getting passed to PHP script.
    Please let me know what could be the reason.
    I am using POST method for HTTPService.
    Thanks,
    Pratik

  • Keep getting "device not certified warning, Iphone won't show in Itunes. I had to keep digging out all my old cables and finally one worked. I've heard this is related to IOS .7.1.1. All my cables were Apple OEM.

    This was maddening. Every cable I tried gave me a "not certified" warning and my Iphone wouldn't charge, show on my MB Air or show up in ITunes. I kept digging out cables and finally one worked. As long as I use that one, I have no problems, but I tried 4-5 others with no luck. Kept getting same message. All cables were Apple OEM, btw (except one). I was trying to activate a new Iphone and couldn't because it wouldn't show in Itunes on "Device" list, just wasn't there. One cable finally seemed to solve the problem, but none else would work at all. I tried switching to other USB ports, but that was no help either. I have to think this is a glitch in 10.7.1 which I understand is set up to detect aftermarket devices such as chargers and cables. It was a real pain.

    All I had to do was complain.  I synced my iPhone to the Windows machine, checked the other account at iTunes prompting (where no apps had shown up previously), reconnected the iPad, and 140 apps downloaded including the App Store.  I have no idea why.

  • I have an old iPhone 4 that finally stopped working.  I have an unlimited data plan and want to keep it.  When I called customer service, I was told like in the past that if you purchase the new phone at full price, you can keep your old plan.  However, a

    I have an old iPhone 4 that finally stopped working.  I have an unlimited data plan and want to keep it.  When I called customer service, I was told like in the past that if you purchase the new phone at full price, you can keep your old plan.  However, after some time on the phone i was told by the csr and supervisor that their system is not allowing them to complete the transaction without changing to a limited data plan.  I was told to try going to a store and buy the phone.  Same thing happened.  Has Verizon changed something and not told their employees?

    Seems like people having this problem are those coming from a phone that doesn't have a nano SIM card...so when Verizon issues them one they end up changing their plan. No clue why this keeps happening but stay on top of them. As long as you initiated the request for your plan to be reinstated within the 14 day time frame they should put it back. Interested in seeing how this plays out. There is still one phone in my house that hasn't been upgraded (an iPhone 4). I'm hoping when we do upgrade it at full retail they won't mess with her unlimited data plan

  • Does final method works like a inline function???

    Hi,
    in c and c++ we have macro and inline functions.
    In java u can not override final methods but My query is
    Does in java final methods wroks like inline methods ?
    Inline means the method call is replaced by method body at compile time so logically it improves the performance.
    I would like to know if final method works like an inkine method up to what extend it really improves the performance.
    Thanks in advance

    It depends.
    In Java it's mostly the VM (the JIT compiler, to be more exact) that handles the optimization. It may or may not inline methods, depending on which gives better performance.

  • Will Final Cut work with 13 1TB drives daisy chained togerher

    Will Final Cut work with 13 (1TB) Firewire 800 drives daisy chained (78 feet) together? Has any one done this? If so were there any problems?

    Thanks for your advice guys.
    I did run into problems, had to start computer with only my pre-existing SATA and FireWire 800 drives (connected to the back of my Mac), then I made sure the 14 FireWire 800 drives were turned off, attached the FireWire 800 cable to the front of my Mac, turned on the drives from closest to furthest in the drive chain (6'cables between each drive) and all of the drives came up on the desktop.
    When I opened the FCP project that had media associated with the 14 drives I got the spinning wheel of death. After rebooting and restarting the gang of 14 I thought I would try to open one of the drives on the desktop, again the spinning wheel of death. Will move to plan B - 9" cables, plan C is installing the drives into two drive towers.

  • PHP mail() function not working

    Hello, I am having a problem sending mail with php while hosting my own website with apache on my mac. First of all I would like to note that I do not have a large background with web hosting and php. Everything that I did so far was just suggestions from online articles and other forums, so please include detail with any answers.
    I have apache started, and my website hosted just fine. I can also view php pages so I know php is running too. My problem is using the php mail() function.
    I have a simple form in my site who's action attribute is set to results.php. In the results.php file I have the mail() function (along with html code displaying "thank you...blah blah blah") sending info from the form to my email address. I never get an error on the php side, but my mail never gets sent.
    Is there some type of setting in a config file that need to be turned on or changed?
    Here is what I have done/modified so far from my research from online articles. i dont know what some of them mean, but followed the steps correctly:
    Edited the /etc/hostconfig file and added the line MAILSERVER=-YES-
    Edited the /etc/postfix/main.cf file and uncommented the #myhostname = ...line and made it "myhostname = localhost" (without quotes)
    Edited the php.ini file to the following - The line under where it says
    ; For unix only. You may supply arguments as well (default: "sendmail -t -i")
    Sendmail_path = usr/sbin/sendmail -t -i
    I opened the mail.log file and here are some entries from the other day:
    Code:
    Jul 9 08:16:50 new-host postfix/master[689]: daemon started -- version 2.4.3, configuration /etc/postfix
    Jul 9 08:16:50 new-host postfix/qmgr[691]: 4B4DC2E8331: from=<[email protected]>, size=323, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/qmgr[691]: 7A8242EE3C0: from=<[email protected]>, size=280, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/qmgr[691]: B1C052EE3C4: from=<[email protected]>, size=280, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/qmgr[691]: C281C2EE3C5: from=<[email protected]>, size=327, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/smtp[694]: 4B4DC2E8331: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=213262, delays=213261/0.05/0.86/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:16:51 new-host postfix/pickup[690]: 0F5D22EE4DB: uid=70 from=<_www>
    Jul 9 08:16:51 new-host postfix/cleanup[692]: 0F5D22EE4DB: message-id=<20100709121651.0F5D22EE4DB@localhost>
    Jul 9 08:16:51 new-host postfix/qmgr[691]: 0F5D22EE4DB: from=<[email protected]>, size=333, nrcpt=1 (queue active)
    Jul 9 08:16:51 new-host postfix/smtp[695]: 7A8242EE3C0: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=27074, delays=27073/0.02/1.1/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:16:51 new-host postfix/smtp[697]: C281C2EE3C5: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=26817, delays=26816/0.02/1.1/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:16:51 new-host postfix/smtp[696]: B1C052EE3C4: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=27174, delays=27173/0.01/1.1/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:17:23 new-host postfix/smtp[694]: connect to mx1.comcast.net[76.96.62.116]: Operation timed out (port 25)
    Jul 9 08:17:50 new-host postfix/master[689]: master exit time has arrived
    Any other suggestions on how to get this to work? I have also created a simple php file that sends mail without retreiving info from a form and also tried using several different email addresses to send to and from, but still nothing

    Edited the /etc/postfix/main.cf file and uncommented the #myhostname = ...line and made it "myhostname = localhost" (without quotes) Change that to mail.yourispname.com Then run sudo postfix reload and see if it sends mail. The reason being, is that you don't have a fully qualified domain name.
    And make that reflective in your mail() function file/template.
    Message was edited by: doug pennington

  • Php code is not working as intended in a simple spam block solution

    Hi. I'm trying to get some simple php code (as suggested on a tutorial page I found) to work on my form submission test page in order to reduce/stop spam. However, the results so far have not quite been what I expected. Any help will be appreciated.
    Basically I used the code given in the two grey boxes on this tutorial page http://myphpform.com/form-spam.php (but had to add this <?php ... ?> around the code given in the second box, otherwise it wouldn't have worked!) for my test page, and the result was supposed to look something like shown on this page http://myphpform.com/contact.php and indeed when I previewed my page in offline mode it displayed as intended with the extra field similar to the "Access code:" as on this example page, however that's not what I got when I uploaded my page.
    What happens when I go to the live page is that as soon as it loads it gives me the message: "Wrong access code" before I even have a chance to look at the form there. It's the message the user is supposed to get when they input the suggested code incorrectly, but not when the page first loads! This is what the live test page basically looks like when I go to it http://www.scotiauk.com/contact/forms/smotsContactTest.php. I wonder what's going wrong?
    I actually noticed a short while ago, after 'viewing page source' (source code) on the live test page that the page is for some reason only displaying less than half of the html code and cuts off the rest of it (including all of the <body>) just at the point (at the end of the <head> section) where the couple of lines of php script (borrowed from the second grey box in the tutorial) were meant to be - the script that includes "Wrong access code". So I get why it shows a blank page with only that message in it but not why it removes all of the <body> code once it is live!
    Just for information, this is what the page is really meant to look like - minus the php code: http://www.scotiauk.com/contact/forms/smotsContact.html. That is the original page that I copied and tried to modify with the new code. So, any ideas will be appreciated, thanks!

    Just for information, this is what the page is really meant to look like - minus the php code: http://www.scotiauk.com/contact/forms/smotsContact.html. That is the original page that I copied and tried to modify with the new code. So, any ideas will be appreciated, thanks!
    The page that you have quoted contains an infection as the following warns.
    As far as your problem is concerned, you need to know how a from works. Have a look at this video.

  • In a particular case the PHP session_start doesn't work

    If I type an URL e.g. www.vdh-lelystad.nl the PHP session_start() does work very well. All the SESSION variables are available trhoughout the website visit.<br />
    If I type URL vdh-lelystad.nl (without www.) no PHP session_start() will be there. No SESSION variables are available.
    (In Chrome or IE if you type a URL without www. they put it automatically in front of the URL).<br />
    Please can you tell me what to do about it so that if people type the URL without www. ther won't be any problem. First it cost me a lot to find out what happened, and second it already took me a lot of time to try something, so I could put it in front of the URL myself (e.g. $URL = $_SERVER['SERVER_NAME'];<br />
    $URL = explode('.', $_SERVER['SERVER_NAME']);<br />
    <br />
    <pre><nowiki>
    if(strtolower($URL[0]) <> 'www')
    $_SERVER['HTTP_HOST'] = "www.vdh-lelystad.nl";
    header("Location: " . $_SERVER['HTTP_HOST']);
    exit;
    }</nowiki></pre>
    But that doesnot work cause the second time the URL will be:<br />
    vdh-lelystad.nlwww.vdh-lelystad.nl.<br />
    You make me happy if you know a way to solve this problem.<br />
    Many thanks in advance.
    Best regards<br />
    Marc Molthoff'

    Hello jscher2000,
    Thanks a lot. I work great.
    best regards
    Marc

  • How to get PHP mail() function to WORK?

    The topic title speaks for itself. I only want the exact following code to actually send an e-mail, just as it does on any external server:
    <?php
    mail(<i>an e-mail address</i>, <i>a subject</i>, <i>some text</i>);
    ?>
    Is it possible?
    I have the sendmail_path set to /usr/sbin/sendmail -t -i in php.ini, and MAILSERVER=-YES- in hostconfig.
    I would like to avoid using sendmail's -f option if possible (this does not work for all e-mail addresses anyway).
    Mac mini Core Duo   Mac OS X (10.4.7)  

    Hi Neithan,
       If, as your profile indicates, you are using Tiger, you are using postfix when you use the "sendmail" command. Sendmail is no longer installed but postfix comes with an "emulator" to keep legacy stuff from breaking. It's still a good command line method for sending mail.
       I'm not sure if setting MAILSERVER=-YES- causes postfix to listen on the smtp port or just for local connections. However, I thought that local connections were sufficient to send mail. Try it and if it doesn't work use Postfix Enabler. Just remember that changing the hostconfig file doesn't take effect until the next reboot. (or run of SystemStarter)
       Also remember that most ISPs don't accept mail from unrecognized machines anymore.
    Gary
    ~~~~
       Money isn't everything -- but it's a long way ahead of
       what comes next.
             -- Sir Edmond Stockdale

  • Azure PHP SDK createBlobService() not working - fails at $httpClient = $this- httpClient() in ServicesBuilder.php

    We are writing a PHP application to run in Azure but the Azure SDK does not seem to work when trying to use Azure Storage.  Here is the relevant code snippet:
    $connectionString = "DefaultEndpointsProtocol=http;AccountName=<accountname>;AccountKey=<accountkey>";echo $connectionString;$blobRestProxy = ServicesBuilder::getInstance()->createBlobService($connectionString);
    We are of course doing this at the top of the php file that has the above snippet in it:
    require_once 'WindowsAzure\WindowsAzure.php';use WindowsAzure\Common\ServicesBuilder;
    Everything after calling 'createBlobService' fails.  We dug into it a bit more and found out that the $httpClient = $this->httpClient(); call in the below snippet just kills everything (the call exists in WindowsAzure\Common\ServicesBuilder.php).  If
    we comment out the $httpClient line and everything below in createQueueService(), the rest of the code in the page will be run (we have some echos and stuff so we know it ran the rest of the page):
    public function createQueueService($connectionString)
    $settings = StorageServiceSettings::createFromConnectionString(
    $connectionString
    $httpClient = $this->httpClient();
    $serializer = $this->serializer();
    $uri = Utilities::tryAddUrlScheme(
    $settings->getQueueEndpointUri()
    PS.  We also found a StackOverflow question asking this exact thing but there's no answer to it:
    http://stackoverflow.com/questions/13930880/connect-to-azure-blob-through-azure-website-with-php
    We are at a loss and could really use a bit of help here.
    Thanks
    ArcDatum

    Hi ArcDatum,
    I understand that you are writing a PHP application for creating a blob service createBlobService() and it doesn't work.
    Firstly, Do you receive any error Messages ?
    Please check this if you are receving any error codes :
    Blob Service Error Codes
    Recommend you to follow the steps from this
    document
    also check 3rd party doc if this of any help
    Please feel free to write back to us incase of any queries .
    Regards,
    Shirisha Paderu.
    Disclaimer :  This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software
    or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet,
    and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

  • Does "public final MainClass  " work or not?

    As i declare my main class which has main method as public final Mainclass,what happen???

    Chicon wrote:
    Hi makpandian,
    Nothing special. You simply make MainClass immutable. That means you can't build another class that extends MainClass.
    Its main method will work.Please note that "immutable" means you can't change its internal state and has nothing to do with whether a class is final or not.

Maybe you are looking for