General discussion
Problem with new topic button

I have a problem with new topic button on the top right to generate new topics...

I have lastest version of Codoforum 3.0 and I use php 5.4

This kind of problem there is only if the forum is installed in a sub-folder of the root, but if I install the forum in the root the problem is not exist!!!

Please let me know if I must do something... or modify some .php file to fix this issue

I have a problem with new topic button on the top right to generate new topics... I have lastest version of Codoforum 3.0 and I use php 5.4 This kind of problem there is only if the forum is installed in a sub-folder of the root, but if I install the forum in the root the problem is not exist!!! Please let me know if I must do something... or modify some .php file to fix this issue

I have a problem with new topic button on the top right to generate new topics...

Can you describe more about your problem ?
Do you get any errors ? Does the button not work ?

If the button is not working, check if you get any errors in your browser console.

>I have a problem with new topic button on the top right to generate new topics... Can you describe more about your problem ? Do you get any errors ? Does the button not work ? If the button is not working, check if you get any errors in your browser console.

thank you adesh for reply...

when i click on new topic button it works properly, and open the screen with the new topic void.

after when I write the topic, the numbers of the minimum text goes from 10 to 0 and when the numbers are 0 get the key POST becomes blue but if I click it nothing happens...

another strange thing is that the live preview goes in lock when I arrive to 0 and if i write for sample 20 letter it show me only untill 10... the first 10 letter!!!

thank you adesh for reply... when i click on new topic button it works properly, and open the screen with the new topic void. after when I write the topic, the numbers of the minimum text goes from 10 to 0 and when the numbers are 0 get the key POST becomes blue but if I click it nothing happens... another strange thing is that the live preview goes in lock when I arrive to 0 and if i write for sample 20 letter it show me only untill 10... the first 10 letter!!!

If you wanna adesh, I'd happy to provide you an account test so you will be able to try by yourself.

Furthermore, I receive this error behind the header...

