Jump to content

csckid

Members
  • Posts

    68
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

csckid's Achievements

Member

Member (2/5)

0

Reputation

  1. csckid

    wsdl

    phpinfo() didn't show any soap module. I guess this is not enabled. The site will not allow me to edit php.ini file. instead of relying on SoapClient can I use nusoap.php? Will it work even if soap module is not installed in webhost.com
  2. csckid

    wsdl

    do you mean I need to have php_soap.dll in php/ext folder? I'm totally new to this. or do I need soap.php file? I tried from another free php hosting site. It returned the same fatal error.
  3. csckid

    wsdl

    I was accessing a wsdl file, using php, using normal php SoapClient code. $soap=new SoapClient(WSDL_FILE_LOCATION); The code ran properly in localhost. But, when I uploaded the files in my free server 000webhost.com. I get the following error Fatal error: Class 'SoapClient' not found in /home/****/public_html/myfile.php on line 12 The error points to SoapClient(WSDL_FILE_LOCATION); line I couldn't understand the problem. Can someone please help me out? Thanks in advance
  4. I got this code for drag and drop and object. I'm not familiar with this sort of syntax like start: function(e).. I tried to edit the code with function start(e){} this gives me error. I need to use substring method on name obj, I cant use it. Could anyone please tell me is it really javascript? Please let me know how I would apply substring on name variable. var Drag = { obj : null, name: null, init : function(o, name, oRoot, minX, maxX, minY, maxY, bSwapHorzRef, bSwapVertRef, fXMapper, fYMapper) { this.name=name; o.onmousedown = Drag.start; o.hmode = bSwapHorzRef ? false : true ; o.vmode = bSwapVertRef ? false : true ; o.root = oRoot && oRoot != null ? oRoot : o ; if (o.hmode && isNaN(parseInt(o.root.style.left ))) o.root.style.left = "0px"; if (o.vmode && isNaN(parseInt(o.root.style.top ))) o.root.style.top = "0px"; if (!o.hmode && isNaN(parseInt(o.root.style.right ))) o.root.style.right = "0px"; if (!o.vmode && isNaN(parseInt(o.root.style.bottom))) o.root.style.bottom = "0px"; o.minX = typeof minX != 'undefined' ? minX : null; o.minY = typeof minY != 'undefined' ? minY : null; o.maxX = typeof maxX != 'undefined' ? maxX : null; o.maxY = typeof maxY != 'undefined' ? maxY : null; o.xMapper = fXMapper ? fXMapper : null; o.yMapper = fYMapper ? fYMapper : null; o.root.onDragStart = new Function(); o.root.onDragEnd = new Function(); o.root.onDrag = new Function(); }, start : function(e) { var o = Drag.obj = this; e = Drag.fixE(e); var y = parseInt(o.vmode ? o.root.style.top : o.root.style.bottom); var x = parseInt(o.hmode ? o.root.style.left : o.root.style.right ); o.root.onDragStart(x, y); o.lastMouseX = e.clientX; o.lastMouseY = e.clientY; if (o.hmode) { if (o.minX != null) o.minMouseX = e.clientX - x + o.minX; if (o.maxX != null) o.maxMouseX = o.minMouseX + o.maxX - o.minX; } else { if (o.minX != null) o.maxMouseX = -o.minX + e.clientX + x; if (o.maxX != null) o.minMouseX = -o.maxX + e.clientX + x; } if (o.vmode) { if (o.minY != null) o.minMouseY = e.clientY - y + o.minY; if (o.maxY != null) o.maxMouseY = o.minMouseY + o.maxY - o.minY; } else { if (o.minY != null) o.maxMouseY = -o.minY + e.clientY + y; if (o.maxY != null) o.minMouseY = -o.maxY + e.clientY + y; } document.onmousemove = Drag.drag; document.onmouseup = Drag.end; return false; },
  5. csckid

    Security

    Prevent the most common hacking.
  6. I really have less idea about website security. Yesterday for the first time I learned website hacking and applied that method to my web page. My webpage was completely down after applying that. Q) To free a site from hacking what techniques are followed?
  7. csckid

    designer

    I'm using adobe dreamweaver. I use this editor to write ctp file. The code in ctp file are not colored, whereas php, html files code are colored. How to make the code in ctp file colored?
  8. Which CMS do you is better to study? Does the CMS and Zend have free template?
  9. csckid

    designer

    I could have hire a designer if I owned a company. Since I don't have a company, I know I got to do the work myself. That's why I was asking for web designing application.
  10. csckid

    designer

    I'm really weak in website designing specially drawing buttons, templates so on. Which is the best software for website development, which includes bunch of library for menubar, template, buttons etc.?
  11. PHP is a serverside language that is mostly used to develope websites. It powers in part or in whole, many of the biggest and best known websites in the world. Higher salary than what? CakePHP is used by many websites. Learning it certainly wouldn't hurt, but if you were asking for my recommendation of what to learn first, I'd suggest learning Zend Framework over CakePHP at this point. I should have consulted with you first before learning cake. I guess cake and zend are quite similar. I wanted to know, what does PHP application like joomla do. Which is better to know if I have to study only one joomla or zend?
  12. What can we do with PHP application? Which one has higher salary job? I'm learning CakePhp now. Does this type of applications framework is worth learning?
  13. csckid

    GET

    I'm passing variable through GET method. What can be the maximum length of the variable? http://localhost/my.php?variable1='abc'&variable2='cdf' Q) What can the total length of URL? Q) what can the total length of variable? for example length of abc and cdf in this case.
  14. csckid

    cakephp

    Is there any free cake php project with source code? I created two model "dvd" and "customer" I call my default.ctp by typing http://localhost/cakephp/dvds/ default.ctp has link to dvd and customer model. I can view all the page of dvd but not customer. What should I do in order to fix this problem?
  15. csckid

    byte

    I should be able to convert string into any file. like mp3
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.