Search found 217 matches

by supanet
Fri Aug 28, 2020 11:11 am
Forum: phpBB Discussion
Topic: phpBB 3.3.1/phpBB 3.2.10 - WTF
Replies: 5
Views: 818

Re: phpBB 3.3.1/phpBB 3.2.10 - WTF

Thanks for all the replies but i still dont understand why we need two different versions at the same time?
by supanet
Fri Aug 28, 2020 10:13 am
Forum: phpBB Discussion
Topic: phpBB 3.3.1/phpBB 3.2.10 - WTF
Replies: 5
Views: 818

phpBB 3.3.1/phpBB 3.2.10 - WTF

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...
by supanet
Mon Dec 30, 2019 1:08 pm
Forum: Custom BBCode Development and Requests
Topic: reparse all posts
Replies: 23
Views: 2256

Re: rephrase all posts

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...
by supanet
Sun Dec 29, 2019 11:06 pm
Forum: Custom BBCode Development and Requests
Topic: reparse all posts
Replies: 23
Views: 2256

Re: rephrase all posts

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...
by supanet
Sun Dec 29, 2019 5:55 pm
Forum: Custom BBCode Development and Requests
Topic: reparse all posts
Replies: 23
Views: 2256

Re: rephrase all posts

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?
by supanet
Sun Dec 29, 2019 2:47 pm
Forum: Custom BBCode Development and Requests
Topic: reparse all posts
Replies: 23
Views: 2256

Re: rephrase all posts

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:...
by supanet
Sun Dec 29, 2019 1:46 pm
Forum: Custom BBCode Development and Requests
Topic: reparse all posts
Replies: 23
Views: 2256

Re: rephrase all posts

Just gave this a quick test on one of my test forums and it says:
FUNCTION zonespid_forum1.REGEXP_REPLACE does not exist
:(

O'well thanks for your help but back to the drawing board. :(
by supanet
Sun Dec 29, 2019 12:41 pm
Forum: Custom BBCode Development and Requests
Topic: reparse all posts
Replies: 23
Views: 2256

Re: rephrase all posts

@ 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]...
by supanet
Sun Dec 29, 2019 11:18 am
Forum: Custom BBCode Development and Requests
Topic: reparse all posts
Replies: 23
Views: 2256

reparse all posts

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...
by supanet
Sun Feb 10, 2019 4:29 pm
Forum: [3.2.x] Support Forum
Topic: Enabling Free SSL with .htaccess
Replies: 17
Views: 13592

Re: Enabling Free SSL with .htaccess

Lumpy Burgertushie wrote: Sun Feb 10, 2019 4:21 pm also, unless you have "force url" set to yes, the server protocol setting does not apply anyway.

robert
Ok thanks did not know that. :mrgreen:
by supanet
Sun Feb 10, 2019 4:17 pm
Forum: [3.2.x] Support Forum
Topic: Enabling Free SSL with .htaccess
Replies: 17
Views: 13592

Re: Enabling Free SSL with .htaccess

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...
by supanet
Sun Feb 10, 2019 11:56 am
Forum: [3.2.x] Support Forum
Topic: Enabling Free SSL with .htaccess
Replies: 17
Views: 13592

Re: Enabling Free SSL with .htaccess

Mick wrote: Sun Feb 10, 2019 11:49 am If it's the board in your signature it seems to be working ok for me. If you go in with http it changes to https.
Yes works ok just can't get Server protocol: to display https:// :?
by supanet
Sun Feb 10, 2019 10:35 am
Forum: [3.2.x] Support Forum
Topic: Enabling Free SSL with .htaccess
Replies: 17
Views: 13592

Re: Enabling Free SSL with .htaccess

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...
by supanet
Sat Feb 09, 2019 8:23 pm
Forum: [3.2.x] Support Forum
Topic: Enabling Free SSL with .htaccess
Replies: 17
Views: 13592

Re: Enabling Free SSL with .htaccess

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 ...
by supanet
Sat Feb 09, 2019 11:03 am
Forum: [3.2.x] Support Forum
Topic: Enabling Free SSL with .htaccess
Replies: 17
Views: 13592

Re: Enabling Free SSL with .htaccess

Thanks for all the info guys it was really helpful. :D

According to my C Panel everything seems to be working.
host.PNG
But even if i change the settings here to https they just revert back to http. :?
Cookie secure: is enabled.
ssl.PNG
what am i doing wrong?

Go to advanced search