Warning: file_get_contents(http://condmiramare.altervista.org/codoforum/sites/default/assets/js/user/profile/view.js): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /membri/condmiramare/codoforum/sys/CODOF/Asset/Stream.php on line 219



Warning: file_get_contents
(http://condmiramare.altervista.org/codoforum/sites/default/assets/js/bootstrap-tagsinput.min.js): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /membri/condmiramare/codoforum/sys/CODOF/Asset/Stream.php on line 219


Warning: file_get_contents(http://condmiramare.altervista.org/codoforum/sites/default/assets/js/user/profile/view.js): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /membri/condmiramare/codoforum/sys/CODOF/Asset/Stream.php on line 219
If you wanna adesh, I'd happy to provide you an account test so you will be able to try by yourself. Furthermore, I receive this error behind the header... ```` Warning: file_get_contents(http://condmiramare.altervista.org/codoforum/sites/default/assets/js/user/profile/view.js): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /membri/condmiramare/codoforum/sys/CODOF/Asset/Stream.php on line 219 Warning: file_get_contents (http://condmiramare.altervista.org/codoforum/sites/default/assets/js/bootstrap-tagsinput.min.js): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /membri/condmiramare/codoforum/sys/CODOF/Asset/Stream.php on line 219 Warning: file_get_contents(http://condmiramare.altervista.org/codoforum/sites/default/assets/js/user/profile/view.js): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /membri/condmiramare/codoforum/sys/CODOF/Asset/Stream.php on line 219 ````

This problem had been fixed in the later versions of codoforum.

Make sure you have isntalled the latest version of codoforum V3.1

This problem had been fixed in the later versions of codoforum. Make sure you have isntalled the latest version of codoforum V3.1
edited Feb 26 '15 at 3:10 pm

Hi adesh...

I have installed codoforum 3.1 build 14 and I have the same problem if the codoforum is installed in a sub-folder of the root...

Hi adesh... I have installed codoforum 3.1 build 14 and I have the same problem if the codoforum is installed in a sub-folder of the root...
edited Feb 26 '15 at 10:44 pm

Hi,

Can you provide us FTP details of your server ? We will fix the problem for you.

You can send us the details using email but please provide a reference to this page.

Hi, Can you provide us FTP details of your server ? We will fix the problem for you. You can send us the details using email but please provide a reference to this page.

I use the site http://altervista.org

Host: ftp.USERNAME.altervista.org
Porta: 21
Nome utente: USERNAME
Password: password

I use the site http://altervista.org Host: ftp.USERNAME.altervista.org Porta: 21 Nome utente: USERNAME Password: password

Hi,

Are those the FTP details ? They are not working.
Why are you posting them in public.

Please send them via email.

Hi, Are those the FTP details ? They are not working. Why are you posting them in public. Please send them via email.

can you give me your mail so I'll send it to you...
thkx

can you give me your mail so I'll send it to you... thkx

You can use the contact us form in http://codoforum.com or send it directly to admin[@]codologic.com

You can use the contact us form in http://codoforum.com or send it directly to admin[@]codologic.com
edited Mar 1 '15 at 4:52 am

hi gerry, the htaccess.txt on my site is:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  Options +Indexes
  RewriteEngine on

  # if your app is in a subfolder
  #RewriteBase /my_app/ 

  # test string is a valid files
  RewriteCond %{SCRIPT_FILENAME} !-f
  # test string is a valid directory
  RewriteCond %{SCRIPT_FILENAME} !-d

  RewriteRule ^(.*)$   index.php?u=/$1    [NC,L,QSA]
  # with QSA flag (query string append),
  # forces the rewrite engine to append a query string part of the
  # substitution string to the existing string, instead of replacing it.
</IfModule>

AddType text/css .less
AddType image/svg+xml svg svgz
AddEncoding gzip svgz

<IfModule mod_deflate.c>
  <FilesMatch ".(js|css|html|php|txt)$">
    SetOutputFilter DEFLATE
  </FilesMatch>
</IfModule>

but i don't know where I must modify!!!!

hi gerry, the htaccess.txt on my site is: ```` &amp;lt;IfModule mod_rewrite.c&amp;gt; Options +FollowSymlinks Options +Indexes RewriteEngine on # if your app is in a subfolder #RewriteBase /my_app/ # test string is a valid files RewriteCond %{SCRIPT_FILENAME} !-f # test string is a valid directory RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ index.php?u=/$1 [NC,L,QSA] # with QSA flag (query string append), # forces the rewrite engine to append a query string part of the # substitution string to the existing string, instead of replacing it. &amp;lt;/IfModule&amp;gt; AddType text/css .less AddType image/svg+xml svg svgz AddEncoding gzip svgz &amp;lt;IfModule mod_deflate.c&amp;gt; &amp;lt;FilesMatch &quot;.(js|css|html|php|txt)$&quot;&amp;gt; SetOutputFilter DEFLATE &amp;lt;/FilesMatch&amp;gt; &amp;lt;/IfModule&amp;gt; ```` but i don&#039;t know where I must modify!!!!

I tried your suggestion but nothing appends...

Always the same errors...

I tried your suggestion but nothing appends... Always the same errors...

Can you please send us your FTP details + your website address, we will test this problem.

Can you please send us your FTP details + your website address, we will test this problem.

Hi adesh... I write just now an email to you at admin[@]codologic.com, I was a bit Afraid...
So I hope In your good faith...

please let me know what is the problem and how to fix it!!!

anyway if you fix it on my site, I hope that you give me the procedure to do it another time by myself, cause I think that I must reinstall it, cause I have other thing on site to fix also the sql database!!!

Thanks a lot

Hi adesh... I write just now an email to you at admin[@]codologic.com, I was a bit Afraid... So I hope In your good faith... please let me know what is the problem and how to fix it!!! anyway if you fix it on my site, I hope that you give me the procedure to do it another time by myself, cause I think that I must reinstall it, cause I have other thing on site to fix also the sql database!!! Thanks a lot

hi adesh... Have you got good news for me????

hi adesh... Have you got good news for me????
edited Mar 3 '15 at 8:46 pm

Hi,

Can you try below solution:

Open codoforum/sys/globals/global.php

Around line 130, replace the line

 $asset['position'] = 'head';

with

// $asset['position'] = 'head';

That is comment it out.

Hi, Can you try below solution: Open codoforum/sys/globals/global.php Around line 130, replace the line ``` $asset[&#039;position&#039;] = &#039;head&#039;; ``` with ``` // $asset[&#039;position&#039;] = &#039;head&#039;; ``` That is comment it out.

adesh... pls... some little help!!!!
try by yourself to do that!!!

You can do all proofs you need, if necessary to fix the problem!!

I'm waiting for yours news

adesh... pls... some little help!!!! try by yourself to do that!!! You can do all proofs you need, if necessary to fix the problem!! I&#039;m waiting for yours news
12
844
26
4
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft