Can someone explain to me the logic of having two different versions of the same software running at the same time. :? I guess i am missing something but isn't it a bit confusing, I am currently on phpBB 3.2.9 and get told off some people i need to update to 3.3.1 wile others say no! you need to upd...
Ok an update on this: My main problem was after uninstalling Advanced BBCode Box 3 and then installing an auto embed EXT it still would not recognise the video link and the post would still display: https://youtu.be/V_Xe0pos7aQ but if i looked to edit the post it was displaying: [BBvideo=560,315]htt...
I hope i dont have to rephrase all of the posts as i dont know how to use CLI and putty or whatever it is. :lol: And yes i will be doing a lot of testing on test site first, also the extension i will be using once it is done is not from here as i am running FLATBOOTS theme from Sitesplat and its one...
Ok thanks guys lots of info and help. :D I'm going to give this find and replace thing a go tomorrow when i have more time. ;) Just one question: If i mess up phpbb_posts do i FULLY DELETE the old messed up table before importing it back or can i just overwrite the messed up phpbb_posts with a backup?
You could also try a simple search and replace with SQL on the posts table. see http://www.serialdesigngroup.com/wordpress/how-to-find-and-replace-text-in-mysql-database-using-sql Alternatively you could do a search and replace on a seperately downloaded post_table. If you take the second approach:...
@ thecoalman Thank you very much for your help, i will do some backups and test it out. :D Did you read the FAQ section for that extension before removing the extension? Yes and it says this. There are only a few special BBCodes, however, that will not work as expected if ABBC3 is removed: [BBvideo]...
I have recently removed Advanced BBCode Box 3 because i want to use an EXT that will auto recognise and embed you tube video links. I am now left with this: [BBvideo=560,315]https://youtu.be/V_Xe0pos7aQ[/BBvideo] And this: [BBvideo 640,360]http://youtu.be/lqU-IT7Zers[/BBvideo] The problem is it wont...
Not "green" button... Mixe (index):260 Mixed Content: The page at 'https://tdudrivetime.com/' was loaded over HTTPS, but requested an insecure image 'http://s06.flagcounter.com/count/WPZR/bg_000000/txt_FFFFFF/border_CC0404/columns_2/maxflags_60/viewers_TDU+DriveTime/labels_1/pageviews_1/f...
Change the first 4 lines <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.tdudrivetime.com/$1 [R=301,L] to <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L] and se...
Ok here it is. :mrgreen: <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.tdudrivetime.com/$1 [R=301,L] # # Uncomment the statement below if URL rewriting doesn't # work properly. If you installed phpBB in a subdirectory # of your site, properly ...