Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dendic

    variable undefined

    The Variable I'd is the value of the query containing the key for a consignee. I want to grab that value and then lookup that consignee for more information. With that info to go to a json array. With that array I will parse and place into text boxes for display.
  2. dendic

    variable undefined

    I have script: $("#consigneeBtn").on('click', function() { var id = document.getElementById('consignee').value; }) Markup: <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> <a href="{{URL::to('consignees/', id)}}"> <button type="button" class="btn...
  3. dendic

    php and javascript and html

    I have a dropdown box created in php within html the value of the dropdown box is concatenated example: <?php echo $consignees['consigneename']; ?> <?php echo "-"; ?> <?php echo $consignees['city']; ?><?php...
  4. dendic

    jquery and ajax

    Made the change same problem. Tried appendTo like you used here: $('<li/>').text(i + ":" + e).appendTo(ul); But still getting the error. Thanks again for your help.
  5. dendic

    jquery and ajax

    Thank you for correcting my code. I was just following an example from phpacademy because I'm still a new-bee. But I'm getting an error here: $('#customer-profile').html(ul); unexpected identifier. I see you're setting a variable to the ul and I have several within my document so I tried...
  6. dendic

    jquery and ajax

    I have this problem and at wits end can't work out the issue alone please help. JavaScript: ( external but tried it in the main html as well) $('#customer-select').on('change',function() { var self =$(this); $.ajax({ url...
  7. dendic

    Data attributes html code

    here is what I have but can't seem to get to work. $(function() { $('#btnLaunch').click(function() { var myBookId = $(this).data('id' $('#myText').val()); $('#myModal.appttext').data('myBookId').dialog('open'); }); myText is the input box on my parent. appttext is...
  8. dendic

    Data attributes html code

    I have this html code: <a data-id="test" title ="Add this item" class="open-AddBookDialog btn btn-primary" href="#addBookDialog">test</a> which opens a modal and passes data is passed from the parent to th modal. It works fine but I need the data passed to be the input from a textbox. The...
  9. dendic

    php code

    Got it thank you. You're the best. I'm learning with laravel and at times it becomes confusing.
  10. dendic

    php code

    Thank you for all your help. I got past the php problem. When I display my page using sublime view in browser all is well. But when I try to view using localhost:8000 I get 404 errors unable to find my css or js. Here is my code: <head> <meta http-equiv="Content-Type" content="text/html...
  11. dendic

    php code

    I seen that as well but couldn't find where to change that link. because all I typed was localhost.
  12. dendic

    php code

    [Sat Jan 17 13:51:46.436302 2015] [:error] [pid 4420:tid 1724] [client ::1:60037] script 'C:/xampp/htdocs/xampp/imdex.php' not found or unable to stat I did a fresh install and still can't view a php file above is the error I get when I do localhost. I wrote apache and friends and waiting for a...
  13. dendic

    php code

    I used to have IIS on this computer but removed before setting up apache. How can I check that nothing else is conflicting with port 80.
  14. dendic

    php code

    Apache is running on port 80 for sure and xampp is at the C:/xampp. I guess all that's left is re-install. I will inform you of the results after.
  15. dendic

    php code

    My last thought before re-installing I have a 64 bit machine would it have made a difference if I installed the 32 bit version of apache?
  16. dendic

    php code

    It wasn't running my bad but now I get. Access forbidden! You don't have permission to access the requested directory. There is either no index document or the directory is read-protected. If you think this is a server error, please contact the webmaster. Error 403 localhost Apache/2.4.10...
  17. dendic

    php code

    When I typed localhost I got page cannot be displayed.
  18. dendic

    php code

    I have full permissions set for both htdocs and laravel directories. At this point all I would like to do is make a simple PHP file and get apache to recognize it. I'm not familiar on how to start Apache as a service I a merely use a gui control pane. I do have artisan running as a service but...
  19. dendic

    php code

    When I typed it in the way you said I got access forbidden error (no permission) Error 403. But the application I'm using is Laravel. Do I need to adjust the Apache config and localhost to point to the htdocs directory?
  20. dendic

    php code

    I have this loaded: LoadModule php5_module C:/xampp/php/php5apache2_4.dll LoadModule php5_module /lib/apache2/modules/libphp5.so The problem remains

Part and Inventory Search

Back
Top