|
Richard Deeming wrote: Getting the printer configured on the server for IIS would involve manipulating the registry. Or just changing the App Pool to run with an account that does have a printer setup? Still, probably not a good idea.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Richard Deeming wrote: Getting the printer configured on the server for IIS would involve manipulating the registry.
Or GPO and a print server. I guess environment does have a big impact on worldview.
"There are three kinds of lies: lies, damned lies and statistics."
- Benjamin Disraeli
|
|
|
|
|
hello, can someone help me how to detect and map a wifi signal by using Php Language?
thank you!!!
|
|
|
|
|
|
PHP has no design element that can do this; how can a server-side scripting language be used as a network sniffer?
What you need to use is some sort of a network sniffer, to help you visualize how the packets are moving — sorry if I am unclear, I don't own a black hat in my wardrobe.
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
i want to do a project on sms based Remote Server Monitoring System For Corporate Data Centers.anybody here can help me out
|
|
|
|
|
What have you tried? Where are you stuck? Exactly what help do you want?
|
|
|
|
|
Message Closed
modified 26-Nov-16 7:28am.
|
|
|
|
|
Well it's your project so you are expected to do the work. If and when you have specific questions with your code then people will be happy to help you. But no one is going to do all the work for you.
|
|
|
|
|
Member 12536540 wrote: project on sms based Remote Server Monitoring System For Corporate Data Centers
Sure, let me know how can I help you.
|
|
|
|
|
Hi
Please do not send me private email. If you have a question ask here so that others can get benefit out of it too.
Cheers
|
|
|
|
|
The last line of your previous message implies that you are prepared to offer personal assistance.
|
|
|
|
|
Richard MacCutchan wrote: previous message implies that you are prepared to offer personal assistance.
No not really. I think he/she got an assignment/project in his School/University and obviously he was not paying attention in all those lectures, so he does not know where to start from and obviously the question for him seems to be alien at this minute and am sure clock is ticking and now all he is bothered about is final product to submit and get pass grade.
My idea is to first train him on how to make sense of the question, what all he can try before asking question here and when he tried enough then what is the best possible manner to ask question here or any other tech forums. If he is running out of time, it's better to fail and then stand up rather than giving up so early and relying on someone else's work.
So all in all, I am not going to work for him but yes if he wants I can put him in a right direction and obviously for similar reason, I ignored his private email and ask him to reply on this thread.

|
|
|
|
|
cp-andy wrote: Sure, let me know how can I help you. That seems a pretty clear indication that you are offering personal help.
|
|
|
|
|
Ok, is there anything wrong in that?
As they say knowledge increases when you share.
|
|
|
|
|
No, but it is reasonable for the OP to assume you are offering to provide some level of personal help, rather than just telling him/her to clarify their question.
|
|
|
|
|
Help doesn't mean that am happy to take on discussion off the forums.
|
|
|
|
|
Blimey this is hard work. I am not talking about what you meant, I am talking about what a questioner (whose first language is probably not English) thinks you are offering.
|
|
|
|
|
haha ok thanks for explaining what he must have thought.
|
|
|
|
|
Hello,
Following code helps in navigating to particular point in vimeo videos (by adding #t=0m0s to querystring). It is working absolutely fine on firefox but not on other browsers.
Can anyone point why and point me to right direction. Thanks
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<iframe src="https://player.vimeo.com/video/191602887" width="629" height="356" id="vimeo-player-1" name="vimeo"></iframe>
<style>
iframe{
display: none;
width:629px;
height:356px;
margin:0 0 10px;
}
</style>
<div id="container"></div>
<div id="iframe-holder">
<iframe src="" id="frame"></iframe>
</div>
<a style="cursor: pointer; " onclick="insert('0m51s');">[0.51]</a>
<div class="spacer10"></div>
<a style="cursor: pointer; " onclick="insert('1m38s');">[1.38]</a>
<script>
function insert(time) {
var myFrame = $('#vimeo-player-1');
var url = $(myFrame).attr('src') + '#t=' + time;
holder = document.getElementById('iframe-holder'),
frame = holder.getElementsByTagName('iframe')[0];
frame.style.display = "block";
frame.src = url;
document.getElementById('container').insertBefore(holder, null);
$("#vimeo-player-1").hide();
if(myFrame.location!=url&&url!=location.href)
myFrame.location.replace(url);
}
</script>
Thanks
modified 25-Nov-16 7:14am.
|
|
|
|
|
I am working with legacy code in an old project, can someone please point me to a good tutorial on how to turn a regular Web Service into a RESTful Web Service.
I have found plenty of tutorials for creating RESTful Services using WCF but very few tutorials for RESTful Web Service.
Of the ones I did find, the explanation for what makes the web service RESTful is either missing or not very well explained.
modified 22-Nov-16 20:56pm.
|
|
|
|
|
So...google is a friend:
http - What exactly is RESTful programming? - Stack Overflow[^]
There are a few pre-baked solutions for it. As I generally work the MS stack, the two that jump to my mind are WebAPI2 and Nancy. The core component, though, is that the server does not maintain state (or session) information for the client, each connection is treated as an atomic operation.
"There are three kinds of lies: lies, damned lies and statistics."
- Benjamin Disraeli
|
|
|
|
|
I have integrate G+ but it's get error while the URl will redirect to the dashboard can anyone help me???
|
|
|
|
|
Possibly, but not without information on exactly what the problem is and where it occurs in your code.
|
|
|
|
|
Hi,
I have employee evaluation for and it's populating the data from database and for every element of the evaluation there is a to choose the employee rating.
I want to know how can I implement this? How to name it? will all have same name?
here is my code:
prepare('CALL sp_web_get_employee_evaluation_elements_by_guid(:param_employee_evaluation_guid)');
$mysql_query->bindParam(':param_employee_evaluation_guid', $evaluation_guid, PDO::PARAM_STR);
$mysql_query->execute();
if ($mysql_query->rowCount() <= 0)
{
exit(header("Location: index.php"));
}
while($mysql_row = $mysql_query->fetch()) {
?>
ID: Element Rating : <select name="cboRating" id="cboRating" data-native-menu="false" required>
<option value="">[Select..]</option>
prepare($mysql_rating_category_command);
$mysql_rating_category_query->execute();
while($mysql_rating_category_row = $mysql_rating_category_query->fetch())
{
?>
<option value="<?php echo $mysql_rating_category_row["evaluation_rating_category_id"]; ?>"><?php echo $mysql_rating_category_row["evaluation_rating_category_name"]; ?></option>
<?php } ?>
</select>
</td>
Thanks,
Jassim
Technology News @ www.JassimRahma.com
modified 14-Jul-17 15:54pm.
|
|
|
|