User Profile

Collapse

Profile Sidebar

Collapse
prabirchoudhury
prabirchoudhury
Last Activity: Aug 3 '12, 10:57 PM
Joined: May 2 '09
Location: Wellington, New Zealand
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • 403 Forbidden Error in Ajax / JSON submit call in Zend Framework

    Hi

    I am using Zend Framework and Ajax/JOSN. Ajax GET method return is working fine but for the PUT/POST update and Add method returning "403 Forbidden Error"
    and access permission. please find the attached screenshot of error page.

    I am using remote shared hosting and in this case "Allow from all" has been checked

    This Ajax/ JSON call I am making
    Code:
    
    
    ...
    See more | Go to post

  • prabirchoudhury
    started a topic MailChimp ASP.Net C# wrapper?

    MailChimp ASP.Net C# wrapper?

    am trying to add "Classic ASP, Basic Serialized XML example" in asp.net C# but it is not working. and making very much complex. It is easy to implement in PHP but difficult to add on asp.net C#.

    this the sample code i am using to add subscription on the list.
    Code:
    // not the real ids 
      
     string apikey = "81aa72cc56e2438egd87601997509760-us1"; 
                string listId = "k264gc0ac1";
    ...
    See more | Go to post

  • get wordpress php file access on wordpress hosting?

    Hello
    i only have domain mapping for the blog site and thats why i got the css editor for my blog site. but i cant see any "Click on “Appearance” then “Editor”." for my blog. could you please advise what i need to do to access editor or see the php files only doing the wordpress hosting.

    how can i get the php file access or get the file panel access on wordpress hosting.


    many thanks...
    See more | Go to post

  • hey Frinny thanks for your reply..
    See more | Go to post

    Leave a comment:


  • how to work with macrons and ms sql 2000/200

    Hello

    1. I cant insert a macron on field 'Māori' it is not making any error but just taking the data without macron.
    2. even a macron on field is present in the table bit the select query not getting any error but no match return but the matches are in the searching field.

    Code:
    INSERT INTO student(student_id,action, table_ref)
    VALUES (100,'c',
    ...
    See more | Go to post

    Leave a comment:


  • hello

    INSERT INTO dbo.access (student_id,act ion, table_ref)
    VALUES (100,'c', 'Māori')

    here i cant insert "Māori" a macron on field into a table the datatype of the field is nvarchar(50)

    any idea please, thanks
    See more | Go to post

    Leave a comment:


  • Hey CK
    thanks for your reply. I am not getting any error but no match return but the matches are in the searching field. testing query is not making any error eather. any idea?

    thanks again
    See more | Go to post

    Leave a comment:


  • how to work with macrons and ms sql 2000/2005

    Hello

    I am working on macrons name fields in MSSQL 2000/2005 database and it is not working for the select where fiels is macron. sql could not understand the search the index for the macron field.

    any one have any idea how to keep( different format) the macron record and search for that records ..
    exam ple code below..

    Code:
    select * from student where first_name like '%Māori%'”
    ...
    See more | Go to post

  • prabirchoudhury
    replied to xml writeRaw in php 5.1.2 problem
    in XML
    thanks ...it may be xml related php question or other way around.. any idea about the problem?
    See more | Go to post

    Leave a comment:


  • prabirchoudhury
    started a topic xml writeRaw in php 5.1.2 problem
    in XML

    xml writeRaw in php 5.1.2 problem

    Hey all

    I am tryng to do convert files details as base64 format and then wrireRaw into the xml file in php 5.1.2 and then covert it back to the original file format, but writeRaw is not supported in this php version. Is any other way to do. I tryed with xml "text" but it is nt working.

    Code:
    function writeb64XML($images, $savePath = 'test.xml', $indentSource = false, $xmlVersion = '1.0') {
    		$this->xml
    ...
    See more | Go to post

  • prabirchoudhury
    replied to Form input name from a variable
    in PHP
    yap ,TheServant right . i am adding few more thing

    1. echo the php variables in right way
    2. space between two var in while condition while ($i < $num)
    3. mysql_result() function is slower than mysql_fetch_row (), mysql_fetch_arr ay(), mysql_fetch_ass oc() and mysql_fetch_obj ect().


    cheers

    :)
    See more | Go to post

    Leave a comment:


  • prabirchoudhury
    replied to Web page form is not sending email
    in PHP
    you are right, you have an logical problem thats why it is not showing any error. coz how is ur argument working if the first if ($email<>NULL) is false then it would not assign "$sentmail" variable and then if ($sentmail) is false so no mail is being sent . both cases it is not going inside the if statement.

    here you go

    1. you are getting all the personal details along with $email from some form...
    See more | Go to post

    Leave a comment:


  • prabirchoudhury
    replied to Web page form is not sending email
    in PHP
    Web page form is not sending email

    hey

    i think you are having problem with first argument with if ($email<>NULL) argument. it is returning false all the time coz it is not a valid argument for checking "NULL" value in php.

    you could try with those bellow
    Code:
    if (isset($email){
     	
     	}
    if (!empty($email){
     	
     	}
    if (!is_null($email){
    ...
    See more | Go to post

    Leave a comment:


  • prabirchoudhury
    replied to professional online tv for my company
    in PHP
    sorry but you are not sounds like professional. what do you mean by online tv? you need to be specific about what is your problem and what you need.

    :)
    See more | Go to post

    Leave a comment:


  • prabirchoudhury
    replied to matching values
    in PHP
    thanks .. we could have more then 1000 student in one institute but not at a time in one class .

    student --> paper --> class(s) --> class_timetable

    year --> semester --> paper --> class.

    teacher --> semester --> paper --> class

    you have to make the relational database model with above tables. every class might have maximum 60 student (still depends). each class...
    See more | Go to post

    Leave a comment:


  • prabirchoudhury
    replied to professional online tv for my company
    in PHP
    hey .. sound exciting

    1. you need to build a streaming video player on flash action script.
    2. need some streamed videos in the server those are going to play.
    3. need to make controller or decide how to make the user control.
    4 need php, database, xml programming to build back end.

    good luck

    :)
    See more | Go to post

    Leave a comment:


  • Sessions are PHP's built in method for handing cookies. Sessions, according to PHP.net, are "a way to preserve certain data across subsequent accesses." Whenever PHP creates a new session, it generates a session ID.

    This session id is then either stored on the user's computer as a cookie or, in some cases, attaches itself to the end of each page's URL as a query string. The actual information stored is not stored on the...
    See more | Go to post

    Leave a comment:


  • ok

    If those are in the different server
    1. then you can allow external web servers to access your MySQL databases by adding their domain name to the list of hosts that are able to access databases on your web site. ypu have to do first Add Access Host (IP address) for both server. A's Ip tp server B and B's IP to server A. you could do this through cpanel access "Remort Mysql"


    2. get the...
    See more | Go to post

    Leave a comment:


  • prabirchoudhury
    replied to matching values
    in PHP
    matching values

    your logic would work fine but i could give you another way to do that. when i saw your attandance table that interface and loogic bit different from what i am thinking, I have added an interface that might help to make sense.

    1. puall all the student roll name with paper detail and date, attendant, paper and semister
    2. check box agenst each student to make the attendance (check if present)....
    See more | Go to post
    Last edited by Dormilich; Sep 16 '09, 05:38 AM. Reason: correcting the messed up HTML

    Leave a comment:


  • Y you are right
    that javascript part he should get the tutorial link i have added. TheServant ,thanks for your mention.

    :))
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...