-
Replied To a Post in Changing style color
Hmm, is it possible to see an updated online version of this page? -
Replied To a Post in sendmail not working
Check if this thread helps: http://ubuntuforums.org/showthread.php?t=1557127 -
Replied To a Post in MySQL Foreign Keys
Try to change the **delimeter** before creating the trigger, like this: -- temporary delimeter DELIMETER // CREATE TRIGGER members_username AFTER UPDATE ON members FOR EACH ROW BEGIN update posts set … -
Replied To a Post in Changing style color
It happens because the test script will overwrite all the `link` tags marked with `rel="stylesheet"`, to avoid this add a **title** attribute: `title="colors"`. So the `link` tag related to colors … -
Replied To a Post in Sending Wordpress form emails to office 365
I can write it for you, it's easy. You have to: * click the **download** link on the right side of this page: https://github.com/PHPMailer/PHPMailer * create a directory in your … -
Replied To a Post in Sending Wordpress form emails to office 365
Are you trying to connect through TLS or SSL port? At the moment I can only think to test PHPMailer to see the telnet session, the result should look like … -
Replied To a Post in sendmail not working
Great! :) Port 465 is for SSL, 587 for TLS, in order to work with TLS you need to define the certificate through `TLScert` see: * http://nekhbet.com/ssmtp_gmail.shtml * http://linux.die.net/man/5/ssmtp.conf * … -
Created Quotes not displaying in profile/posts page
Hello, while browsing my posts I saw that sometimes quoted text is not displayed, yet there is an empty space in the corresponding area, I think the quote block is … -
-
Replied To a Post in sendmail not working
Hi, try to change port number to `465`, it works fine for me. -
Replied To a Post in generating thumnails for multiple images?
If you're using the `resize()` method of the [image library](https://codeigniter.com/user_guide/libraries/image_lib.html), it happens because of: Image_lib class already loaded. Second attempt ignored. You can see that from the log of CodeIgniter. … -
Replied To a Post in How do I remove multiple files from a GIT repo that have already been delet
Hi, you can do that with git-rm but if you want to remove it from repository's history, then you can follow these instructions: * https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History#_removing_file_every_commit * https://help.github.com/articles/remove-sensitive-data/ Or you can … -
Replied To a Post in Sending Wordpress form emails to office 365
Hi Donna! Try to whitelist the email address that is sending the mail from the website along with the IP, if this does not help, then it could be due … -
Replied To a Post in Changing style color
Davy I don't know why. Can you open the CSS file directly from the browser url bar? -
Replied To a Post in Changing style color
Whoops, wait. In my first example I was referring to a link tag, then following you last example I referred to `#linkN`. But the JQuery must alter a `<link>` tag … -
Replied To a Post in MySQL Django/Python Setup
Hi, check the documentation: > the latest release of MySQLdb (1.2.5) doesn’t support Python 3. In order to use MySQLdb under Python 3, you’ll have to install mysqlclient instead. * … -
Replied To a Post in Changing style color
These are always relative paths (relative to the opening page): $("link1").attr("href", "bootstrap-3.3.5/css/custom.css"); use absolute paths, absolute means slash (`/`) followed by a relative path: /bootstrap-3.3.5/css/custom.css Also use `id` instead of … -
Gave Reputation to pritaeas in Where did the General Chat went?
I think he means the Geek's Lounge. It's gone, just post under Community Center. -
Replied To a Post in Where did the General Chat went?
Hi, enter in Community Center, the parent of this forum, and click on Live Chat: * https://www.daniweb.com/community-center/3 -
Replied To a Post in How to show error messages
My test code (the `insert()` function) will not work in yours if there's not a POST request (you have to press the submit button of the form at the bottom … -
Replied To a Post in How to show error messages
Hi, Sorry but on update and add functions you're setting `$_SESSION['msg']`, on `message()` instead you're dealing with `$_SESSION['message']`, is that a mistype? I built a simple test and works fine: … -
Stopped Watching Restart apache by php without give permission to to user apache
I want to restart Apache when I change configuration file on a web application which is I need to create a php file for restarting Apache but I dont want … -
Replied To a Post in RWC 2015
> I'm going for NZ. > France Argentina or Ireland in final Almost my same choices but, as said by HG, South Africa has good choices too, I would add … -
-
Replied To a Post in php
Hi James, if you want help you **must** set a proper title, explain us what you want to do and show where you are stuck, this implies that you share … -
Gave Reputation to AndrisP in help with a form and isset
$transmission_type = ( isset($_POST['transmissionTypeInput']) && $_POST['transmissionTypeInput']=='automatic' ? 'automatic' : 'manual' ); -
Replied To a Post in help with a form and isset
//EDIT see AndrisP answer. -
Began Watching Restart apache by php without give permission to to user apache
I want to restart Apache when I change configuration file on a web application which is I need to create a php file for restarting Apache but I dont want … -
Replied To a Post in storing Sessions data?
Hi, with **pure PHP** you can change the path in which session files are stored, see `save_path`: http://php.net/manual/en/session.configuration.php#ini.session.save-path Create a directory in a parent of public_html, so that is not … -
Replied To a Post in Moving MariaDB
The command to get just data is: mysqldump --no-create-info --no-create-db --opt db_name > latest_data_db_name.sql Otherwise with example 3 you get both create and inserts statements. I use this command line … -
Replied To a Post in mysql database recovery in wampserver2
If binlog is enabled maybe you can access the previous queries and reload the old/new database: * https://dev.mysql.com/doc/refman/5.6/en/mysqlbinlog.html But if everything was replaced, due for example to a Windows restore … -
Replied To a Post in Moving MariaDB
Hi, an easy solution is a mysqldump: mysqldump --no-data --opt db_name | mysql --host=remote_host -C db_name This command will dump from local to remote database (remote would be the laptops), … -
Replied To a Post in Changing style color
If linking a stylesheet then you have to define the correct path, not just the file name, unless this is in the same path of the requesting page. In practice … -
Gave Reputation to pritaeas in Toggling text when clicking the header
In response to [this thread](https://www.daniweb.com/programming/web-development/threads/499762/jquery-for-dropdown-textbox) I've decided to paste the linked example as a code snippet (updated to html5/jQuery2). -
Gave Reputation to pritaeas in Font size for html code snippet
https://www.daniweb.com/programming/web-development/code/497022/automatic-facebook-post-bumper Inline code snippets are much smaller then the snippets in the code part of a code snippet article. Could you please make them equally small, for readability's sake? -
Replied To a Post in Changing root directory with htaccess
So you want to change the **DocumentRoot**? In that case it can be done only in these contexts: * server config * virtual host It cannot be done at .htaccess … -
Replied To a Post in MariaDB, simple query and display
Click the button at the top right of the page, same level of the title. That should mark the thread as solved. The sub forums don't exists anymore, for more … -
Replied To a Post in Setup Laravel in Live server
It should look like: -> app/ -> public_html/ -> index.php -> ... -> vendor/ -> bootstrap/ If there is something different then it must reflect in the index.php paths: require … -
Stopped Watching PHP/mySQL Blog - general questions
Hi there, As an excerise I am trying to create a basic PHP blog. Creating the user login system was pretty straightforward, and I've 2 mySQL tables, one with user … -
Gave Reputation to Dani in Endorsements all messed up
I've gone ahead and *manually* recalculated everyone's endorsements, one forum at a time. It took foreveerrrrrrr, ugh, but it's finally done. Either way, everyone has lost endorsements in the process, … -
Replied To a Post in Endorsements all messed up
> Yes, because endorsements are tied to forums, and those forums no longer exist or have been rolled up into higher level categories. That's ok, but profile page still states … -
-
Replied To a Post in Endorsements all messed up
Hi! I'm experiencing something similar to ddanbe, I only see endorsements on UI/UX Design (12) and Linux and Unix (10) categories, everything else disappeared. -
Began Watching PHP/mySQL Blog - general questions
Hi there, As an excerise I am trying to create a basic PHP blog. Creating the user login system was pretty straightforward, and I've 2 mySQL tables, one with user … -
Replied To a Post in Web Hosting: Which One Should I Choose in India?
Hi, which server side language and database are you going to use? -
Replied To a Post in Tooltips
Same here on Google Chrome: Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36 -
Replied To a Post in find greater from two date with times any body help me using jquery
Check also this thread: * https://www.daniweb.com/programming/web-development/threads/497916/diference-between-two-dates#post2178414 bye! -
Replied To a Post in Setup Laravel in Live server
Hi, you should move on `public_html` only the files that are in the `public` folder of your laravel application, all the other files should be placed in the parent directory, … -
Replied To a Post in MariaDB, simple query and display
You can set the result type for `fetch_all()` which is defined by MYSQLI_ASSOC, MYSQLI_NUM, or MYSQLI_BOTH as explained here and as shown in my previous example: * http://php.net/manual/en/mysqli-result.fetch-all.php In any … -
Replied To a Post in RegEx to match ipv6 address anyone?
Hi, I'm not confident with c# but check if this helps: * https://github.com/bashwork/common/blob/master/csharp/validation/Source/Validation/Internal/FormValidationTester.cs#L90 Found via https://searchcode.com/?q=regex+ipv6&loc=0&loc2=10000&lan=6
The End.