- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 17
- Posts with Upvotes
- 17
- Upvoting Members
- 12
- Downvotes Received
- 7
- Posts with Downvotes
- 6
- Downvoting Members
- 6
Video games lover and Web developer , can you imagin this :D
- Interests
- Video games my only Interest :P
- PC Specs
- HP Probook 1520 ,1TB HDD ,4GB RAM, Windows 7 Ultimate
144 Posted Topics
I want to create a batch file in windows to do specific commands on redhat linux server When user click on batch file 1- login to server using root user 2- restart some service 3- logout from server Am able to do cron job to do these commands but I … | |
Hello guys I have project in office like this I have system has data and not connected to internet , I can get data from it by using excel installed in pc1 , and pc1 is connected through hub with PC2 and have shared folder between them and both have … | |
hello guys its been a while since my last question here :P am working right now on PHP script to upload and convert video files to several resolutions ( 360 - 720 ), here a piece of my php code to convert move_uploaded_file($file_tmp, 'upload/'.$fileName); add_to_queue($time,"360-".$fileName,$status="pending"); //where add_to_queue is simple function … | |
Hello guys, I need to host a video sharing site that support srt files for translating videos I've searched the Internet and found ClipBucket its a good script but you must pay for Subtitle extention is there any free script do such a thing? | |
hey guys I hope you doing well :P am working on simple graphic script which gather some information and write it on image then show it to the user on localhost the project run perfectly as it supposed to do. when I uploaded to live server ( free hosting servers … | |
Hello guys Am not fimiliar with windows server 2008 enviroment but I learned few things last days, I want to create mail service to send and recieve messages localy, between two or three computers just for learing. How can i achieve that ? Am using windows server 2008 Tried hmailServer … | |
Hello guys am totally new to java development but I red some tutorial on web on how to create different application on Android Studio. I've created simple webview application with navigation drawer and everything work perfect, when I tried to add Parse.com SDK to use notification service my program crashes … | |
hey guys I have problem while using straming via **VLC**, before September I was using **VLC web plugin** to view streaming videos via **VLC** because web browsers deprecated vlc player from working so I must use html5 or jwplayer or any video player, is there any replacment to **VLC** ? … | |
hello guys, I know you may heard about Telegram bot API, and I want to use their API to send texts and photos, telegram API differs from bots API here is the full document about API https://core.telegram.org/bots/api I want to send photo using curl but its fail always, sending text … | |
Re: how about direct input `<input type="text" value="10" />` ![]() | |
Re: can't do a SQL like this in phpmyadmin try to create SQL query with fixed string to see if your sql is right for example $sql = "SELECT * FROM member WHERE MB_COUNTY = 'IQ'"; // put somthing you know its in the database and check if there is an … | |
Re: directory for all files in project to determine how to include php file. | |
Re: as @diafol said use **loadhtmlfile** instead $file = $DOCUMENT_ROOT. "DomDoc.html"; $doc = new DOMDocument(); $doc->loadHTMLFile($file); $elements = $doc->getElementsByTagName('name'); echo $elements->nodeValue; ![]() | |
Re: what error you have when run the form ? did you try the sql in phpmyadmin ? | |
Re: in this line `document.body.style.background.= color;` you have error , you have dot after background just remove it. `document.body.style.background = color;` | |
Re: so you asking a question ? or offer a help ? | |
Re: try using RewriteRule ^(.*).html$ article.php?url=$1 for testing only and see if its working and remove double rules for same thing. | |
Re: Ids can't be used like this, use **classes** insted , id must be one word and must be unique. <span class="user" id="Maxi">Maxi</span> <span class="user" id="John">John</span> <span class="user" id="Henry">Henry</span> <span class="user" id="Max">Max</span> <span class="user" id="Simon">Simon</span> .user{ text-align:center; display:inline-block; width:50px; height:20px; background-color:#9B59B6; margin:5px; border:4px solid #3498DB; color:#F1C40F; cursor:pointer; } | |
Re: check if folder permission is **755** and check Apache user which in Ubuntu is www-data to find out Apache user `ps aux | grep apache` and do this command `chown -R www-data /path/to/folder` | |
Re: try this tutorial Demo : https://ihatetomatoes.net/demos/simple-parallax-scrolling-tutorial/ Article : https://ihatetomatoes.net/simple-parallax-scrolling-tutorial/ | |
Hello guys , am new to Android Development, I've created many test apps for learning, using webview and lists and creating multiple activities, I have an application that get URL with JSON data contain url with streaming video and when click on button open VLC with URL provided. JSon FILE … | |
hello guys, am very new to android development, ans am trying to do my best to learn it,I have json output created from one of my PHP projects here is my output [ { "id": "1", "name": "BEiN HD 1", "link": "http:\/\/www.mysite.com\/tv4.ogg", "image": "http:\/\/www.mysite.com\/images\/jsc8.png" }, { "id": "2", "name": "BEiN … | |
Re: $_POST[] works fine on php 5.3.x , global varibales are disabled from day I've learned PHP :P | |
Re: honestly I didn't read your code because I don't know what you want to achieve here , normally I use function to create watermark on images, hope it help. function create_watermark($img_name,$newname,$type) { // check image type. The image type is sent as parameter 3 ($type). Note that for every image … | |
Re: try to use isset(), to check if there is a value assign to $_SESSION if(isset($_SESSION['id']) or isset($_COOKIE['id'])){ // do whatever you want } | |
Hello there have a nice day.. I have PHP script to upload files on servers, I want to copy uploaded files once they uploaded on server to another server using PHP ex. upload file F to server A after that copied to server B with same name F. how to … ![]() | |
Re: you can't write PHP tags inside html page, all work should be in php page. thats how should you write the code. <?php $nameError=""; $name=""; if(isset($_POST['submit'])){ if (empty($_POST["username"])) { $nameError = "Name is required"; } else { $username=$_POST['username']; echo $username; } } ?> <!DOCTYPE HTML> <html> <head> </head> <body> <form … | |
Re: this is the easiest way to create what you want `<a onclick="return confirm('Do you want to Delete File?')" href="delete.php?id=<? echo $row['id']; ?>">Delete</a>` | |
Hello guys have a nice day.. I have a problem need to be solved, I have upload script which save files in "/uploads" folder everything was going good until my boss decided to move upload file to storage server and need to store all files in "/etc/mnt/storage/uploads" so what should … | |
hello guys, good morning one of our servers recently upgraded to Ubuntu 14.04 so for this PHP upgraded to 5.5.9 all scripts on this server stopped working because they use a functions not supported by newer version of PHP, I need to downgrade PHP to 5.3 so I can make … ![]() | |
Re: simply put **jquery code for slider** inside your page, and please can you talk more about your request. ![]() | |
Re: sessions destroy itself after 30 minutes from time created, or when user closes the browser | |
Re: lets assume you have array $test1 = array("Regular Project", "FSA Project", "TGF Project"); so when you select double condition like this `if ($test1[0] == "Regular Project" && $test1[0] == "FSA Project")` $test[0] contain one value in this moment, its either **Regular Project** or **FSA Project** so that why double condition … | |
| |
Re: put this in linked page <meta http-equiv="refresh" content="5; url=http://example.com/"> redirect after **5** seconds . ![]() | |
Re: on localhost try to edit file **httpd.conf** found in "C:\Windows" search for line `#LoadModule rewrite_module modules/mod_rewrite.so` and remove **#** to activate rewrite module, restart your PC and try to learn basic rules for htaccess like Options All -Indexes # prevent user from viewing folder content RewriteEngine on # switch rewrite … | |
Re: am not good in Codeigniter but i came by on this problem in simple script, for `permission[$key]` array try to check if there is a value before processing, from your example permission['modify'] is not found `if(isset(permission['modify']))` then do stuff. | |
I've noticed recently there is a javascript tag generated in html code only while viewing page <script type="text/javascript" src="6_S3_"></script> search for it in file but couldn't find it, and am worried about this. | |
Re: you can try this tutorial http://dhirajkumarsingh.wordpress.com/2012/07/31/animated-smoke-effect-hot-coffee-tea-jquery-css/ | |
Re: you mean Font awesome from this site ? http://fortawesome.github.io/Font-Awesome/ so the html tag for it is `<i class="fa fa-android fa-inverse fa-5x"></i>` http://jsfiddle.net/hawkiq/jszt3yy9/3/ | |
Re: what do you mean by Loader ??? | |
Re: what error code you have now ?? try to put your sql like this maybe some error could have in this line $sql = "SELECT * FROM ".$tbl_name." WHERE Ipid='$Ipid'"; | |
Hello guys, I know there is a ton of webmail scripts and works with cPanel, but no one I found that support register new users like : Google,Yahoo,etc.... I need php webmail so new users can register and using my doamin as there mail service. best regards . | |
I have problem in my site and accrues only when using htaccess, I have many css and js files stored in my site when import them on localhost by using relative path <script src="js/jquery.min.js"></script> when using htaccess the js or css cannot be loaded and firefox show me message "**The … | |
Re: Simple one `<a class="effect" href="#">HOVER ME</a>` css .effect{ color:#ff0000; transition:2s; text-decoration:none; } .effect:hover{ color:#0000ff; transition: all 2s ease; transform: rotate(720deg); font-size:20px; } live example http://jsfiddle.net/hawkiq/gxa9amuc/ | |
hey guys , I'd like to add a fancy navigation menu for users like this example http://tympanus.net/Development/SelectInspiration/index8.html but this is a select input not a link, I need a tutorial to achive something like that using jquery and css, so I put a link image when press on it a … | |
Hey guys. have a nice day.... can anyone tell me how to achieve something like this slider in background ? I used a full screen slider but can't write content in middle of it like this site http://psnprofiles.com/ | |
Re: in your server side script try to return an output in case of success ex. php `echo "done";` in jquery success: function(response) { if (response == "done"){ window.location.href = "http://yoursite.com/yourpage"; }else{ alert ("some error happened"); } } | |
Hello there guys I have javascript code for parallex effect its working great but what I need is to transform this code to jquery so my site contain only jquery codes not mixed. <script> var topDiv = document.getElementById("topDiv"); var speed = 1.5; window.onscroll = function() { var yOffset = window.pageYOffset; … | |
Re: SELECT * from `report_card_table` WHERE expirydate BETWEEN('expirydate', date_add(current_date(), INTERVAL 3 month)); Sorry i didn't understand the question at first, I can;t delete this post so admin please delete it or just ignore the answer |
The End.