-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
I have a phpBB site running with Nginx (PHP via FastCGI). It works OK. However, some specific actions like moving or deleting a topic fail. Instead, I'm redirected to the forum index.
I think it is a problem with the URLs redirection or rewriting. My rewrite rule looks like this:
if (!-e $request_filename)…
>>> More
-
as seen on Pro Webmasters
- Search for 'Pro Webmasters'
I have a site with a phpbb forum. I'm working on adding a dokuwiki wiki to the site, and I would like to integrate the two. The phpbb forum is running phpbb 3.0.8, and the dokuwiki installation is running 2011-05-25a "Rincewind". Basically what I want is:
for users to be able to log into the dokuwiki…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
We are unable to login phpbb through my own site using session. please help us.
<?php session_start();
include "conn.php";
include "PHPBB_Login.php";
echo $_SESSION['username'];
$data=mysql_query("select * from people where username='".$_SESSION['username']."'");
$data_data=mysql_fetch_array($data);
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
With the below code we unable to session ingrate please help us how to integrate is there any modification let give modification. Thank you
<?php session_start();
include "conn.php";
include "PHPBB_Login.php";
echo $_SESSION['username'];
$data=mysql_query("select * from people…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
$sql = sprintf("SELECT topic_title FROM `phpbb_topics` WHERE `topic_title` LIKE '%%%s%%' LIMIT 20", mysql_real_escape_string('match this title'));
Which I run this query in phpMyAdmin the results are: (correct)
match this title
match this title 002
But when I run that same MYSQL query in PHP…
>>> More