• Member Avatar for donz365
    donz365

    Replied To a Post in Php Soap Client

    Hi Cereal, Thanks once again for taking the time to help. I can use that array of course ids to loop the GetIndividualCourseDetail request, I just need to get the …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Php Soap Client

    Hi again :) My college have changed their web service, I am trying to apply same technique as above but getting bool(false). It ssuppsoed to be a more flexible service …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Sending Wordpress form emails to office 365

    Thank you so much cereal I will give that a try.
  • Member Avatar for donz365
    donz365

    Replied To a Post in Sending Wordpress form emails to office 365

    Thank Cereal, Can you point me to any tutorials on how I go about setting up this type of test?
  • Member Avatar for donz365
    donz365

    Replied To a Post in Sending Wordpress form emails to office 365

    Hi Cereal. thanks for your reply :) I should of mentioned previously the only way I can get form details to email to the client is by using a SMTP …
  • Member Avatar for donz365
    donz365

    Edited Sending Wordpress form emails to office 365

    Hi, I am having trouble getting my clients website to send the form details to their email. Their email is not handled by their hosting but externally using Office 365. …
  • Member Avatar for donz365
    donz365

    Created Sending Wordpress form emails to office 365

    Hi, I am having trouble getting my clients website to send the form details to their email. Their email is not handled by their hosting but externally using Office 365. …
  • Member Avatar for donz365
    donz365

    Began Watching Sending Wordpress form emails to office 365

    Hi, I am having trouble getting my clients website to send the form details to their email. Their email is not handled by their hosting but externally using Office 365. …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Where do I save a Cron Job file on my site?

    Thanks, I am going to park it for now and get back to it. Think I need to learn a whole lot more before going any further with it.
  • Member Avatar for donz365
    donz365

    Replied To a Post in Where do I save a Cron Job file on my site?

    Would setting the folder and file permission to 711 suffice?
  • Member Avatar for donz365
    donz365

    Replied To a Post in Where do I save a Cron Job file on my site?

    Ive set this to run daily via my host cpanel cron tab. `lynx -dump http://digitalmediasolutions.ie/course-updates/testCronJobLIVE.php` testCronJobLIVE.php contains functions I want to run to update my sites database. It does exactly …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Where do I save a Cron Job file on my site?

    Thanks Cereal, I added the above code and ran the cron job but it returned the Error: 403 Forbidden message rather than running it?
  • Member Avatar for donz365
    donz365

    Created Where do I save a Cron Job file on my site?

    Hi, I have created cron job that runs a php file once a day. Its working exactly as I want it I am just enquiring where I should save it …
  • Member Avatar for donz365
    donz365

    Began Watching Where do I save a Cron Job file on my site?

    Hi, I have created cron job that runs a php file once a day. Its working exactly as I want it I am just enquiring where I should save it …
  • Member Avatar for donz365
    donz365

    Marked Solved Status for Soap Query Parameter Head Ache ;(

    Hi, I am working on a wbsite for a training centre. I am querying a web service for the list of their courses. There are three parametres in the query: …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Soap Query Parameter Head Ache ;(

    Thanks Cereal for helping with this. The problem was my client was sending back extra charaters which were causing errors. These articles explain it in detail... [qa-byte-order-mark](http://www.w3.org/International/questions/qa-byte-order-mark.en.php) [detecting-utf-bom-byte-order-mark](https://web.archive.org/web/20100430055100/http://www.dotvoid.com/2010/04/detecting-utf-bom-byte-order-mark/) I was …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Soap Query Parameter Head Ache ;(

    Thanks Cereal, pm just sent :)
  • Member Avatar for donz365
    donz365

    Created Soap Query Parameter Head Ache ;(

    Hi, I am working on a wbsite for a training centre. I am querying a web service for the list of their courses. There are three parametres in the query: …
  • Member Avatar for donz365
    donz365

    Began Watching Soap Query Parameter Head Ache ;(

    Hi, I am working on a wbsite for a training centre. I am querying a web service for the list of their courses. There are three parametres in the query: …
  • Member Avatar for donz365
    donz365

    Marked Solved Status for Uploading XML to MySQL with different columns names

    I am sorta new to MySQL and not 100% sure of what I can and can not do with it yet. I have an xml file with course information such …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Uploading XML to MySQL with different columns names

    Slight tweak and its working... thanks Diafol :/ LOAD XML LOCAL INFILE 'C:/courses.xml' INTO TABLE wp_posts ROWS IDENTIFIED BY '<Course>' (@ReferenceNo, @ProviderCode, @ProviderName, @CourseID, @CourseName, @LocationCode, @LocationName, @StartDate, @FinishDate) SET …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Uploading XML to MySQL with different columns names

    The last thing I am trying to do is "Waste everybodies time", my sincere apologies if this is how I have come across. If anything I am overly-conscious of the …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Uploading XML to MySQL with different columns names

    Hi Diafol, Thanks for your reply. I have applied the SET clause like so: LOAD XML LOCAL INFILE 'C:/courses.xml' INTO TABLE wp_posts ROWS IDENTIFIED BY '<Course>' SET ID = ReferenceNo, …
  • Member Avatar for donz365
    donz365

    Created Uploading XML to MySQL with different columns names

    I am sorta new to MySQL and not 100% sure of what I can and can not do with it yet. I have an xml file with course information such …
  • Member Avatar for donz365
    donz365

    Began Watching Uploading XML to MySQL with different columns names

    I am sorta new to MySQL and not 100% sure of what I can and can not do with it yet. I have an xml file with course information such …
  • Member Avatar for donz365
    donz365

    Replied To a Post in LOAD XML LOCAL INFILE

    Hi Dave, I am relatively new to MySQL, so lesson learnt!
  • Member Avatar for donz365
    donz365

    Edited LOAD XML LOCAL INFILE

    Hi, I am working on a test site locally. I am loading an xml file into my database with teh following sql query: LOAD XML LOCAL INFILE 'C:/courseInfo18.xml' INTO TABLE …
  • Member Avatar for donz365
    donz365

    Created LOAD XML LOCAL INFILE

    Hi, I am working on a test site locally. I am loading an xml file into my database with teh following sql query: LOAD XML LOCAL INFILE 'C:/courseInfo18.xml' INTO TABLE …
  • Member Avatar for donz365
    donz365

    Began Watching LOAD XML LOCAL INFILE

    Hi, I am working on a test site locally. I am loading an xml file into my database with teh following sql query: LOAD XML LOCAL INFILE 'C:/courseInfo18.xml' INTO TABLE …
  • Member Avatar for donz365
    donz365

    Marked Solved Status for Php Soap Client

    Hi, I am gone crosseyed from trying to figure this out. I dont ususally post on this site I am half scared of getting told off for being out of …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Php Soap Client

    Cereal, you have made my life so much easier thank you so much :)
  • Member Avatar for donz365
    donz365

    Replied To a Post in Php Soap Client

    Thank you so much Cereal, that had my head spinning for the last week. I was just about to throw in the towel. I am used to creating and working …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Php Soap Client

    Can anyone tell me why I am getting Null for this: <?php $wsdl = "https://namedeleted/courseinfo/courseinfo.asmx?WSDL"; $client = new SoapClient($wsdl); $ref = 64566; $parameters= array("reference"=>$ref); $values = $client->getCourseDetail($parameters); $xml = simplexml_load_string($values->getCourseDetailResult); …
  • Member Avatar for donz365
    donz365

    Began Watching Payment Methods

    We use Differnet Payment methods Like: Paypal, perfect money, Skrill, Webmoney, EBS. Suggest us some more Payment Modes where clients should feel More comfirtable with...
  • Member Avatar for donz365
    donz365

    Replied To a Post in Payment Methods

    [Stripe](https://stripe.com/ie)
  • Member Avatar for donz365
    donz365

    Began Watching removed white space in logo image

    hya im wanting to remove the white spage in the pic included so you can see the pattern in the background ive tried putting the following opacity: 0.4; filter: alpha(opacity=40); …
  • Member Avatar for donz365
    donz365

    Replied To a Post in removed white space in logo image

    uum theres an idea for an App :) If the white is part of the image you will have to edit it in Photoshop by selecting and deleting the background …
  • Member Avatar for donz365
    donz365

    Began Watching Can you suggest me what should I follow to learn?

    Hello all, I am thinking where to start. Basically I want to learn about HTML. But I don’t have basic HTML knowledge. Where should I start? Though I am following …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Can you suggest me what should I follow to learn?

    Great your taking the leap, the internet can have its pros and cons when it comes to learing online. You want to make sure the stuff is relevant and up …
  • Member Avatar for donz365
    donz365

    Began Watching Div within a div

    I want to have a box within a box within a box; a border within a border within a border using divs. If you can see what I'm doing wrong …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Div within a div

    Hi, At the moment they are stacked on top of each other rather then "within" Is this what you are looking for <div class="box"> <div class="TopContainer"> <div class="Container1"> <div class="Container2"> …
  • Member Avatar for donz365
    donz365

    Began Watching Line up "Back" text with heading

    What would be the best way of lining up the **Back** text with the **Booking** heading? **HTML** <nav class="navbar navbar-default navbar-fixed-top"> <div class="container"> <div class="navbar-brand">Booking</div> <div>Back</div> </div> </nav> **CSS** .navbar …
  • Member Avatar for donz365
    donz365

    Replied To a Post in Line up "Back" text with heading

    Hi, Would using lists be an option for you... add this to css `.container li{display: inline; padding: 10px;}` <body> <nav class="navbar navbar-default navbar-fixed-top"> <div class="container"> <div class= ".navbar-brand"> <li>Booking</li> <li>Back</li> …
  • Member Avatar for donz365
    donz365

    Began Watching How can I use symbols like alpha & beta in html heading

    I am working on a website and i want to use symbols like alpha and beta in headings...
  • Member Avatar for donz365
    donz365

    Replied To a Post in How can I use symbols like alpha & beta in html heading

    Hi, `<h1>A header with Alpha &alpha; and Beta &beta; Symbol</h1>` A header with Alpha α and Beta β Symbol You can use this site for [reference](http://www.ascii-code.com/html-symbol.php)
  • Member Avatar for donz365
    donz365

    Began Watching simple project ideas on SOAP

    I have been told to do a novice-level project on webservices. I surfed for a while to reach something called Microsoft SOAP development kit. I think it will be really …
  • Member Avatar for donz365
    donz365

    Replied To a Post in simple project ideas on SOAP

    Hi, I have been trying to research something similar (i think), I found this [tut](http://devzone.zend.com/2202/php-and-soap-first-steps/) very good to help me understand SOAP better. Donna :)
  • Member Avatar for donz365
    donz365

    Replied To a Post in Php Soap Client

    Oh sorry, Im in Ireland (9.30am!). That'd be great no rush at all :)
  • Member Avatar for donz365
    donz365

    Replied To a Post in Php Soap Client

    Thanks hericles and pixelsoul, that was a huge help. I applied the same to my Courses case and did a var_dump, var_dump($xml)i get bool(false) var_dump($values) i get.... object(stdClass)#1 (1) { …
  • Member Avatar for donz365
    donz365

    Created Php Soap Client

    Hi, I am gone crosseyed from trying to figure this out. I dont ususally post on this site I am half scared of getting told off for being out of …

The End.