Jump to content

osef

Rookie
  • Posts

    25
  • Joined

  • Last visited

About osef

  • Birthday 01/27/1983

Recent Profile Visitors

753 profile views

osef's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

1

Reputation

  1. Hello everyone I wonder if IPBoard has an application that would see what my users? On what part of the forum they navigate, what discution it read. etc etc Thank you for your reply and good day
  2. Edit: Hello, i found solution to my problem !!! yeaaaah :woot: So IPB does not take the includes, but takes the curl, so here is what I did: <php> $annonceURL = 'https://my_website/news/new.php'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $annonceURL); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_USERAGENT, 'Seey0u.info'); $resultatannonce = curl_exec ($ch); curl_close($ch); </php> And to display it : {$resultatannonce} I want anyway. Thank you all for having followed my topic and I hope it can be used for other community members!
  3. Yes, I have it all, but I want to do well for the user to modify the files is not accessing the ACP, but only to an FTP account only restricted to modifying these two files my version of ipboard is 3.4.7
  4. Hello and thank you for your answers ... Ok I see all this gives. My left block : <div style="width:49.5%;float:left;position: relative" class="category_block block_wrap"> <h3 class="maintitle">The Forum's new<a class="toggle right" href="#" title="Show/hide news block">Show/hide news block</a></h3> <div class="ipsBox table_wrap"><div class="ipsBox_container"><br /> <div style="height:250px;padding:5px;border:1px;word-wrap: break-word;overflow: auto;"> /* Here, I would like my include "new.php" */ </div></div></div><div style="clear:both"></div></div> The new.php file: <p>A new topic in the forum posting has been created, <a href="https:// link to the subject concerned">click here to view</a></p> <p>A survey was created, thank you to respond by <a href="https:// link to the subject concerned">clicking here</a></p> <p>Announce 3</p> <p>Announce 4</p> <p>Announce 5</p> <p>Announce 6</p> ... ... ... My right block : <div style="width:49.5%;float:right;position: relative" class="category_block block_wrap"> <h3 class="maintitle">Video of the moment<a class="toggle right" href="#" title="Show/hide">Show/hide</a></h3> <div class="ipsBox table_wrap"><div class="ipsBox_container"><br /> <div style="height:250px;padding:5px;border:1px;text-align:center"> /* Here, I would like my include "video.php" */ </div></div></div></div><div style="clear:both"></div> The video.php file: <iframe width="95%" height="95%" src="https://www.youtube.com/embed/PhPSS8u5qHg?rel=0" frameborder="0" allowfullscreen></iframe> This is what I would like to
  5. erf, I can not make myself understood ... it's not your fault, I thank you for the help you bring ... I come to you with a better translation, I will ask for help from a friend who knows enough English. thank you again, I come back as soon Edit: I take from the beginning. I create two float block on my forum. I create a user on my ftp with access to one folder,where there is two php files;this user will add html content in both .php files I want php file content is displayed in each separate block
  6. the right block would have a youtube video, for example ... in the left block, there would be new type: - Today is a concour launched on the forum, to see here. - A survey is in progress, thank you to go watch it by clicking here. etc., etc.
  7. hmmm, thank you for all your answers to help me, but I think you have not understood me ... well I do not speak English well, so google translate translate for me (I'm french) ... I do not want someone to upload a file to my ftp through a page of my site ... I resume I create two float blocks (left and right) in the left block I want my user to add new every day, in the right block, that my user can add video when he wants. but I do not want it access to the administration of my forum, that's why I want it access to a single folder in my ftp "new" or in this case there will be two file .php "new.php and video.php" I know that I do, I make it a ftp account with access only to the "new" file. but it would have my forum can display the contents of new.php in my left block. you understand me this time ??? Thank you for your reply
  8. Yes that's what I want to do, but you have me to do an include file that the user will only have access. include but not working
  9. Yes to an external file for one of my users can edit ftp without having access to all my ftp ... I hope you understand me. Edit: hmmm, for if I do against: <php> $test = hello; </php> <p> {$test} </p> it works for this kind of insert php code: http://nsa37.casimages.com/img/2015/04/25/15042511522775278.png but if I do I include with the <php>, I get several error: <php> $test = include('/home/seeyuinf/public_html/new/new.php'); </php> <p> {$test} </p> error header: Warning: include(/my full home path/new/new.php): failed to open stream: Aucun fichier ou dossier de ce type in /my full home path/cache/skin_cache/cacheid_17/skin_featuredcontent.php on line 290 Warning: include(): Failed opening '/my full home path/new/new.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php:/my full home path/ips_kernel/') in /my full home path/cache/skin_cache/cacheid_17/skin_featuredcontent.php on line 290 Warning: Cannot modify header information - headers already sent by (output started at /my full home path/cache/skin_cache/cacheid_17/skin_featuredcontent.php:290) in /my full home path/admin/sources/classes/output/formats/html/htmlOutput.php on line 114 Warning: Cannot modify header information - headers already sent by (output started at /my full home path/cache/skin_cache/cacheid_17/skin_featuredcontent.php:290) in /my full home path/admin/sources/classes/output/formats/html/htmlOutput.php on line 127 and my div is empty
  10. Hello, thank you for your help ... No, I'm in a skin file and when I put your code, I get nothing. screen with your code: http://nsa37.casimages.com/img/2015/04/25/150425112917135622.png by cons, if I put: <?php echo '<p>Hello all</p>'; ?> I get this: http://nsa38.casimages.com/img/2015/04/25/150425112917231749.png thank you for your help, I do not understand and I would be able to resolve this.
  11. Hello, I wonder if I can include a php file into a div of my forum? I tried <php> include('my-file.php'); </php> and also {parse include="my-file.php"} but the code is not interpreted Thank you for your help
×
×
  • Create New...