-
Replied To a Post in video.js youtube Uncaught reference error: videojs is not defined
ok, but this one is not valid though vendor/videojs/video.js/dist/video-js/vjs.youtube.js **video.js** can't be a directory right? Here is my screenshot  and the source code <html> <head> <link href="//vjs.zencdn.net/4.10/video-js.css" rel="stylesheet"> … -
Replied To a Post in php
In addition, you need to check if $_GET['d1'] is set, before assigning to variable $d1. Otherwise, the parser will assume it is set. You can wrap it up like this … -
Replied To a Post in video.js youtube Uncaught reference error: videojs is not defined
can you confirm that this is the right file location? <script src="vendor/videojs/video.js/dist/video-js/vjs.youtube.js"></script> -
Replied To a Post in how to convert md5 password into binary and then calculate its exclusive OR
This is what I meant by without iteration on conversion. I used foreach loop to prove successful conversion.. <?php $pass = '5f4dcc3b5aa765d61d8327deb882cf99'; print_r(str_split($pass)); $replacements = array( '0'=> "0000", '1' => … -
Replied To a Post in how to convert md5 password into binary and then calculate its exclusive OR
IMHO, the hashed user_pass is not necessarily be the subject of un-needed iteration. if $md5_1=md5($_POST['user_pass']); is equal to 'password', then the hashed password is now equal to $md5_1 = '5f4dcc3b5aa765d61d8327deb882cf99'; … -
Replied To a Post in FaceBook Share Problem
try rewriting your javascript like this from this <script src="http://connect.facebook.net/en_US/all.js#xfbml=1"> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; … -
Replied To a Post in logout function is not working
I don't think session_start() is needed in the constructor. If you do this after logging out print_r($this->session->all_userdata()); do you still get something ? You can try modifying this code 'password' … -
Replied To a Post in FaceBook Share Problem
Do you have a facebook developers account? if so, have you created an application? is the application set to public or development? Here is a test app I just created … -
Replied To a Post in FaceBook Share Problem
did you include the [Javascript SDK](https://developers.facebook.com/docs/reference/javascript/) right after the <body> tags? for example, <body> <script> window.fbAsyncInit = function() { FB.init({ appId : 'Put__Your_Own_App_ID__Here', xfbml : true, version : 'v2.1' }); … -
Replied To a Post in CodeIgniter has finally found a new home.
I am currently testing the [CodeIgniter 3.x](https://github.com/bcit-ci/CodeIgniter/archive/develop.zip), or you can view flavors option[ here](http://www.codeigniter.com/download). I will be bribing my [mentor and my friend](https://www.daniweb.com/members/1114563/lorenzoDAlipio) to write a tutorial focusing on modularization … -
Replied To a Post in CodeIgniter has finally found a new home.
The new license for the CodeIgniter effective 12 days ago is [MIT](http://opensource.org/licenses/MIT). Ref: British Columbia Institute of Technology as shown on system/core/Controller.php [updated](https://github.com/bcit-ci/CodeIgniter/blob/develop/system/core/Controller.php) 12 days ago. <?php /** * CodeIgniter … -
Replied To a Post in PSR-4 and Autoloading
I totally agree with cereal. That should work. The script from github was written by PHil Sturgeon. The same Phil who wrote the Pyro CMS build on top of CI … -
Replied To a Post in Asalamalikum
Hello Soomro_moon, welcome to Daniweb. -
Replied To a Post in Hello !
Hi Lester, welcome to Daniweb. -
Replied To a Post in Hi!
Hi Shiksha welcome. -
Replied To a Post in Intoduction
Hi Olga welcome. -
Replied To a Post in how to insert inserting data from phpmyadmin to excel using php
how about [this](http://devzone.co.in/export-mysql-data-into-excel-or-csv-format/)? Will it help? -
Replied To a Post in call static method with namespace
I am using the fig-standard auto loader. Pretty much all frameworks today are using the [proposed loading standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md). to call static method of class with namespace, you can easily do … -
Replied To a Post in Determining browser window width and assigning to global variable
On the dimension update, don't forget to reload your controller. Since CI has no reload function, we can easily bypass it by doing like so.. redirect('/index.php/user/jquery_library_browser_width'); try experimenting with the … -
Replied To a Post in Determining browser window width and assigning to global variable
Not sure, but you can experiment with [this](http://jsfiddle.net/Matt_Coughlin/Uvh6e/1/) will give you the size of the window onload and on resize state. The jquery part to send it to the controller … -
Replied To a Post in Determining browser window width and assigning to global variable
how about using jquery to get the browser information and then submit the collected information via ajax to the controller method and then assign them to session. -
Replied To a Post in How to execute php code from an html form post action
is this google wallet related? -
Replied To a Post in Profile Page
@UK-1991, thanks for your message. I am confident that broj1 can deliver the solution to your problem. -
Replied To a Post in Good ways to gain experience?
Do as suggested by JorgeM. While waiting for the challenging questions, spend some time reading some good PHP books from O'Reilly Media. **Pretty much inspired by what I have been … -
Replied To a Post in php mysql query
that is pretty nested. Try using[ switch statement](http://php.net/manual/en/control-structures.switch.php).You can refactor the $tbl_code==976 to 983 as one query using PHP range function e.g. range(976,983). range will give you an array. So, … -
Replied To a Post in Install phpmyadmin on RHEL
Do as suggested above and please don't be lazy searching it on google first. Some tutorial may not tell you that you need to enable the EPEL repository to be … -
Replied To a Post in Web error - CI
The purpose of my example is to realize the core principle of MVC design Patterns which is no other than the "Separation of Concerns". All PHP MVC and HMVC frameworks … -
Replied To a Post in member groups
you can achieved this by storing the member's status on the database. for example, + user_id + user_name + status + couple_id + +---------+-----------+---------+-----------+ + 1 + husband + married … -
Replied To a Post in Problem with XAMPP Apache and htaccess
forgot to add this. normally the default xampp** httpd-vhosts.conf** don't have anything on it and it gives you something like this depending on the version of your xampp. ##<VirtualHost *:80> … -
Replied To a Post in Problem with XAMPP Apache and htaccess
can you show us the apache/extra/httpd-vhosts.conf The first entry or virtual host should be the duplicate of the main host which is pretty much a shallow one similar to the … -
Replied To a Post in Problem with XAMPP Apache and htaccess
> I am sure I missed something somewhere in the changes been made in the newer versions of php and apache. No that's not it.. we can't blame the car … -
Replied To a Post in Check if using HTTPS
You are doing fine I think. On the other hand, 443 is normally the default Virtual SSL host as defined in httpd-ssl.conf <VirtualHost _default_:443> the same port number is use … -
Replied To a Post in PHP A* algorithm runs too slow
I am just guessing here and I hope someone can look at your code thoroughly I suspect while loop is running to infinite cycle. $done = 0; while($done < 1){ … -
Replied To a Post in Change city and state to State/City In PHP
when you do var_dump($i['popularCities'] ); what do you get? -
Replied To a Post in Change city and state to State/City In PHP
return the value before the index. -
Replied To a Post in HTML form with PHP and MySQL
can't you use a pagination for this? -
Replied To a Post in Web error - CI
as already been suggested, stay away from using those short tags. I hate adding more confusion to a broken source codes, so I have decided to write a pretty simple … -
Replied To a Post in Insert New row in html form using php?
not sure if [this](http://jsfiddle.net/nzYAW/) will help, but there is no harm in sharing. -
Replied To a Post in Hello!!
Hi and welcome to Daniweb Odyssey. @markjonson that is pretty clever way of posting your spam on Daniweb. -
Replied To a Post in Hello all :)
Hello and welcome to Daniweb. I am not sure, but I think you can post on geek's lounge for feedback. -
Replied To a Post in Hello Everyone!!!
Hello, welcome to Daniweb. -
Replied To a Post in Greetings
Hello and welcome.. -
Replied To a Post in Execute a PHP command on form Submit
can you try something like this ? $command = 'put all command here'; shell_exec($command); if you want it to work in the background, then you can do something like this … -
Replied To a Post in upload file in php
run this. Values of the array are the most commonly used in CMS application. <?php $server_min = array( 'max_execution_time' => 1000, 'max_input_time' => 1000, 'upload_max_filesize' => '200M', 'post_max_size' => '200M' … -
Replied To a Post in PHP Nuke as a Web Platform
I do understand the familiarity of the client, but it is a backward technology. There is a forum extension for wordpress. PHP nuke is just like Concrete 5 frozen in … -
Gave Reputation to lorenzoDAlipio in Just wanted to say hello
Just wanted to say hello to Daniweb. Finally, I have the time to sign up for an account. Veedeoo keeps on bugging everyday to join this great community, but I … -
Replied To a Post in Just wanted to say hello
Hey, Mr. LDA AKA geegler from github welcome to Daniweb. Can you please show us how to develop an application using a PHP router e.g. front controller and dispatcher. I … -
Replied To a Post in Safe and SIMPLE database inserts and other queries
Thanks for sharing you codes. -
Created CodeIgniter has finally found a new home.
and the new home for codeIgniter is (drumbeat please... and another drumbeat) ...The [British Columbia Institute of Technology (BCIT)](http://www.bcit.ca/) in Vancouver, Canada. Please read the official announcement from ellislab [here](https://ellislab.com/blog/entry/your-favorite-php-framework-codeigniter-has-a-new-home). … -
Replied To a Post in How to get filedate from a file on client machine
> Hmm. If I ran batch script on the client machine to make the information available through a text file, environmental variable, etc., could that work? that will work on …
The End.