Skip to main content

Cannot see loaded modules in hosted account



I am wanting to move my website online and my website is not working on my shared hosting account, only to find out that module mod_rewrite was not loaded. I ran phpinfo ( http://imranbukhsh.com/f/fcrawl/tmp/phpinfo.php ) and I cannot see the whole section on 'loaded modules' which I can see on my personal computer after I installed XAMPP: its a huge section on my pc ( in phpinfo ) and totally missing on my shared hosting server.





My hosting company is Valcato





Thanking you


Comments

  1. The module is not loaded, which is why you are not seeing it in your server signature.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...